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

Version Description

  • Fix: Twitter Getting Started and Settings page updated according to the new Twitter App creation.
  • Fix: Won't stuck on a blank page anymore when the login and registration is blocked by WP Cerber.
  • Fix: Infinite redirect loop when home page was selected as OAuth redirect uri proxy page.
  • Fix: Safari will no longer close the page automatically after logging in with NSL.
  • Feature: Login restriction - Some plugins are now able to prevent the login of NSL when admin approval or email verification is necessary!
  • Feature: Google button skins.
  • Feature: Portuguese (Brazilian) translation added.

  • PRO: Fix: USM Premium prevented the authorization of NSL Pro Addon.

  • PRO: Fix: WooCommerce default button layout fix for Billing.

  • PRO: Fix: Separator duplication by some themes.

Download this release

Release Info

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

Code changes from version 3.0.12 to 3.0.13

NSL/Notices.php CHANGED
@@ -59,8 +59,17 @@ class Notices {
59
  self::set();
60
  }
61
 
 
 
 
62
  public static function addError($message) {
63
- self::add('error', $message);
 
 
 
 
 
 
64
  }
65
 
66
  public static function getErrors() {
59
  self::set();
60
  }
61
 
62
+ /**
63
+ * @param $message string|\WP_Error
64
+ */
65
  public static function addError($message) {
66
+ if (is_wp_error($message)) {
67
+ foreach ($message->get_error_messages() as $m) {
68
+ self::add('error', $m);
69
+ }
70
+ } else {
71
+ self::add('error', $message);
72
+ }
73
  }
74
 
75
  public static function getErrors() {
NSL/Persistent/Persistent.php CHANGED
@@ -22,7 +22,7 @@ class Persistent {
22
  add_action('init', array(
23
  $this,
24
  'init'
25
- ));
26
 
27
  add_action('wp_login', array(
28
  $this,
22
  add_action('init', array(
23
  $this,
24
  'init'
25
+ ), 0);
26
 
27
  add_action('wp_login', array(
28
  $this,
admin/admin.php CHANGED
@@ -343,6 +343,7 @@ class NextendSocialLoginAdmin {
343
  foreach ($postedData as $key => $value) {
344
  switch ($key) {
345
  case 'debug':
 
346
  case 'terms_show':
347
  case 'store_name':
348
  case 'store_email':
@@ -636,8 +637,8 @@ class NextendSocialLoginAdmin {
636
  }), 'https://secure.nextendweb.com');
637
  break;
638
  case 'license':
639
- $('#license_key').val(envelope.license_key);
640
- $('#license_form').submit();
641
  break;
642
  }
643
 
@@ -652,7 +653,7 @@ class NextendSocialLoginAdmin {
652
  })(jQuery);
653
  </script>
654
 
655
- <form id="license_form" method="post" action="<?php echo admin_url('admin-post.php'); ?>"
656
  novalidate="novalidate" style="display:none;">
657
 
658
  <?php wp_nonce_field('nextend-social-login'); ?>
@@ -663,8 +664,8 @@ class NextendSocialLoginAdmin {
663
  <tbody>
664
  <tr>
665
  <th scope="row"><label
666
- for="license_key"><?php _e('License key', 'nextend-facebook-connect'); ?></label></th>
667
- <td><input name="license_key" type="text" id="license_key"
668
  value="<?php echo esc_attr(NextendSocialLogin::$settings->get('license_key')); ?>"
669
  class="regular-text">
670
  </td>
343
  foreach ($postedData as $key => $value) {
344
  switch ($key) {
345
  case 'debug':
346
+ case 'login_restriction':
347
  case 'terms_show':
348
  case 'store_name':
349
  case 'store_email':
637
  }), 'https://secure.nextendweb.com');
638
  break;
639
  case 'license':
640
+ $('#nsl_license_key').val(envelope.license_key);
641
+ $('#nsl_license_form').submit();
642
  break;
643
  }
644
 
653
  })(jQuery);
654
  </script>
655
 
656
+ <form id="nsl_license_form" method="post" action="<?php echo admin_url('admin-post.php'); ?>"
657
  novalidate="novalidate" style="display:none;">
658
 
659
  <?php wp_nonce_field('nextend-social-login'); ?>
664
  <tbody>
665
  <tr>
666
  <th scope="row"><label
667
+ for="nsl_license_key"><?php _e('License key', 'nextend-facebook-connect'); ?></label></th>
668
+ <td><input name="license_key" type="text" id="nsl_license_key"
669
  value="<?php echo esc_attr(NextendSocialLogin::$settings->get('license_key')); ?>"
670
  class="regular-text">
671
  </td>
admin/images/google/dark.png ADDED
Binary file
admin/images/google/light.png ADDED
Binary file
admin/images/google/uniform.png ADDED
Binary file
admin/templates-provider/buttons.php CHANGED
@@ -69,6 +69,13 @@ $isPRO = apply_filters('nsl-pro', false);
69
 
70
  <table class="form-table">
71
  <tbody>
 
 
 
 
 
 
 
72
  <tr>
73
  <th scope="row"><label
74
  for="login_label"><?php _e('Login label', 'nextend-facebook-connect'); ?></label></th>
69
 
70
  <table class="form-table">
71
  <tbody>
72
+ <?php
73
+ $buttonsPath = $provider->getPath() . '/admin/buttons.php';
74
+ if (file_exists($buttonsPath)) {
75
+ include($buttonsPath);
76
+ }
77
+ ?>
78
+
79
  <tr>
80
  <th scope="row"><label
81
  for="login_label"><?php _e('Login label', 'nextend-facebook-connect'); ?></label></th>
admin/templates/settings/general.php CHANGED
@@ -76,7 +76,7 @@
76
  'show_option_none' => __('None'),
77
  'selected' => $settings->get('proxy-page')
78
  )); ?>
79
- <p class="description" id="tagline-proxy-page"><?php _e('Pick a custom page when wp-login.php not available to handle the OAuth flow.', 'nextend-facebook-connect'); ?></p>
80
  </td>
81
  </tr>
82
 
@@ -179,6 +179,21 @@
179
  <p class="description"><?php _e('If you want to blacklist redirect url params. One pattern per line.', 'nextend-facebook-connect'); ?></p>
180
  </td>
181
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
182
  </tbody>
183
  </table>
184
 
76
  'show_option_none' => __('None'),
77
  'selected' => $settings->get('proxy-page')
78
  )); ?>
79
+ <p class="description" id="tagline-proxy-page"><?php _e('If your wp-login.php is not available to handle the OAuth flow create a new page and select it here. Otherwise don\'t select any page.', 'nextend-facebook-connect'); ?></p>
80
  </td>
81
  </tr>
82
 
179
  <p class="description"><?php _e('If you want to blacklist redirect url params. One pattern per line.', 'nextend-facebook-connect'); ?></p>
180
  </td>
181
  </tr>
182
+
183
+ <tr>
184
+ <th scope="row"><?php _e('Support login restrictions', 'nextend-facebook-connect'); ?></th>
185
+ <td>
186
+ <fieldset>
187
+ <label><input type="radio" name="login_restriction"
188
+ value="0" <?php if ($settings->get('login_restriction') == '0') : ?> checked="checked" <?php endif; ?>>
189
+ <span><?php _e('Disabled', 'nextend-facebook-connect'); ?></span></label><br>
190
+ <label><input type="radio" name="login_restriction"
191
+ value="1" <?php if ($settings->get('login_restriction') == '1') : ?> checked="checked" <?php endif; ?>>
192
+ <span><?php _e('Enabled', 'nextend-facebook-connect'); ?></span></label><br>
193
+ </fieldset>
194
+ <p class="description" id="tagline-login-restriction"><?php printf(__('Please visit to our %1$s to check what plugins are supported!', 'nextend-facebook-connect'), '<a href="https://nextendweb.com/nextend-social-login-docs/login-restriction/" target="_blank">Login Restriction page</a>'); ?></p>
195
+ </td>
196
+ </tr>
197
  </tbody>
198
  </table>
199
 
includes/avatar.php CHANGED
@@ -102,6 +102,8 @@ class NextendSocialLoginAvatar {
102
  }
103
  }
104
  }
 
 
105
  };
106
 
107
  return;
102
  }
103
  }
104
  }
105
+
106
+ UM()->user()->remove_cache($user_id);
107
  };
108
 
109
  return;
includes/provider.php CHANGED
@@ -82,11 +82,12 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
82
  }
83
 
84
  public function getRawDefaultButton() {
85
- return '<span class="nsl-button nsl-button-default nsl-button-' . $this->id . '" style="background-color:' . $this->color . ';">' . $this->svg . '<span>{{label}}</span></span>';
 
86
  }
87
 
88
  public function getRawIconButton() {
89
- return '<span class="nsl-button nsl-button-icon nsl-button-' . $this->id . '" style="background-color:' . $this->color . ';">' . $this->svg . '</span>';
90
  }
91
 
92
  public function getDefaultButton($label) {
@@ -123,6 +124,10 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
123
  return add_query_arg($args, NextendSocialLogin::getLoginUrl());
124
  }
125
 
 
 
 
 
126
  public function needPro() {
127
  return false;
128
  }
@@ -280,6 +285,16 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
280
  ));
281
  }
282
 
 
 
 
 
 
 
 
 
 
 
283
 
284
  do_action($this->id . '_login_action_before', $this);
285
 
@@ -332,7 +347,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
332
  <title><?php _e('Authentication successful', 'nextend-facebook-connect'); ?></title>
333
  <script type="text/javascript">
334
  try {
335
- if (window.opener !== null) {
336
  window.opener.location = <?php echo wp_json_encode($this->getLoginUrl()); ?>;
337
  window.close();
338
  } else {
@@ -837,7 +852,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
837
  <title><?php echo __('Authentication failed', 'nextend-facebook-connect'); ?></title>
838
  <script type="text/javascript">
839
  try {
840
- if (window.opener !== null) {
841
  window.close();
842
  }
843
  }
@@ -914,7 +929,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
914
  <title><?php echo $title; ?></title>
915
  <script type="text/javascript">
916
  try {
917
- if (window.opener !== null) {
918
  window.opener.location = <?php echo wp_json_encode($url); ?>;
919
  window.close();
920
  }
82
  }
83
 
84
  public function getRawDefaultButton() {
85
+
86
+ return '<span class="nsl-button nsl-button-default nsl-button-' . $this->id . '" style="background-color:' . $this->color . ';"><span class="nsl-button-svg-container">' . $this->svg . '</span><span class="nsl-button-label-container">{{label}}</span></span>';
87
  }
88
 
89
  public function getRawIconButton() {
90
+ return '<span class="nsl-button nsl-button-icon nsl-button-' . $this->id . '" style="background-color:' . $this->color . ';"><span class="nsl-button-svg-container">' . $this->svg . '</span></span>';
91
  }
92
 
93
  public function getDefaultButton($label) {
124
  return add_query_arg($args, NextendSocialLogin::getLoginUrl());
125
  }
126
 
127
+ public function getRedirectUriForApp() {
128
+ return $this->getRedirectUri();
129
+ }
130
+
131
  public function needPro() {
132
  return false;
133
  }
285
  ));
286
  }
287
 
288
+ // Redirect if the registration is blocked by another Plugin like Cerber.
289
+ if (function_exists('cerber_is_allowed')) {
290
+ $allowed = cerber_is_allowed();
291
+ if (!$allowed) {
292
+ global $wp_cerber;
293
+ $error = $wp_cerber->getErrorMsg();
294
+ \NSL\Notices::addError($error);
295
+ $this->redirectToLoginForm();
296
+ }
297
+ }
298
 
299
  do_action($this->id . '_login_action_before', $this);
300
 
347
  <title><?php _e('Authentication successful', 'nextend-facebook-connect'); ?></title>
348
  <script type="text/javascript">
349
  try {
350
+ if (window.opener !== null && window.opener !== window) {
351
  window.opener.location = <?php echo wp_json_encode($this->getLoginUrl()); ?>;
352
  window.close();
353
  } else {
852
  <title><?php echo __('Authentication failed', 'nextend-facebook-connect'); ?></title>
853
  <script type="text/javascript">
854
  try {
855
+ if (window.opener !== null && window.opener !== window) {
856
  window.close();
857
  }
858
  }
929
  <title><?php echo $title; ?></title>
930
  <script type="text/javascript">
931
  try {
932
+ if (window.opener !== null && window.opener !== window) {
933
  window.opener.location = <?php echo wp_json_encode($url); ?>;
934
  window.close();
935
  }
includes/user.php CHANGED
@@ -155,6 +155,7 @@ class NextendSocialUser {
155
  * @return bool
156
  */
157
  protected function register($providerID, $email) {
 
158
  NextendSocialLogin::$WPLoginCurrentFlow = 'register';
159
 
160
  $sanitized_user_login = false;
@@ -231,6 +232,27 @@ class NextendSocialUser {
231
  */
232
  do_action('nsl_pre_register_new_user', $this);
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  /**
235
  * Eduma theme user priority 1000 to auto log in users. We need to stay under that priority @see https://themeforest.net/item/education-wordpress-theme-education-wp/14058034
236
  * WooCommerce Follow-Up Emails use priority 10, so we need higher @see https://woocommerce.com/products/follow-up-emails/
@@ -270,9 +292,14 @@ class NextendSocialUser {
270
  }
271
  }
272
 
273
- $ret = wp_insert_user($user_data);
 
 
274
 
275
- if (is_wp_error($ret) || $ret === 0) {
 
 
 
276
  $this->registerError();
277
  exit;
278
  }
@@ -333,6 +360,15 @@ class NextendSocialUser {
333
 
334
  do_action('register_new_user', $user_id);
335
 
 
 
 
 
 
 
 
 
 
336
  $this->login($user_id);
337
 
338
  return true;
@@ -358,6 +394,30 @@ class NextendSocialUser {
358
 
359
  protected function login($user_id) {
360
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
361
  $this->user_id = $user_id;
362
 
363
  add_action('nsl_' . $this->provider->getId() . '_login', array(
155
  * @return bool
156
  */
157
  protected function register($providerID, $email) {
158
+
159
  NextendSocialLogin::$WPLoginCurrentFlow = 'register';
160
 
161
  $sanitized_user_login = false;
232
  */
233
  do_action('nsl_pre_register_new_user', $this);
234
 
235
+ $loginRestriction = NextendSocialLogin::$settings->get('login_restriction');
236
+ if ($loginRestriction) {
237
+ $errors = new WP_Error();
238
+
239
+ //Prevent New User Approve registration before NSL registration
240
+ if (class_exists('pw_new_user_approve', false)) {
241
+ remove_action('register_post', array(
242
+ pw_new_user_approve::instance(),
243
+ 'create_new_user'
244
+ ), 10);
245
+ }
246
+
247
+ /*For TML 6.4.17 Register notification integration*/
248
+ do_action('register_post', $userData['username'], $userData['email'], $errors);
249
+
250
+ if ($errors->get_error_code()) {
251
+ \NSL\Notices::addError($errors);
252
+ $this->redirectToLastLocationLogin();
253
+ }
254
+ }
255
+
256
  /**
257
  * Eduma theme user priority 1000 to auto log in users. We need to stay under that priority @see https://themeforest.net/item/education-wordpress-theme-education-wp/14058034
258
  * WooCommerce Follow-Up Emails use priority 10, so we need higher @see https://woocommerce.com/products/follow-up-emails/
292
  }
293
  }
294
 
295
+ $error = wp_insert_user($user_data);
296
+
297
+ if (is_wp_error($error)) {
298
 
299
+ \NSL\Notices::addError($error);
300
+ $this->redirectToLastLocationLogin();
301
+
302
+ } else if ($error === 0) {
303
  $this->registerError();
304
  exit;
305
  }
360
 
361
  do_action('register_new_user', $user_id);
362
 
363
+ /*Ultimate Member Registration integration*/
364
+ if (class_exists('UM', false)) {
365
+ //Necessary to clear the UM user cache that was generated by: um\core\User:set_gravatar
366
+ UM()
367
+ ->user()
368
+ ->remove_cache($user_id);
369
+ do_action('um_user_register', $user_id, array());
370
+ }
371
+
372
  $this->login($user_id);
373
 
374
  return true;
394
 
395
  protected function login($user_id) {
396
 
397
+ $loginRestriction = NextendSocialLogin::$settings->get('login_restriction');
398
+ if ($loginRestriction) {
399
+ $user = new WP_User($user_id);
400
+ $user = apply_filters('authenticate', $user, $user->get('user_login'), null);
401
+ if (is_wp_error($user)) {
402
+ \NSL\Notices::addError($user);
403
+ $this->provider->redirectToLoginForm();
404
+
405
+ return $user;
406
+ }
407
+
408
+ /**
409
+ * Other plugins use this hook to prevent log in
410
+ */
411
+ $user = apply_filters('wp_authenticate_user', $user, null);
412
+ if (is_wp_error($user)) {
413
+ \NSL\Notices::addError($user);
414
+ $this->provider->redirectToLoginForm();
415
+
416
+ return $user;
417
+ }
418
+ }
419
+
420
+
421
  $this->user_id = $user_id;
422
 
423
  add_action('nsl_' . $this->provider->getId() . '_login', array(
languages/nextend-facebook-connect-es_LA.mo CHANGED
Binary file
languages/nextend-facebook-connect-es_LA.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2018-05-08 15:04+0200\n"
5
- "PO-Revision-Date: 2018-05-21 16:17-0500\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.6\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -21,48 +21,139 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
24
- #: nextend-facebook-connect/admin/admin.php:187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  #, php-format
26
  msgid "%s needs json_decode function."
27
  msgstr "%s necesita la función json_decode."
28
 
29
- #: nextend-facebook-connect/admin/admin.php:187
30
  msgid "Please contact your server administrator and ask for solution!"
31
  msgstr ""
32
  "¡Por favor, ponte en contacto con el administrador de tu servidor y solicita "
33
  "una solución!"
34
 
35
- #: nextend-facebook-connect/admin/admin.php:214
36
- #: nextend-facebook-connect/admin/admin.php:256
37
  msgid "Settings saved."
38
  msgstr "Ajustes guardados."
39
 
40
- #: nextend-facebook-connect/admin/admin.php:223
41
  msgid "The authorization was successful"
42
  msgstr "La autorización fue exitosa"
43
 
44
- #: nextend-facebook-connect/admin/admin.php:234
45
  msgid "Deauthorize completed."
46
  msgstr "Desautorizar completado."
47
 
48
- #: nextend-facebook-connect/admin/admin.php:374
49
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
50
  #: nextend-facebook-connect/admin/templates/providers.php:84
51
  #: nextend-facebook-connect/admin/templates/providers.php:96
52
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
53
  msgid "Settings"
54
  msgstr "Ajustes"
55
 
56
- #: nextend-facebook-connect/admin/admin.php:448
57
- #: nextend-facebook-connect/includes/oauth2.php:131
58
- #: nextend-facebook-connect/includes/oauth2.php:273
59
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
60
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:155
61
  #, php-format
62
  msgid "Unexpected response: %s"
63
  msgstr "Respuesta inesperada: %s"
64
 
65
- #: nextend-facebook-connect/admin/admin.php:506
66
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
67
  #, php-format
68
  msgid ""
@@ -72,15 +163,15 @@ msgstr ""
72
  "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI "
73
  "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas."
74
 
75
- #: nextend-facebook-connect/admin/admin.php:507
76
  msgid "Fix Error"
77
  msgstr "Arreglar Error"
78
 
79
- #: nextend-facebook-connect/admin/admin.php:507
80
  msgid "Oauth Redirect URI"
81
  msgstr "URI de redireccionamiento de Oauth"
82
 
83
- #: nextend-facebook-connect/admin/admin.php:517
84
  #, php-format
85
  msgid ""
86
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -89,80 +180,138 @@ msgstr ""
89
  "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon "
90
  "para mostrar los botones de Social Login en el formulario de acceso de %2$s!"
91
 
92
- #: nextend-facebook-connect/admin/admin.php:518
93
  msgid "Dismiss and check Pro Addon"
94
  msgstr "Descartar y verificar Pro Addon"
95
 
96
- #: nextend-facebook-connect/admin/admin.php:518
97
  msgid "Dismiss"
98
  msgstr "Descartar"
99
 
100
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "Login label"
102
  msgstr "Etiqueta de acceso"
103
 
104
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
105
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:90
106
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
107
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
108
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
 
109
  msgid "Reset to default"
110
  msgstr "Restablecer los valores predeterminados"
111
 
112
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
113
  msgid "Link label"
114
  msgstr "Etiqueta de enlace"
115
 
116
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:96
117
  msgid "Unlink label"
118
  msgstr "Etiqueta de desenlazar"
119
 
120
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
121
  msgid "Default button"
122
  msgstr "Botón predeterminado"
123
 
124
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:123
125
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
126
  msgid "Use custom button"
127
  msgstr "Usa botón personalizado"
128
 
129
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
130
  #, php-format
131
  msgid "Use the %s in your custom button's code to make the label show up."
132
  msgstr ""
133
  "Use el %s en el código de tu botón personalizado para que aparezca la "
134
  "etiqueta."
135
 
136
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:138
137
  msgid "Icon button"
138
  msgstr "Botón de icono"
139
 
140
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:169
141
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
142
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:90
143
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
144
- #: nextend-facebook-connect/admin/templates/settings/comment.php:56
145
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
146
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
147
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
148
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
149
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:86
 
 
150
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
151
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
152
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
153
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
154
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
155
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
156
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
 
157
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
158
  msgid "Save Changes"
159
  msgstr "Guardar Cambios"
160
 
161
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
162
  #: nextend-facebook-connect/admin/templates/providers.php:64
 
163
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
164
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
 
165
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
 
166
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
167
  msgid "Getting Started"
168
  msgstr "Empezando"
@@ -192,9 +341,22 @@ msgid "Fallback username prefix on register"
192
  msgstr "Prefijo del usuario de reservo cuando se registra"
193
 
194
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
195
- msgid "Used when username is invalid"
 
 
196
  msgstr "Usado cuando el nombre del usuario no es válido"
197
 
 
 
 
 
 
 
 
 
 
 
 
198
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
199
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
200
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:10
@@ -245,9 +407,9 @@ msgstr "Conectar automáticamente la cuenta existente al registrarse"
245
 
246
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
247
  #: nextend-facebook-connect/admin/templates/providers.php:39
248
- #: nextend-facebook-connect/admin/templates/settings/general.php:55
249
- #: nextend-facebook-connect/admin/templates/settings/general.php:69
250
- #: nextend-facebook-connect/includes/provider-admin.php:207
251
  msgid "Disabled"
252
  msgstr "Desactivado"
253
 
@@ -266,19 +428,25 @@ msgstr ""
266
 
267
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
268
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
269
- #: nextend-facebook-connect/admin/templates/settings/comment.php:40
270
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
271
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
272
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
 
 
 
273
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
274
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
275
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
 
 
 
276
  #: nextend-facebook-connect/widget.php:40
277
  msgid "Default"
278
  msgstr "Predeterminado"
279
 
280
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
281
- #: nextend-social-login-pro/class-provider-extension.php:409
282
  msgid "Register"
283
  msgstr "Registrarse"
284
 
@@ -294,11 +462,6 @@ msgstr "Enlace"
294
  msgid "Store in meta key"
295
  msgstr "Guardar en clave meta"
296
 
297
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:80
298
- #, php-format
299
- msgid "Required scope: %1$s"
300
- msgstr "Alcance requerido: %1$s"
301
-
302
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
303
  msgid "Shortcode"
304
  msgstr "Código corto"
@@ -319,6 +482,84 @@ msgstr "Botón de imagen"
319
  msgid "Image url"
320
  msgstr "URL de imagen"
321
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
322
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
323
  msgid "Fix Oauth Redirect URIs"
324
  msgstr "Arregla los URI de redireccionamiento de Oauth"
@@ -331,22 +572,26 @@ msgstr "Cada URI de redireccionamiento de Oauth está bien"
331
  msgid "Got it"
332
  msgstr "Entiendo"
333
 
334
- #: nextend-facebook-connect/admin/templates/global-settings.php:26
335
  #: nextend-facebook-connect/admin/templates/menu.php:8
336
  msgid "Global Settings"
337
  msgstr "Ajustes Globales"
338
 
339
- #: nextend-facebook-connect/admin/templates/global-settings.php:29
340
  msgid "General"
341
  msgstr "General"
342
 
343
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
 
 
 
 
344
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
345
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
346
  msgid "Login Form"
347
  msgstr "Formulario de Acceso"
348
 
349
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
350
  msgid "Comment"
351
  msgstr "Comentario"
352
 
@@ -358,7 +603,7 @@ msgstr "Documentos"
358
  msgid "Support"
359
  msgstr "Apoyo"
360
 
361
- #: nextend-facebook-connect/admin/templates/header.php:20
362
  #: nextend-facebook-connect/admin/templates/menu.php:12
363
  msgid "Pro Addon"
364
  msgstr "Pro Addon"
@@ -394,7 +639,7 @@ msgstr ""
394
  "Pro, debes activarlo."
395
 
396
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
397
- #: nextend-facebook-connect/admin/templates/pro-addon.php:215
398
  msgid "Deauthorize Pro Addon"
399
  msgstr "Desautorizar Pro Addon"
400
 
@@ -423,33 +668,11 @@ msgstr "Instalar Pro Addon"
423
  msgid "Activating..."
424
  msgstr "Activando..."
425
 
426
- #: nextend-facebook-connect/admin/templates/pro-addon.php:126
427
- msgid "Authorize your Pro Addon"
428
- msgstr "Autoriza tu Pro Addon"
429
-
430
- #: nextend-facebook-connect/admin/templates/pro-addon.php:127
431
- msgid ""
432
- "To be able to use the Pro features, you need to authorize Nextend Social "
433
- "Connect Pro Addon. You can do this by clicking on the Authorize button below "
434
- "then select the related purchase."
435
- msgstr ""
436
- "Para poder usar las funciones Pro, debes autorizar Nextend Social Connect "
437
- "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a "
438
- "continuación y luego seleccionar la compra relacionada."
439
-
440
- #: nextend-facebook-connect/admin/templates/pro-addon.php:132
441
- msgid "Authorize"
442
- msgstr "Autorizar"
443
-
444
- #: nextend-facebook-connect/admin/templates/pro-addon.php:189
445
- msgid "License key"
446
- msgstr "Clave de licencia"
447
-
448
- #: nextend-facebook-connect/admin/templates/pro-addon.php:206
449
  msgid "Pro Addon is installed and activated"
450
  msgstr "Pro Addon está instalado y activado"
451
 
452
- #: nextend-facebook-connect/admin/templates/pro-addon.php:208
453
  msgid ""
454
  "You installed and activated the Pro Addon. If you don’t want to use it "
455
  "anymore, you can deauthorize using the button below."
@@ -512,9 +735,9 @@ msgid "Not Verified"
512
  msgstr "No Verificado"
513
 
514
  #: nextend-facebook-connect/admin/templates/providers.php:42
515
- #: nextend-facebook-connect/admin/templates/settings/general.php:58
516
- #: nextend-facebook-connect/admin/templates/settings/general.php:72
517
- #: nextend-facebook-connect/includes/provider-admin.php:210
518
  msgid "Enabled"
519
  msgstr "Habilitado"
520
 
@@ -527,17 +750,17 @@ msgid "Upgrade Now"
527
  msgstr "Actualizar Ahora"
528
 
529
  #: nextend-facebook-connect/admin/templates/providers.php:72
530
- #: nextend-facebook-connect/includes/provider-admin.php:194
531
  msgid "Verify Settings"
532
  msgstr "Verificar Configuración"
533
 
534
  #: nextend-facebook-connect/admin/templates/providers.php:80
535
- #: nextend-facebook-connect/includes/provider-admin.php:239
536
  msgid "Enable"
537
  msgstr "Habilitar"
538
 
539
  #: nextend-facebook-connect/admin/templates/providers.php:92
540
- #: nextend-facebook-connect/includes/provider-admin.php:247
541
  msgid "Disable"
542
  msgstr "Inhabilitar"
543
 
@@ -545,18 +768,54 @@ msgstr "Inhabilitar"
545
  msgid "Import"
546
  msgstr "Importar"
547
 
548
- #: nextend-facebook-connect/admin/templates/providers.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
549
  msgid "Saving..."
550
  msgstr "Guardando..."
551
 
552
- #: nextend-facebook-connect/admin/templates/providers.php:123
553
  msgid "Saving failed"
554
  msgstr "No se pudo guardar"
555
 
556
- #: nextend-facebook-connect/admin/templates/providers.php:124
557
  msgid "Order Saved"
558
  msgstr "Orden Guardado"
559
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
560
  #: nextend-facebook-connect/admin/templates/review.php:14
561
  msgid "Rate your experience!"
562
  msgstr "¡Califica tu experiencia!"
@@ -598,8 +857,12 @@ msgid "Ok, you deserve it"
598
  msgstr "Ok, lo mereces"
599
 
600
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
601
- msgid "BuddyPress register form"
602
- msgstr "Formulario de registro para BuddyPress"
 
 
 
 
603
 
604
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
605
  msgid "No Connect button"
@@ -612,15 +875,19 @@ msgstr "Conectar botón antes de registrarse"
612
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
613
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
614
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
615
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
616
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
617
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
618
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
619
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
620
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
621
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
622
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
623
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
 
 
 
 
624
  msgid "Action:"
625
  msgstr "Acción:"
626
 
@@ -633,50 +900,60 @@ msgid "Connect button after register"
633
  msgstr "Conectar botón después de registrarse"
634
 
635
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
636
- msgid "BuddyPress register button style"
637
- msgstr "Estilo del botón de registro BuddyPress"
 
 
638
 
639
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
640
- #: nextend-facebook-connect/admin/templates/settings/comment.php:46
641
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
642
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
643
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
 
 
 
644
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
645
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
646
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
647
  #: nextend-facebook-connect/widget.php:45
648
  msgid "Icon"
649
  msgstr "Icono"
650
 
651
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
652
- #: nextend-facebook-connect/admin/templates/settings/comment.php:22
653
- msgid "Comment login button"
654
- msgstr "Botón para iniciar sesión para comentar"
 
655
 
656
- #: nextend-facebook-connect/admin/templates/settings/comment.php:25
 
657
  msgid "Show"
658
  msgstr "Mostrar"
659
 
660
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
661
  msgid "Hide"
662
  msgstr "Esconder"
663
 
664
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
665
  #, php-format
666
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
667
  msgstr "Necesitas activar el ' %1$s > %2$s > %3$s ' para que funcione"
668
 
669
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
670
  msgid "Discussion"
671
  msgstr "Discusión"
672
 
673
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
674
  msgid "Users must be registered and logged in to comment"
675
  msgstr "Los usuarios deben estar registrados e iniciar sesión para comentar"
676
 
677
- #: nextend-facebook-connect/admin/templates/settings/comment.php:34
678
- msgid "Comment button style"
679
- msgstr "Estilo de botón para comentar"
 
 
 
680
 
681
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
682
  msgid "Target window"
@@ -703,82 +980,144 @@ msgid "Allow registration with Social login"
703
  msgstr "Permitir registro con Social login"
704
 
705
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
706
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
707
  msgid "Registration notification sent to"
708
  msgstr "Notificación de registro enviado a"
709
 
710
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
711
  msgid "WordPress default"
712
  msgstr "Configuración predeterminada de Wordpress"
713
 
714
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
715
  msgid "Nobody"
716
  msgstr "Nadie"
717
 
718
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
719
- msgid "User"
720
- msgstr "Usario"
721
-
722
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
723
  msgid "Admin"
724
  msgstr "Administrador"
725
 
726
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
727
  msgid "User and Admin"
728
  msgstr "Usuario y Administrador"
729
 
730
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
731
- #: nextend-facebook-connect/admin/templates/settings/general.php:52
732
  msgid "Debug mode"
733
  msgstr "Modo de depuración"
734
 
735
- #: nextend-facebook-connect/admin/templates/settings/general.php:64
736
- msgid "Store Avatar"
737
- msgstr "Avatar de Tienda"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
738
 
739
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
740
  msgid "Default redirect url"
741
  msgstr "URL de redirección predeterminada"
742
 
743
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
744
- #: nextend-facebook-connect/admin/templates/settings/general.php:130
745
  msgid "for Login"
746
  msgstr "para Iniciar Sesión"
747
 
748
- #: nextend-facebook-connect/admin/templates/settings/general.php:107
749
- #: nextend-facebook-connect/admin/templates/settings/general.php:145
750
  msgid "for Register"
751
  msgstr "para Registrarse"
752
 
753
- #: nextend-facebook-connect/admin/templates/settings/general.php:117
754
  msgid "Fixed redirect url"
755
  msgstr "URL de redirección fija"
756
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
757
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
758
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
 
759
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
760
  msgid "Login form button style"
761
  msgstr "Estilo de botón para iniciar sesión"
762
 
763
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
764
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
 
765
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
 
766
  msgid "Login layout"
767
  msgstr "Diseño de Inicio de Sesión"
768
 
769
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
770
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
771
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
 
 
 
772
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
773
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
 
 
 
774
  msgid "Below"
775
  msgstr "Abajo"
776
 
777
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
778
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
779
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
 
 
 
780
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
781
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
 
 
 
782
  msgid "Below with separator"
783
  msgstr "Abajo con separación"
784
 
@@ -789,16 +1128,28 @@ msgstr "Abajo y flotando"
789
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
790
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
791
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
 
 
 
792
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
793
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
 
 
 
794
  msgid "Above"
795
  msgstr "Encima"
796
 
797
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
798
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
799
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
 
 
 
800
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
801
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
 
 
 
802
  msgid "Above with separator"
803
  msgstr "Encima con separación"
804
 
@@ -828,7 +1179,7 @@ msgid "Hide login buttons"
828
  msgstr "Esconder botones de iniciar sesión"
829
 
830
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
831
- #: nextend-social-login-pro/class-provider-extension.php:328
832
  msgid "Registration Form"
833
  msgstr "Formulario de Registro"
834
 
@@ -836,114 +1187,217 @@ msgstr "Formulario de Registro"
836
  msgid "Embedded login form"
837
  msgstr "Formulario de Inicio de Sesión integrado"
838
 
839
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:68
840
- msgid "MemberPress account details"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
841
  msgstr "Detalles de cuenta MemberPress"
842
 
843
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:73
 
844
  msgid "No link buttons"
845
  msgstr "Sin botones de enlace"
846
 
847
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
848
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
849
  msgid "Link buttons after account details"
850
  msgstr "Enlazar botones de enlace después de los detalles de la cuenta"
851
 
852
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
853
- msgid "Register Form"
854
- msgstr "Formulario de Registro"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
855
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
856
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
857
  msgid "Register form button style"
858
  msgstr "Estilo de botón de formulario de Registro integrado"
859
 
 
860
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
 
861
  msgid "Register layout"
862
  msgstr "Diseño de Registro"
863
 
864
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
865
- msgid "WooCommerce login form"
866
- msgstr "Formulario de iniciar sesión WooCommerce"
867
 
868
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
869
  msgid "No Connect button in login form"
870
  msgstr "Sin botón de conexión en el formulario de inicio de sesión"
871
 
872
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
873
- msgid "Connect button before login form"
874
- msgstr "Conectar botón antes del formulario inicio de sesión"
875
-
876
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
877
- msgid "Connect button after login form"
878
- msgstr "Conectar botón después del formulario inicio de sesión"
879
-
880
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
881
- msgid "WooCommerce register form"
882
- msgstr "Formulario de registro WooCommerce"
883
-
884
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
885
  msgid "No Connect button in register form"
886
  msgstr "Sin botón de conexión en el formulario de registro"
887
 
888
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
889
- msgid "Connect button before register form"
890
- msgstr "Conectar botón antes del formulario registro"
891
-
892
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
893
- msgid "Connect button after register form"
894
- msgstr "Conectar botón después del formulario registro"
895
-
896
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
897
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
898
- msgid "WooCommerce billing form"
899
  msgstr "Formulario de facturación de WooCommerce"
900
 
901
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
902
  msgid "No Connect button in billing form"
903
  msgstr "Sin botón de conexión en el formulario de facturación"
904
 
905
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
906
- msgid "Connect button before billing form"
907
- msgstr "Conectar botón antes del formulario de facturación"
908
-
909
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
910
- msgid "Connect button after billing form"
911
- msgstr "Conectar botón después del formulario de facturación"
912
 
913
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
914
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
915
- msgid "WooCommerce account details"
916
- msgstr "Detalles de cuenta WooCommerce"
 
 
917
 
918
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
919
- msgid "Link buttons before account details"
920
- msgstr "Enlazar botones antes de detalles de la cuenta"
 
 
921
 
922
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
923
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
924
- msgid "WooCommerce button style"
925
- msgstr "Estilo de botón WooCommerce"
926
 
927
- #: nextend-facebook-connect/includes/avatar.php:45
928
- msgid "Avatar"
929
- msgstr "Avatar"
 
 
930
 
931
- #: nextend-facebook-connect/includes/avatar.php:46
932
  msgid "Manage Avatar"
933
  msgstr "Administrar Avatar"
934
 
935
- #: nextend-facebook-connect/includes/avatar.php:47
936
  #, php-format
937
  msgid "Avatar <span class=\"count\">(%s)</span>"
938
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
939
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
940
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
941
 
942
- #: nextend-facebook-connect/includes/provider-admin.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
943
  msgid "Your configuration needs to be verified"
944
  msgstr "Tu configuración debe ser verificada"
945
 
946
- #: nextend-facebook-connect/includes/provider-admin.php:189
947
  msgid ""
948
  "Before you can start letting your users register with your app it needs to "
949
  "be tested. This test makes sure that no users will have troubles with the "
@@ -957,15 +1411,15 @@ msgstr ""
957
  "mensaje de error en el menú emergente, verifica la ID copiada y el secreto o "
958
  "la aplicación. De lo contrario, tu configuración está bien."
959
 
960
- #: nextend-facebook-connect/includes/provider-admin.php:195
961
  msgid "Please save your changes to verify settings."
962
  msgstr "Guarda los cambios para verificar la configuración."
963
 
964
- #: nextend-facebook-connect/includes/provider-admin.php:203
965
  msgid "Works Fine"
966
  msgstr "Funciona Bien"
967
 
968
- #: nextend-facebook-connect/includes/provider-admin.php:217
969
  #, php-format
970
  msgid ""
971
  "This provider is currently disabled, which means that users can’t register "
@@ -974,7 +1428,7 @@ msgstr ""
974
  "Este proveedor está desactivado, así que los usuarios no pueden registrarse "
975
  "ni iniciar sesión a través de su cuenta de %s."
976
 
977
- #: nextend-facebook-connect/includes/provider-admin.php:220
978
  #, php-format
979
  msgid ""
980
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -984,7 +1438,7 @@ msgstr ""
984
  "permitir que los usuarios se registren o inicien sesión con %s, puedes "
985
  "deshabilitarlo."
986
 
987
- #: nextend-facebook-connect/includes/provider-admin.php:223
988
  #, php-format
989
  msgid ""
990
  "This provider is currently enabled, which means that users can register or "
@@ -993,39 +1447,47 @@ msgstr ""
993
  "Este proveedor está habilitado, así que los usuarios pueden registrarse o "
994
  "iniciar sesión a través de su cuenta %s."
995
 
996
- #: nextend-facebook-connect/includes/provider-admin.php:231
997
  msgid "Verify Settings Again"
998
  msgstr "Verificar la configuración de nuevo"
999
 
1000
- #: nextend-facebook-connect/includes/provider-admin.php:232
1001
  msgid "Please save your changes before verifying settings."
1002
  msgstr "Guarda tus cambios antes de verificar la configuración, por favor."
1003
 
1004
- #: nextend-facebook-connect/includes/provider.php:320
1005
- #: nextend-facebook-connect/includes/provider.php:618
1006
- #: nextend-facebook-connect/includes/provider.php:629
1007
  msgid "Authentication successful"
1008
  msgstr "Autenticación exitosa"
1009
 
1010
- #: nextend-facebook-connect/includes/provider.php:558
1011
- #: nextend-facebook-connect/includes/user.php:102
1012
  msgid "Authentication error"
1013
  msgstr "Error de autenticación"
1014
 
1015
- #: nextend-facebook-connect/includes/provider.php:573
1016
  msgid "Unlink successful."
1017
  msgstr "Desenlace exitoso."
1018
 
1019
- #: nextend-facebook-connect/includes/provider.php:758
1020
- #: nextend-facebook-connect/includes/provider.php:765
1021
  msgid "The test was successful"
1022
  msgstr "La prueba fue exitosa"
1023
 
1024
- #: nextend-facebook-connect/includes/provider.php:811
1025
  msgid "Authentication failed"
1026
  msgstr "Error de autenticación"
1027
 
1028
- #: nextend-facebook-connect/includes/user.php:66
 
 
 
 
 
 
 
 
1029
  #, php-format
1030
  msgid ""
1031
  "Your %1$s account is successfully linked with your account. Now you can sign "
@@ -1034,7 +1496,7 @@ msgstr ""
1034
  "Tu cuenta %1$s está vinculada con éxito a tu cuenta. Ahora puedes iniciar "
1035
  "sesión con %2$s fácilmente."
1036
 
1037
- #: nextend-facebook-connect/includes/user.php:69
1038
  #, php-format
1039
  msgid ""
1040
  "You have already linked a(n) %s account. Please unlink the current and then "
@@ -1043,11 +1505,15 @@ msgstr ""
1043
  "Ya has vinculado una %s cuenta. Desvincula la cuenta actual y después "
1044
  "podrías vincular otra cuenta de %s."
1045
 
1046
- #: nextend-facebook-connect/includes/user.php:74
1047
  #, php-format
1048
  msgid "This %s account is already linked to other user."
1049
  msgstr "Esta cuenta %s ya está vinculada a otro usuario."
1050
 
 
 
 
 
1051
  #. translators: %2$s: PHP version
1052
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1053
  #, php-format
@@ -1064,18 +1530,23 @@ msgstr ""
1064
  "%1$s requiere la versión de WordPress %2$s+. Desde estás utilizando una "
1065
  "versión anterior, el plugin NO ESTÁ ACTIVO."
1066
 
1067
- #: nextend-facebook-connect/nextend-social-login.php:25
1068
- #: nextend-facebook-connect/nextend-social-login.php:33
1069
  #, php-format
1070
  msgid "Please update %1$s to version %2$s or newer."
1071
  msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
1072
 
1073
- #: nextend-facebook-connect/nextend-social-login.php:25
1074
- #: nextend-facebook-connect/nextend-social-login.php:33
1075
  msgid "Update now!"
1076
  msgstr "¡Actualizar ahora!"
1077
 
1078
- #: nextend-facebook-connect/nextend-social-login.php:379
 
 
 
 
 
1079
  #, php-format
1080
  msgid ""
1081
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
@@ -1084,7 +1555,7 @@ msgstr ""
1084
  "%s ha reemplazado Nextend Google Connect. Puedes eliminar Nextend Google "
1085
  "Connect porque ya no es necesario."
1086
 
1087
- #: nextend-facebook-connect/nextend-social-login.php:390
1088
  #, php-format
1089
  msgid ""
1090
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
@@ -1093,41 +1564,20 @@ msgstr ""
1093
  "%s ha reemplazado Nextend Twitter Connect. Puedes eliminar Nextend Twitter "
1094
  "Connect porque ya no es necesario."
1095
 
1096
- #: nextend-facebook-connect/nextend-social-login.php:507
1097
- msgid "You have logged in successfully."
1098
- msgstr "Has ingresado exitosamente."
1099
-
1100
- #: nextend-facebook-connect/nextend-social-login.php:631
1101
- #: nextend-facebook-connect/nextend-social-login.php:919
1102
  msgid "Social Login"
1103
  msgstr "Social Login"
1104
 
1105
- #: nextend-facebook-connect/nextend-social-login.php:903
1106
  msgid "Social Accounts"
1107
  msgstr "Cuentas Sociales"
1108
 
1109
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1110
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1111
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1112
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1113
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1114
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1115
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1116
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21
1117
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1118
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1119
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1120
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
1121
- #, php-format
1122
- msgid "Navigate to %s"
1123
- msgstr "Navegar a %s"
1124
-
1125
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1126
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
1127
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1128
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1129
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1130
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1131
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1132
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1133
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
@@ -1146,7 +1596,7 @@ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1146
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
1147
 
1148
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1149
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1150
  #, php-format
1151
  msgid ""
1152
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
@@ -1154,7 +1604,7 @@ msgstr ""
1154
  "Agrega la siguiente URL al campo \"Valid OAuth redirect URIs\": <b>%s</b>"
1155
 
1156
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1157
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1158
  msgid "Click on \"Save Changes\""
1159
  msgstr "Haz clic en \"Guardar Cambios\""
1160
 
@@ -1175,7 +1625,7 @@ msgstr ""
1175
  msgid "How to get SSL for my WordPress site?"
1176
  msgstr "¿Cómo puedo obtener SSL para mi sitio de WordPress?"
1177
 
1178
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:16
1179
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1180
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1181
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
@@ -1194,30 +1644,31 @@ msgstr ""
1194
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
1195
  "dados según tu aplicación %1$s."
1196
 
1197
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:18
1198
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1199
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1200
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:18
1201
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
 
1202
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1203
  #, php-format
1204
  msgctxt "App creation"
1205
  msgid "Create %s"
1206
  msgstr "Crear %s"
1207
 
1208
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1209
  msgid "Click on the \"Add a New App\" button"
1210
  msgstr "Haz clic en el botón \"Add a New App\" por favor"
1211
 
1212
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1213
  msgid "Fill \"Display Name\" and \"Contact Email\""
1214
  msgstr "Llena \"Nombre para Mostrar\" y \"Email de Contacto\""
1215
 
1216
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1217
  msgid "Click on blue \"Create App ID\" button"
1218
  msgstr "Haz clic en el botón azul \"Create App ID\" por favor"
1219
 
1220
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1221
  msgid ""
1222
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1223
  "button"
@@ -1225,33 +1676,35 @@ msgstr ""
1225
  "Mueve tu mouse sobre Facebook Login y haz clic en el botón \"Configurar\" "
1226
  "que aparece"
1227
 
1228
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1229
  msgid "Choose Web"
1230
  msgstr "Escoge Web"
1231
 
1232
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1233
  #, php-format
1234
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1235
  msgstr ""
1236
  "Llena \"Site URL\" con la URL de tu página principal, probablemente: <b>%s</"
1237
  "b>"
1238
 
1239
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1240
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
 
1241
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
 
1242
  msgid "Click on \"Save\""
1243
  msgstr "Haz clic en \"Guardar Cambios\""
1244
 
1245
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1246
  msgid "In the left sidebar, click on \"Facebook Login\""
1247
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login\""
1248
 
1249
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1250
  msgid "In the top of the left sidebar, click on \"Settings\""
1251
  msgstr ""
1252
  "En la parte superior de la barra lateral izquierda, haz clic en \"Ajustes\""
1253
 
1254
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1255
  msgid ""
1256
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1257
  "click on the \"Show\" button. These will be needed in plugin's settings."
@@ -1260,11 +1713,11 @@ msgstr ""
1260
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
1261
  "plugin."
1262
 
1263
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1264
  msgid "Enter your domain name to the App Domains"
1265
  msgstr "Ingresa tu nombre de dominio a los App Domains"
1266
 
1267
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1268
  msgid ""
1269
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1270
  "accessible privacy policy that explains what data you are collecting and how "
@@ -1274,14 +1727,14 @@ msgstr ""
1274
  "accesible al público y de fácil acceso que explique cuales datos estás "
1275
  "recopilando y cómo utilizarás esos datos."
1276
 
1277
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1278
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1279
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1280
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1281
  msgid "Save your changes."
1282
  msgstr "Guarda tus cambios."
1283
 
1284
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1285
  msgid ""
1286
  "Your application is currently private, which means that only you can log in "
1287
  "with it. In the left sidebar choose \"App Review\" and make your App public"
@@ -1290,11 +1743,12 @@ msgstr ""
1290
  "En la barra lateral izquierda, elige \"App Review\" y haz que tu aplicación "
1291
  "sea pública"
1292
 
1293
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1294
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
1295
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
1296
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
1297
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
 
1298
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1299
  #, php-format
1300
  msgid "I am done setting up my %s"
@@ -1447,6 +1901,8 @@ msgstr "App ID"
1447
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1448
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1449
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
 
 
1450
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1451
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1452
  msgid "Required"
@@ -1457,6 +1913,7 @@ msgstr "Obligatorio"
1457
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1458
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1459
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
 
1460
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1461
  #, php-format
1462
  msgid ""
@@ -1482,18 +1939,43 @@ msgstr "Enlazar cuenta con <b>Facebook</b>"
1482
  msgid "Unlink account from <b>Facebook</b>"
1483
  msgstr "Desenlazar cuenta de <b>Facebook</b>"
1484
 
1485
- #: nextend-facebook-connect/providers/facebook/facebook.php:151
1486
- #: nextend-facebook-connect/providers/google/google.php:71
1487
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
1488
- #: nextend-social-login-pro/providers/amazon/amazon.php:71
1489
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1490
- #: nextend-social-login-pro/providers/vk/vk.php:68
 
1491
  #, php-format
1492
  msgid ""
1493
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1494
  msgstr ""
1495
  "El %1$s ingresado no parece ser válido. Por favor ingresa un %2$s válido."
1496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1497
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1498
  msgid "Click on the \"Credentials\" in the left hand menu"
1499
  msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
@@ -1504,7 +1986,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
1504
  msgstr "Haz clic en la ID del cliente de OAuth 2.0: %s"
1505
 
1506
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1507
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1508
  #, php-format
1509
  msgid ""
1510
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -1512,22 +1994,37 @@ msgstr ""
1512
  "Agrega la siguiente URL al campo \"Authorised redirect URIs\": <b>%s</b>"
1513
 
1514
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
 
 
 
 
1515
  msgid ""
1516
  "If you don't have a project yet, you'll need to create one. You can do this "
1517
- "by clicking on the blue \"Create project\" button on the right side"
 
 
1518
  msgstr ""
1519
  "Si aún no tienes un proyecto, deberás crear uno. Puedes hacer esto haciendo "
1520
  "clic en el botón azul \"Create project\" en el lado derecho"
1521
 
1522
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1523
- msgid "Name your project and then click on the Create button"
1524
- msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
 
 
 
1525
 
1526
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
 
 
 
 
 
 
1527
  msgid "Once you have a project, you'll end up in the dashboard."
1528
  msgstr "Una vez que tengas un proyecto, llegarás al escritorio."
1529
 
1530
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1531
  msgid ""
1532
  "Click on the \"Credentials\" in the left hand menu to create new API "
1533
  "credentials"
@@ -1535,38 +2032,36 @@ msgstr ""
1535
  "Haz clic en \"Credentials\" en el menú de la izquierda para crear nuevas "
1536
  "credenciales de API"
1537
 
1538
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
 
 
 
 
 
 
 
 
1539
  msgid ""
1540
- "Go to the OAuth consent screen tab and enter a product name and provide the "
1541
- "Privacy Policy URL, then click on the save button."
1542
  msgstr ""
1543
  "Ve a la pestaña de la pantalla de consentimiento de OAuth e ingresa el "
1544
  "nombre de un producto y proporciona la URL de la Privacy Policy, luego haz "
1545
  "clic en el botón guardar."
1546
 
1547
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1548
- msgid ""
1549
- "Go back to the Credentials tab and locate the small box at the middle. Click "
1550
- "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
1551
- "from the dropdown list."
1552
- msgstr ""
1553
- "Regresa a la pestaña de Credentials y ubica la pequeña caja en el medio. Haz "
1554
- "clic en el botón azul \"Create credentials\". Elija la \"OAuth client ID\" "
1555
- "de la lista desplegable."
1556
-
1557
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1558
  msgid "Your application type should be \"Web application\""
1559
  msgstr "Tu tipo de aplicación debe ser \"Web application\""
1560
 
1561
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1562
  msgid "Name your application"
1563
  msgstr "Nombra tu aplicación"
1564
 
1565
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1566
  msgid "Click on the Create button"
1567
  msgstr "Haz clic en el botón Create"
1568
 
1569
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1570
  msgid ""
1571
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1572
  "the Credentials in the left hand menu and select your app by clicking on its "
@@ -1595,6 +2090,7 @@ msgstr ""
1595
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
1596
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1597
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
 
1598
  msgid "Client ID"
1599
  msgstr "Client ID"
1600
 
@@ -1604,64 +2100,105 @@ msgstr "Client ID"
1604
  msgid "Client Secret"
1605
  msgstr "Client Secret"
1606
 
1607
- #: nextend-facebook-connect/providers/google/google.php:38
1608
  msgid "Continue with <b>Google</b>"
1609
  msgstr "Sigue con <b>Google</b>"
1610
 
1611
- #: nextend-facebook-connect/providers/google/google.php:39
1612
  msgid "Link account with <b>Google</b>"
1613
  msgstr "Enlazar cuenta con <b>Google</b>"
1614
 
1615
- #: nextend-facebook-connect/providers/google/google.php:40
1616
  msgid "Unlink account from <b>Google</b>"
1617
  msgstr "Desenlazar cuenta de <b>Google</b>"
1618
 
 
 
 
 
 
 
1619
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1620
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1621
- msgid "Click on the App"
1622
- msgstr "Haz clic en la App"
 
1623
 
1624
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1625
- msgid "Click on the \"Settings\" tab"
1626
- msgstr "Haz clic en la pestaña de Ajustes"
 
 
1627
 
1628
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
1629
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1630
- #, php-format
1631
- msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
 
1632
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
1633
 
1634
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1635
- msgid "Click on \"Update Settings\""
1636
- msgstr "Haz clic en \"Actualizar Ajustes\""
 
 
1637
 
1638
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1639
- msgid "Click on the \"Create New App\" button"
1640
- msgstr "Haz clic en el botón de \"Create New App\" por favor"
 
 
1641
 
1642
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1643
  #, php-format
1644
  msgid ""
1645
- "Fill the name and description fields. Then enter your site's URL to the "
1646
- "Website field: <b>%s</b>"
 
 
 
 
 
 
 
 
 
 
1647
  msgstr ""
1648
  "Llena los campos de nombre y descripción. Luego ingresa la URL de tu sitio "
1649
  "en el campo Website: <b>%s</b>"
1650
 
1651
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1652
- msgid "Accept the Twitter Developer Agreement"
1653
- msgstr "Aceptar el Twitter Developer Agreement"
1654
 
1655
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
1656
  msgid ""
1657
- "Create your application by clicking on the Create your Twitter application "
1658
- "button"
1659
  msgstr ""
1660
- "Crea tu aplicación haciendo clic en el botón Create your Twitter application"
1661
 
1662
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
 
 
 
 
 
 
 
 
 
1663
  msgid ""
1664
- "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
 
 
 
 
 
 
 
 
1665
  msgstr ""
1666
  "Ve a la pestaña Keys and Access Tokens y busca la Consumer Key y Secret"
1667
 
@@ -1674,22 +2211,32 @@ msgid "Go to the Settings tab."
1674
  msgstr "Ve a la pestaña de Ajustes."
1675
 
1676
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
1677
- msgid "Consumer Key"
1678
- msgstr "Consumer Key"
1679
 
1680
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
1681
- msgid "Consumer Secret"
1682
- msgstr "Consumer Secret"
 
 
 
 
 
 
 
 
 
 
1683
 
1684
- #: nextend-facebook-connect/providers/twitter/twitter.php:38
1685
  msgid "Continue with <b>Twitter</b>"
1686
  msgstr "Sigue con <b>Twitter</b>"
1687
 
1688
- #: nextend-facebook-connect/providers/twitter/twitter.php:39
1689
  msgid "Link account with <b>Twitter</b>"
1690
  msgstr "Enlazar cuenta con <b>Twitter</b>"
1691
 
1692
- #: nextend-facebook-connect/providers/twitter/twitter.php:40
1693
  msgid "Unlink account from <b>Twitter</b>"
1694
  msgstr "Desenlazar cuenta de <b>Twitter</b>"
1695
 
@@ -1714,25 +2261,25 @@ msgstr "Mostrar botones de enlazar"
1714
  msgid "Show unlink buttons"
1715
  msgstr "Mostrar botones de desenlazar"
1716
 
1717
- #: nextend-social-login-pro/class-provider-extension.php:114
1718
  msgid "Social login is not allowed with this role!"
1719
  msgstr "¡Social login no esta permitido con este rol!"
1720
 
1721
- #: nextend-social-login-pro/class-provider-extension.php:209
1722
  #: nextend-social-login-pro/class-provider-extension.php:211
1723
- #: nextend-social-login-pro/class-provider-extension.php:216
1724
- #: nextend-social-login-pro/class-provider-extension.php:222
1725
- #: nextend-social-login-pro/class-provider-extension.php:235
1726
- #: nextend-social-login-pro/class-provider-extension.php:237
1727
- #: nextend-social-login-pro/class-provider-extension.php:240
 
1728
  msgid "ERROR"
1729
  msgstr "ERROR"
1730
 
1731
- #: nextend-social-login-pro/class-provider-extension.php:209
1732
  msgid "Please enter a username."
1733
  msgstr "Por favor introduce un usuario."
1734
 
1735
- #: nextend-social-login-pro/class-provider-extension.php:211
1736
  msgid ""
1737
  "This username is invalid because it uses illegal characters. Please enter a "
1738
  "valid username."
@@ -1740,36 +2287,44 @@ msgstr ""
1740
  "Este usuario no es válido porque usa caracteres ilegales. Por favor ingresa "
1741
  "un usuario válido."
1742
 
1743
- #: nextend-social-login-pro/class-provider-extension.php:216
1744
  msgid "This username is already registered. Please choose another one."
1745
  msgstr "Este nombre de usuario ya está registrado. Por favor escoge otro."
1746
 
1747
- #: nextend-social-login-pro/class-provider-extension.php:222
1748
  msgid "Sorry, that username is not allowed."
1749
  msgstr "Lo sentimos, ese usuario no está permitido."
1750
 
1751
- #: nextend-social-login-pro/class-provider-extension.php:235
 
 
 
 
1752
  msgid "Please enter an email address."
1753
  msgstr "Por favor introduce un email."
1754
 
1755
- #: nextend-social-login-pro/class-provider-extension.php:237
1756
  msgid "The email address isn&#8217;t correct."
1757
  msgstr "El email no es correcto."
1758
 
1759
- #: nextend-social-login-pro/class-provider-extension.php:240
1760
  msgid "This email is already registered, please choose another one."
1761
  msgstr "Este email ya esta registrado, por favor escoge otro."
1762
 
1763
- #: nextend-social-login-pro/class-provider-extension.php:255
 
 
 
 
1764
  msgid "<strong>ERROR</strong>: Please enter a password."
1765
  msgstr "<strong>ERROR</strong>: Por favor introduce una contraseña."
1766
 
1767
- #: nextend-social-login-pro/class-provider-extension.php:260
1768
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1769
  msgstr ""
1770
  "<strong>ERROR</strong>: Contraseñas no pueden contener el caracter \"\\\"."
1771
 
1772
- #: nextend-social-login-pro/class-provider-extension.php:265
1773
  msgid ""
1774
  "<strong>ERROR</strong>: Please enter the same password in both password "
1775
  "fields."
@@ -1777,39 +2332,23 @@ msgstr ""
1777
  "<strong>ERROR</strong>: Por favor introduce la misma contraseña en los dos "
1778
  "campos de contraseña."
1779
 
1780
- #: nextend-social-login-pro/class-provider-extension.php:328
1781
- msgid "Register For This Site!"
1782
- msgstr "¡Registrarse Para Este Sitio!"
1783
-
1784
- #: nextend-social-login-pro/class-provider-extension.php:355
1785
- msgid "Username"
1786
- msgstr "Usuario"
1787
-
1788
- #: nextend-social-login-pro/class-provider-extension.php:362
1789
- msgid "Email"
1790
- msgstr "Email"
1791
-
1792
- #: nextend-social-login-pro/class-provider-extension.php:367
1793
- msgid "Registration confirmation will be emailed to you."
1794
- msgstr "La confirmación de registro será enviada por email."
1795
-
1796
- #: nextend-social-login-pro/class-provider-extension.php:375
1797
  msgid "Password"
1798
  msgstr "Contraseña"
1799
 
1800
- #: nextend-social-login-pro/class-provider-extension.php:385
1801
  msgid "Strength indicator"
1802
  msgstr "Indicador de dificultad"
1803
 
1804
- #: nextend-social-login-pro/class-provider-extension.php:390
1805
  msgid "Confirm use of weak password"
1806
  msgstr "Confirmar el uso de contraseña débil"
1807
 
1808
- #: nextend-social-login-pro/class-provider-extension.php:396
1809
  msgid "Confirm password"
1810
  msgstr "Confirmar contraseña"
1811
 
1812
- #: nextend-social-login-pro/class-provider-extension.php:506
1813
  #, php-format
1814
  msgid ""
1815
  "This email is already registered, please login in to your account to link "
@@ -1836,13 +2375,13 @@ msgid "Install now!"
1836
  msgstr "¡Instalar ahora!"
1837
 
1838
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
1839
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1840
  #, php-format
1841
  msgid "Visit %s"
1842
  msgstr "Visita %s"
1843
 
1844
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
1845
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
1846
  msgid ""
1847
  "On the right side, under \"Manage\", hover over the gear icon and select "
1848
  "\"Web Settings\" option."
@@ -1851,17 +2390,18 @@ msgstr ""
1851
  "ajustes y selecciona la opción \"Web Settings\"."
1852
 
1853
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
1854
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
1855
  msgid "Click \"Edit\"."
1856
  msgstr "Haz clic en \"Edit\"."
1857
 
1858
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
1859
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
1860
  #, php-format
1861
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1862
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
1863
 
1864
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:16
 
1865
  #, php-format
1866
  msgid ""
1867
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -1876,13 +2416,15 @@ msgstr ""
1876
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
1877
  "dados según tu aplicación %1$s."
1878
 
1879
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
 
 
1880
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
1881
  #, php-format
1882
  msgid "Log in with your %s credentials if you are not logged in."
1883
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
1884
 
1885
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
1886
  msgid ""
1887
  "If you don't have a Security Profile yet, you'll need to create one. You can "
1888
  "do this by clicking on the orange \"Create a New Security Profile\" button "
@@ -1892,7 +2434,7 @@ msgstr ""
1892
  "haciendo clic en el botón naranja \"Create a New Security Profile\" en el "
1893
  "lado izquierdo."
1894
 
1895
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
1896
  msgid ""
1897
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
1898
  "\"Consent Privacy Notice URL\"."
@@ -1900,13 +2442,13 @@ msgstr ""
1900
  "Llena \"Security Profile Name\", \"Security Profile Description\" y "
1901
  "\"Consent Privacy Notice URL\"."
1902
 
1903
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1904
  msgid "Once you filled all the required fields, click \"Save\"."
1905
  msgstr ""
1906
  "Una vez que hayas completado todos los campos requeridos, haz clic en "
1907
  "\"Guardar\"."
1908
 
1909
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
1910
  #, php-format
1911
  msgid ""
1912
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
@@ -1914,18 +2456,19 @@ msgstr ""
1914
  "Llena \"Allowed Origins\" con la url de tu página principal, probablemente: "
1915
  "<b>%s</b>"
1916
 
1917
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
 
1918
  msgid "When all fields are filled, click \"Save\"."
1919
  msgstr ""
1920
  "Una vez que hayas completado todos los campos, haz clic en \"Guardar\"."
1921
 
1922
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
1923
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
1924
  msgstr ""
1925
  "Escoge la pestaña \"General\" que está al lado de la pestaña \"Web Settings"
1926
  "\"."
1927
 
1928
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
1929
  msgid ""
1930
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
1931
  "page."
@@ -1943,6 +2486,10 @@ msgstr "Enlazar cuenta con <b>Amazon</b>"
1943
  msgid "Unlink account from <b>Amazon</b>"
1944
  msgstr "Desenlazar cuenta de <b>Amazon</b>"
1945
 
 
 
 
 
1946
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
1947
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
1948
  #, php-format
@@ -1988,18 +2535,106 @@ msgstr ""
1988
  "A lo mejor quieres habilitar el \"r_emailaddress\" abajo de los Default "
1989
  "Application Permissions"
1990
 
1991
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
1992
  msgid "Continue with <b>LinkedIn</b>"
1993
  msgstr "Sigue con <b>LinkedIn</b>"
1994
 
1995
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
1996
  msgid "Link account with <b>LinkedIn</b>"
1997
  msgstr "Enlazar cuenta con <b>LinkedIn</b>"
1998
 
1999
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
2000
  msgid "Unlink account from <b>LinkedIn</b>"
2001
  msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
2002
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2003
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
2004
  msgid "Click on the Manage button at the App"
2005
  msgstr "Haz clic en el botón Manage en la App"
@@ -2098,21 +2733,158 @@ msgstr "Enlazar cuenta con <b>VK</b>"
2098
  msgid "Unlink account from <b>VK</b>"
2099
  msgstr "Desenlazar cuenta de <b>VK</b>"
2100
 
2101
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:8
2102
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:8
2103
- #: nextend-social-login-pro/template-parts/login/above-separator.php:10
2104
- #: nextend-social-login-pro/template-parts/login/below-separator.php:14
2105
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:8
2106
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:8
2107
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:8
2108
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:8
2109
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:8
2110
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:8
 
 
 
 
 
 
 
 
 
 
 
 
2111
  msgid "OR"
2112
  msgstr "O"
2113
 
2114
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
 
2115
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2116
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2117
  msgid "Social accounts"
2118
  msgstr "Cuentas sociales"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2018-09-04 15:27+0200\n"
5
+ "PO-Revision-Date: 2018-09-04 15:27+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.1.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\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:32
25
+ msgid "What personal data we collect and why we collect it"
26
+ msgstr ""
27
+
28
+ #: nextend-facebook-connect/NSL/GDPR.php:33
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
+
38
+ #: nextend-facebook-connect/NSL/GDPR.php:35
39
+ msgid "Who we share your data with"
40
+ msgstr ""
41
+
42
+ #: nextend-facebook-connect/NSL/GDPR.php:36
43
+ #, php-format
44
+ msgid ""
45
+ "%1$s stores the personal data on your site and does not share it with anyone "
46
+ "except the access token which used for the authenticated communication with "
47
+ "the social providers."
48
+ msgstr ""
49
+
50
+ #: nextend-facebook-connect/NSL/GDPR.php:38
51
+ msgid "Does the plugin share personal data with third parties"
52
+ msgstr ""
53
+
54
+ #: nextend-facebook-connect/NSL/GDPR.php:39
55
+ #, php-format
56
+ msgid ""
57
+ "%1$s use the access token what the social provider gave to communicate with "
58
+ "the providers to verify account and securely access personal data."
59
+ msgstr ""
60
+
61
+ #: nextend-facebook-connect/NSL/GDPR.php:41
62
+ msgid "How long we retain your data"
63
+ msgstr ""
64
+
65
+ #: nextend-facebook-connect/NSL/GDPR.php:42
66
+ #, php-format
67
+ msgid ""
68
+ "%1$s removes the collected personal data when the user deleted from "
69
+ "WordPress."
70
+ msgstr ""
71
+
72
+ #: nextend-facebook-connect/NSL/GDPR.php:44
73
+ msgid "Does the plugin use personal data collected by others?"
74
+ msgstr ""
75
+
76
+ #: nextend-facebook-connect/NSL/GDPR.php:45
77
+ #, php-format
78
+ msgid ""
79
+ "%1$s use the personal data collected by the social providers to create "
80
+ "account on your site when the visitor authorize it."
81
+ msgstr ""
82
+
83
+ #: nextend-facebook-connect/NSL/GDPR.php:47
84
+ msgid "Does the plugin store things in the browser?"
85
+ msgstr ""
86
+
87
+ #: nextend-facebook-connect/NSL/GDPR.php:48
88
+ #, php-format
89
+ msgid ""
90
+ "Yes, %1$s must create a cookie for visitors who use the social login "
91
+ "authorization flow. This cookie required for every provider to secure the "
92
+ "communication and to redirect the user back to the last location."
93
+ msgstr ""
94
+
95
+ #: nextend-facebook-connect/NSL/GDPR.php:50
96
+ msgid "Does the plugin collect telemetry data, directly or indirectly?"
97
+ msgstr ""
98
+
99
+ #: nextend-facebook-connect/NSL/GDPR.php:51
100
+ #: nextend-facebook-connect/NSL/GDPR.php:54
101
+ msgid "No"
102
+ msgstr ""
103
+
104
+ #: nextend-facebook-connect/NSL/GDPR.php:53
105
+ msgid ""
106
+ "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
107
+ "third party?"
108
+ msgstr ""
109
+
110
+ #: nextend-facebook-connect/NSL/GDPR.php:97
111
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:65
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:277
128
  msgid "Settings saved."
129
  msgstr "Ajustes guardados."
130
 
131
+ #: nextend-facebook-connect/admin/admin.php:244
132
  msgid "The authorization was successful"
133
  msgstr "La autorización fue exitosa"
134
 
135
+ #: nextend-facebook-connect/admin/admin.php:255
136
  msgid "Deauthorize completed."
137
  msgstr "Desautorizar completado."
138
 
139
+ #: nextend-facebook-connect/admin/admin.php:429
140
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
141
  #: nextend-facebook-connect/admin/templates/providers.php:84
142
  #: nextend-facebook-connect/admin/templates/providers.php:96
143
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
144
  msgid "Settings"
145
  msgstr "Ajustes"
146
 
147
+ #: nextend-facebook-connect/admin/admin.php:503
148
+ #: nextend-facebook-connect/includes/oauth2.php:139
149
+ #: nextend-facebook-connect/includes/oauth2.php:284
150
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
151
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:163
152
  #, php-format
153
  msgid "Unexpected response: %s"
154
  msgstr "Respuesta inesperada: %s"
155
 
156
+ #: nextend-facebook-connect/admin/admin.php:561
157
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
163
  "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI "
164
  "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas."
165
 
166
+ #: nextend-facebook-connect/admin/admin.php:562
167
  msgid "Fix Error"
168
  msgstr "Arreglar Error"
169
 
170
+ #: nextend-facebook-connect/admin/admin.php:562
171
  msgid "Oauth Redirect URI"
172
  msgstr "URI de redireccionamiento de Oauth"
173
 
174
+ #: nextend-facebook-connect/admin/admin.php:572
175
  #, php-format
176
  msgid ""
177
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
180
  "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon "
181
  "para mostrar los botones de Social Login en el formulario de acceso de %2$s!"
182
 
183
+ #: nextend-facebook-connect/admin/admin.php:573
184
  msgid "Dismiss and check Pro Addon"
185
  msgstr "Descartar y verificar Pro Addon"
186
 
187
+ #: nextend-facebook-connect/admin/admin.php:573
188
  msgid "Dismiss"
189
  msgstr "Descartar"
190
 
191
+ #: nextend-facebook-connect/admin/admin.php:579
192
+ #, php-format
193
+ msgid ""
194
+ "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
195
+ "register flow</b>\" and \"<b>OAuth redirect uri proxy page</b>\" in %1$s to "
196
+ "work properly."
197
+ msgstr ""
198
+
199
+ #: nextend-facebook-connect/admin/admin.php:580
200
+ #, fuzzy
201
+ #| msgid "Fix Error"
202
+ msgid "Fix now"
203
+ msgstr "Arreglar Error"
204
+
205
+ #: nextend-facebook-connect/admin/admin.php:604
206
+ msgid "Authorize your Pro Addon"
207
+ msgstr "Autoriza tu Pro Addon"
208
+
209
+ #: nextend-facebook-connect/admin/admin.php:605
210
+ msgid ""
211
+ "To be able to use the Pro features, you need to authorize Nextend Social "
212
+ "Connect Pro Addon. You can do this by clicking on the Authorize button below "
213
+ "then select the related purchase."
214
+ msgstr ""
215
+ "Para poder usar las funciones Pro, debes autorizar Nextend Social Connect "
216
+ "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a "
217
+ "continuación y luego seleccionar la compra relacionada."
218
+
219
+ #: nextend-facebook-connect/admin/admin.php:610
220
+ msgid "Authorize"
221
+ msgstr "Autorizar"
222
+
223
+ #: nextend-facebook-connect/admin/admin.php:667
224
+ msgid "License key"
225
+ msgstr "Clave de licencia"
226
+
227
+ #: nextend-facebook-connect/admin/admin.php:682
228
+ msgid "OAuth proxy page"
229
+ msgstr ""
230
+
231
+ #: nextend-facebook-connect/admin/admin.php:685
232
+ #, fuzzy
233
+ #| msgid "Register layout"
234
+ msgid "Register flow page"
235
+ msgstr "Diseño de Registro"
236
+
237
+ #: nextend-facebook-connect/admin/interim.php:12
238
+ #: nextend-facebook-connect/admin/interim.php:23
239
+ msgid "You have logged in successfully."
240
+ msgstr "Has ingresado exitosamente."
241
+
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:81
243
  msgid "Login label"
244
  msgstr "Etiqueta de acceso"
245
 
246
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
247
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:97
248
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
249
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
250
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
251
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
252
  msgid "Reset to default"
253
  msgstr "Restablecer los valores predeterminados"
254
 
255
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
256
  msgid "Link label"
257
  msgstr "Etiqueta de enlace"
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:103
260
  msgid "Unlink label"
261
  msgstr "Etiqueta de desenlazar"
262
 
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
264
  msgid "Default button"
265
  msgstr "Botón predeterminado"
266
 
267
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
269
  msgid "Use custom button"
270
  msgstr "Usa botón personalizado"
271
 
272
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
273
  #, php-format
274
  msgid "Use the %s in your custom button's code to make the label show up."
275
  msgstr ""
276
  "Use el %s en el código de tu botón personalizado para que aparezca la "
277
  "etiqueta."
278
 
279
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:145
280
  msgid "Icon button"
281
  msgstr "Botón de icono"
282
 
283
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:176
284
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
285
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:93
286
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
287
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:54
288
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
289
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:79
290
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
291
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
292
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:153
293
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:108
294
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:168
295
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
296
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:232
297
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
298
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
299
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
300
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
301
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
302
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
303
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
304
  msgid "Save Changes"
305
  msgstr "Guardar Cambios"
306
 
307
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
308
  #: nextend-facebook-connect/admin/templates/providers.php:64
309
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:15
310
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
311
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
312
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
313
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
314
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
315
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
316
  msgid "Getting Started"
317
  msgstr "Empezando"
341
  msgstr "Prefijo del usuario de reservo cuando se registra"
342
 
343
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
344
+ #, fuzzy
345
+ #| msgid "Used when username is invalid"
346
+ msgid "Used when username is invalid or not stored"
347
  msgstr "Usado cuando el nombre del usuario no es válido"
348
 
349
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:29
350
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
351
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
352
+ msgid "Terms and conditions"
353
+ msgstr ""
354
+
355
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
356
+ #, php-format
357
+ msgid "Override global \"%1$s\""
358
+ msgstr ""
359
+
360
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
361
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
362
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:10
407
 
408
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
409
  #: nextend-facebook-connect/admin/templates/providers.php:39
410
+ #: nextend-facebook-connect/admin/templates/settings/general.php:53
411
+ #: nextend-facebook-connect/admin/templates/settings/general.php:189
412
+ #: nextend-facebook-connect/includes/provider-admin.php:215
413
  msgid "Disabled"
414
  msgstr "Desactivado"
415
 
428
 
429
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
430
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
431
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:38
432
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
433
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
434
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
435
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
436
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
437
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
438
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
439
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
440
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
441
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
442
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
443
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
444
  #: nextend-facebook-connect/widget.php:40
445
  msgid "Default"
446
  msgstr "Predeterminado"
447
 
448
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
449
+ #: nextend-facebook-connect/includes/userData.php:172
450
  msgid "Register"
451
  msgstr "Registrarse"
452
 
462
  msgid "Store in meta key"
463
  msgstr "Guardar en clave meta"
464
 
 
 
 
 
 
465
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
466
  msgid "Shortcode"
467
  msgstr "Código corto"
482
  msgid "Image url"
483
  msgstr "URL de imagen"
484
 
485
+ #: nextend-facebook-connect/admin/templates/debug.php:7
486
+ #: nextend-facebook-connect/admin/templates/header.php:20
487
+ #, fuzzy
488
+ #| msgid "Debug mode"
489
+ msgid "Debug"
490
+ msgstr "Modo de depuración"
491
+
492
+ #: nextend-facebook-connect/admin/templates/debug.php:40
493
+ msgid "Test network connection with providers"
494
+ msgstr ""
495
+
496
+ #: nextend-facebook-connect/admin/templates/debug.php:47
497
+ msgid "You don't have cURL support, please enable it in php.ini!"
498
+ msgstr ""
499
+
500
+ #: nextend-facebook-connect/admin/templates/debug.php:57
501
+ #, php-format
502
+ msgid "Test %1$s connection"
503
+ msgstr ""
504
+
505
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:7
506
+ msgid "Pro Addon - Authorized domain has been changed"
507
+ msgstr ""
508
+
509
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:15
510
+ msgid ""
511
+ "<b>You must authorize your new domain</b> to receive <b>updates and support</"
512
+ "b> in the future."
513
+ msgstr ""
514
+
515
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:21
516
+ msgid "You can authorize your new domain by completing the following steps:"
517
+ msgstr ""
518
+
519
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:25
520
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
521
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
522
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
523
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
524
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
525
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
526
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
527
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
528
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
529
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
530
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
531
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
532
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
533
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
534
+ #, php-format
535
+ msgid "Navigate to %s"
536
+ msgstr "Navegar a %s"
537
+
538
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:26
539
+ #, fuzzy
540
+ #| msgid "Log in with your %s credentials if you are not logged in"
541
+ msgid "Log in with your credentials if you are not logged in"
542
+ msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
543
+
544
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:27
545
+ #, php-format
546
+ msgid "Find your old domain name: <b>%s</b>"
547
+ msgstr ""
548
+
549
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:28
550
+ #, php-format
551
+ msgid "Click on the %1$s next to your domain name."
552
+ msgstr ""
553
+
554
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:29
555
+ #, php-format
556
+ msgid "Authorize your %1$s by clicking on the following button."
557
+ msgstr ""
558
+
559
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:34
560
+ msgid "The authorized domain name of your site is fine!"
561
+ msgstr ""
562
+
563
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
564
  msgid "Fix Oauth Redirect URIs"
565
  msgstr "Arregla los URI de redireccionamiento de Oauth"
572
  msgid "Got it"
573
  msgstr "Entiendo"
574
 
575
+ #: nextend-facebook-connect/admin/templates/global-settings.php:28
576
  #: nextend-facebook-connect/admin/templates/menu.php:8
577
  msgid "Global Settings"
578
  msgstr "Ajustes Globales"
579
 
580
+ #: nextend-facebook-connect/admin/templates/global-settings.php:31
581
  msgid "General"
582
  msgstr "General"
583
 
584
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
585
+ msgid "Privacy"
586
+ msgstr ""
587
+
588
+ #: nextend-facebook-connect/admin/templates/global-settings.php:35
589
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
590
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
591
  msgid "Login Form"
592
  msgstr "Formulario de Acceso"
593
 
594
+ #: nextend-facebook-connect/admin/templates/global-settings.php:39
595
  msgid "Comment"
596
  msgstr "Comentario"
597
 
603
  msgid "Support"
604
  msgstr "Apoyo"
605
 
606
+ #: nextend-facebook-connect/admin/templates/header.php:23
607
  #: nextend-facebook-connect/admin/templates/menu.php:12
608
  msgid "Pro Addon"
609
  msgstr "Pro Addon"
639
  "Pro, debes activarlo."
640
 
641
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
642
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
643
  msgid "Deauthorize Pro Addon"
644
  msgstr "Desautorizar Pro Addon"
645
 
668
  msgid "Activating..."
669
  msgstr "Activando..."
670
 
671
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
  msgid "Pro Addon is installed and activated"
673
  msgstr "Pro Addon está instalado y activado"
674
 
675
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:120
676
  msgid ""
677
  "You installed and activated the Pro Addon. If you don’t want to use it "
678
  "anymore, you can deauthorize using the button below."
735
  msgstr "No Verificado"
736
 
737
  #: nextend-facebook-connect/admin/templates/providers.php:42
738
+ #: nextend-facebook-connect/admin/templates/settings/general.php:56
739
+ #: nextend-facebook-connect/admin/templates/settings/general.php:192
740
+ #: nextend-facebook-connect/includes/provider-admin.php:218
741
  msgid "Enabled"
742
  msgstr "Habilitado"
743
 
750
  msgstr "Actualizar Ahora"
751
 
752
  #: nextend-facebook-connect/admin/templates/providers.php:72
753
+ #: nextend-facebook-connect/includes/provider-admin.php:202
754
  msgid "Verify Settings"
755
  msgstr "Verificar Configuración"
756
 
757
  #: nextend-facebook-connect/admin/templates/providers.php:80
758
+ #: nextend-facebook-connect/includes/provider-admin.php:247
759
  msgid "Enable"
760
  msgstr "Habilitar"
761
 
762
  #: nextend-facebook-connect/admin/templates/providers.php:92
763
+ #: nextend-facebook-connect/includes/provider-admin.php:255
764
  msgid "Disable"
765
  msgstr "Inhabilitar"
766
 
768
  msgid "Import"
769
  msgstr "Importar"
770
 
771
+ #: nextend-facebook-connect/admin/templates/providers.php:124
772
+ msgid "Stay Updated"
773
+ msgstr ""
774
+
775
+ #: nextend-facebook-connect/admin/templates/providers.php:125
776
+ msgid ""
777
+ "Receive info on the latest plugin updates and social provider related "
778
+ "changes."
779
+ msgstr ""
780
+
781
+ #: nextend-facebook-connect/admin/templates/providers.php:126
782
+ #, fuzzy
783
+ #| msgid "Please enter an email address."
784
+ msgid "Enter your email address"
785
+ msgstr "Por favor introduce un email."
786
+
787
+ #: nextend-facebook-connect/admin/templates/providers.php:130
788
+ msgid "Subscribe"
789
+ msgstr ""
790
+
791
+ #: nextend-facebook-connect/admin/templates/providers.php:146
792
  msgid "Saving..."
793
  msgstr "Guardando..."
794
 
795
+ #: nextend-facebook-connect/admin/templates/providers.php:147
796
  msgid "Saving failed"
797
  msgstr "No se pudo guardar"
798
 
799
+ #: nextend-facebook-connect/admin/templates/providers.php:148
800
  msgid "Order Saved"
801
  msgstr "Orden Guardado"
802
 
803
+ #: nextend-facebook-connect/admin/templates/providers.php:217
804
+ msgid "Successfully subscribed!"
805
+ msgstr ""
806
+
807
+ #: nextend-facebook-connect/admin/templates/providers.php:217
808
+ msgid ""
809
+ "We'll be bringing you all the latest news and updates about Social Login - "
810
+ "right to your inbox."
811
+ msgstr ""
812
+
813
+ #: nextend-facebook-connect/admin/templates/providers.php:224
814
+ #, fuzzy
815
+ #| msgid "Please enter an email address."
816
+ msgid "The entered email address is invalid!"
817
+ msgstr "Por favor introduce un email."
818
+
819
  #: nextend-facebook-connect/admin/templates/review.php:14
820
  msgid "Rate your experience!"
821
  msgstr "¡Califica tu experiencia!"
857
  msgstr "Ok, lo mereces"
858
 
859
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
860
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84
861
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96
862
+ #, fuzzy
863
+ #| msgid "Register Form"
864
+ msgid "Register form"
865
+ msgstr "Formulario de Registro"
866
 
867
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
868
  msgid "No Connect button"
875
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
876
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
877
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
878
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78
879
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144
880
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
881
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93
882
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159
883
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
884
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
885
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
886
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
887
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163
888
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
889
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:218
890
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
891
  msgid "Action:"
892
  msgstr "Acción:"
893
 
900
  msgstr "Conectar botón después de registrarse"
901
 
902
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
903
+ #, fuzzy
904
+ #| msgid "Register form button style"
905
+ msgid "Register button style"
906
+ msgstr "Estilo de botón de formulario de Registro integrado"
907
 
908
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
909
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:44
910
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
911
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
912
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
913
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96
914
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
915
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
916
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
917
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
918
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
919
  #: nextend-facebook-connect/widget.php:45
920
  msgid "Icon"
921
  msgstr "Icono"
922
 
923
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
924
+ #, fuzzy
925
+ #| msgid "Icon button"
926
+ msgid "Login button"
927
+ msgstr "Botón de icono"
928
 
929
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:23
930
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
931
  msgid "Show"
932
  msgstr "Mostrar"
933
 
934
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:26
935
  msgid "Hide"
936
  msgstr "Esconder"
937
 
938
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
939
  #, php-format
940
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
941
  msgstr "Necesitas activar el ' %1$s > %2$s > %3$s ' para que funcione"
942
 
943
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
944
  msgid "Discussion"
945
  msgstr "Discusión"
946
 
947
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
948
  msgid "Users must be registered and logged in to comment"
949
  msgstr "Los usuarios deben estar registrados e iniciar sesión para comentar"
950
 
951
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:32
952
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
953
+ #, fuzzy
954
+ #| msgid "Button style:"
955
+ msgid "Button style"
956
+ msgstr "Estilo de Botón:"
957
 
958
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
959
  msgid "Target window"
980
  msgstr "Permitir registro con Social login"
981
 
982
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
 
983
  msgid "Registration notification sent to"
984
  msgstr "Notificación de registro enviado a"
985
 
986
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:59
987
  msgid "WordPress default"
988
  msgstr "Configuración predeterminada de Wordpress"
989
 
990
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:62
991
  msgid "Nobody"
992
  msgstr "Nadie"
993
 
994
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:68
 
 
 
 
995
  msgid "Admin"
996
  msgstr "Administrador"
997
 
998
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:71
999
  msgid "User and Admin"
1000
  msgstr "Usuario y Administrador"
1001
 
1002
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
 
1003
  msgid "Debug mode"
1004
  msgstr "Modo de depuración"
1005
 
1006
+ #: nextend-facebook-connect/admin/templates/settings/general.php:61
1007
+ #, fuzzy
1008
+ #| msgid "for Register"
1009
+ msgid "Page for register flow"
1010
+ msgstr "para Registrarse"
1011
+
1012
+ #: nextend-facebook-connect/admin/templates/settings/general.php:65
1013
+ #: nextend-facebook-connect/admin/templates/settings/general.php:76
1014
+ msgid "None"
1015
+ msgstr ""
1016
+
1017
+ #: nextend-facebook-connect/admin/templates/settings/general.php:68
1018
+ #, php-format
1019
+ msgid ""
1020
+ "First create a new page for register flow and insert the following "
1021
+ "shortcode: %1$s then select this page above"
1022
+ msgstr ""
1023
+
1024
+ #: nextend-facebook-connect/admin/templates/settings/general.php:72
1025
+ msgid "OAuth redirect uri proxy page"
1026
+ msgstr ""
1027
 
1028
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
1029
+ msgid ""
1030
+ "If your wp-login.php is not available to handle the OAuth flow create a new "
1031
+ "page and select it here. Otherwise don't select any page."
1032
+ msgstr ""
1033
+
1034
+ #: nextend-facebook-connect/admin/templates/settings/general.php:85
1035
+ msgid "Prevent external redirect overrides"
1036
+ msgstr ""
1037
+
1038
+ #: nextend-facebook-connect/admin/templates/settings/general.php:91
1039
+ msgid "Disable external redirects"
1040
+ msgstr ""
1041
+
1042
+ #: nextend-facebook-connect/admin/templates/settings/general.php:98
1043
  msgid "Default redirect url"
1044
  msgstr "URL de redirección predeterminada"
1045
 
1046
+ #: nextend-facebook-connect/admin/templates/settings/general.php:111
1047
+ #: nextend-facebook-connect/admin/templates/settings/general.php:149
1048
  msgid "for Login"
1049
  msgstr "para Iniciar Sesión"
1050
 
1051
+ #: nextend-facebook-connect/admin/templates/settings/general.php:126
1052
+ #: nextend-facebook-connect/admin/templates/settings/general.php:164
1053
  msgid "for Register"
1054
  msgstr "para Registrarse"
1055
 
1056
+ #: nextend-facebook-connect/admin/templates/settings/general.php:136
1057
  msgid "Fixed redirect url"
1058
  msgstr "URL de redirección fija"
1059
 
1060
+ #: nextend-facebook-connect/admin/templates/settings/general.php:173
1061
+ #, fuzzy
1062
+ #| msgid "Fixed redirect url"
1063
+ msgid "Blacklisted redirects"
1064
+ msgstr "URL de redirección fija"
1065
+
1066
+ #: nextend-facebook-connect/admin/templates/settings/general.php:179
1067
+ msgid "If you want to blacklist redirect url params. One pattern per line."
1068
+ msgstr ""
1069
+
1070
+ #: nextend-facebook-connect/admin/templates/settings/general.php:184
1071
+ #, fuzzy
1072
+ #| msgid "Show login buttons"
1073
+ msgid "Support login restrictions"
1074
+ msgstr "Mostrar botones de iniciar sesión"
1075
+
1076
+ #: nextend-facebook-connect/admin/templates/settings/general.php:194
1077
+ #, php-format
1078
+ msgid "Please visit to our %1$s to check what plugins are supported!"
1079
+ msgstr ""
1080
+
1081
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
1082
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1083
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1084
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1085
  msgid "Login form button style"
1086
  msgstr "Estilo de botón para iniciar sesión"
1087
 
1088
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
1089
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
1090
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52
1091
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
1092
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
1093
  msgid "Login layout"
1094
  msgstr "Diseño de Inicio de Sesión"
1095
 
1096
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
1097
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
1098
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
1099
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109
1100
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1101
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124
1102
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1103
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
1104
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
1105
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
1106
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
1107
  msgid "Below"
1108
  msgstr "Abajo"
1109
 
1110
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
1111
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
1112
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
1113
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115
1114
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1115
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
1116
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1117
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
1118
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1119
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1120
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192
1121
  msgid "Below with separator"
1122
  msgstr "Abajo con separación"
1123
 
1128
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
1129
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
1130
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
1131
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121
1132
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1133
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1134
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1135
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1136
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1137
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1138
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198
1139
  msgid "Above"
1140
  msgstr "Encima"
1141
 
1142
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
1143
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
1144
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
1145
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127
1146
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1147
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1148
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1149
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1150
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1151
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1152
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204
1153
  msgid "Above with separator"
1154
  msgstr "Encima con separación"
1155
 
1179
  msgstr "Esconder botones de iniciar sesión"
1180
 
1181
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1182
+ #: nextend-facebook-connect/includes/userData.php:122
1183
  msgid "Registration Form"
1184
  msgstr "Formulario de Registro"
1185
 
1187
  msgid "Embedded login form"
1188
  msgstr "Formulario de Inicio de Sesión integrado"
1189
 
1190
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69
1191
+ msgid "Sign Up form"
1192
+ msgstr ""
1193
+
1194
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74
1195
+ #, fuzzy
1196
+ #| msgid "No Connect button in login form"
1197
+ msgid "No Connect button in Sign Up form"
1198
+ msgstr "Sin botón de conexión en el formulario de inicio de sesión"
1199
+
1200
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
1201
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1202
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92
1203
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46
1204
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51
1205
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104
1206
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
1207
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162
1208
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167
1209
+ #, fuzzy
1210
+ #| msgid "No Connect button"
1211
+ msgid "Connect button on"
1212
+ msgstr "Botón de No Conexión"
1213
+
1214
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84
1215
+ #, fuzzy
1216
+ #| msgid "Login form button style"
1217
+ msgid "Sign Up form button style"
1218
+ msgstr "Estilo de botón para iniciar sesión"
1219
+
1220
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103
1221
+ #, fuzzy
1222
+ #| msgid "Login layout"
1223
+ msgid "Sign Up layout"
1224
+ msgstr "Diseño de Inicio de Sesión"
1225
+
1226
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135
1227
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150
1228
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212
1229
+ #, fuzzy
1230
+ #| msgid "MemberPress account details"
1231
+ msgid "Account details"
1232
  msgstr "Detalles de cuenta MemberPress"
1233
 
1234
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140
1235
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155
1236
  msgid "No link buttons"
1237
  msgstr "Sin botones de enlace"
1238
 
1239
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143
1240
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158
1241
  msgid "Link buttons after account details"
1242
  msgstr "Enlazar botones de enlace después de los detalles de la cuenta"
1243
 
1244
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1245
+ #: nextend-facebook-connect/nextend-social-login.php:155
1246
+ msgid ""
1247
+ "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1248
+ "\"_blank\">Privacy Policy</a>"
1249
+ msgstr ""
1250
+
1251
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1252
+ msgid "Store"
1253
+ msgstr ""
1254
+
1255
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1256
+ msgid "First and last name"
1257
+ msgstr ""
1258
+
1259
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1260
+ msgid "When not enabled, username will be randomly generated."
1261
+ msgstr ""
1262
+
1263
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1264
+ #: nextend-social-login-pro/class-provider-extension.php:320
1265
+ msgid "Email"
1266
+ msgstr "Email"
1267
+
1268
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1269
+ msgid "When not enabled, email will be empty."
1270
+ msgstr ""
1271
+
1272
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1273
+ #: nextend-facebook-connect/includes/avatar.php:46
1274
+ msgid "Avatar"
1275
+ msgstr "Avatar"
1276
 
1277
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1278
+ #: nextend-facebook-connect/includes/provider.php:985
1279
+ msgid "Access token"
1280
+ msgstr ""
1281
+
1282
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1283
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38
1284
+ #, fuzzy
1285
+ #| msgid "Login Form"
1286
+ msgid "Login form"
1287
+ msgstr "Formulario de Acceso"
1288
+
1289
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1290
+ #, fuzzy
1291
+ #| msgid "No Connect button in login form"
1292
+ msgid "No Connect button in Login form"
1293
+ msgstr "Sin botón de conexión en el formulario de inicio de sesión"
1294
+
1295
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89
1296
+ #, fuzzy
1297
+ #| msgid "No Connect button in register form"
1298
+ msgid "No Connect button in Register form"
1299
+ msgstr "Sin botón de conexión en el formulario de registro"
1300
+
1301
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
1302
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
1303
  msgid "Register form button style"
1304
  msgstr "Estilo de botón de formulario de Registro integrado"
1305
 
1306
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118
1307
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
1308
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
1309
  msgid "Register layout"
1310
  msgstr "Diseño de Registro"
1311
 
1312
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1313
+ msgid "Register Form"
1314
+ msgstr "Formulario de Registro"
1315
 
1316
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43
1317
  msgid "No Connect button in login form"
1318
  msgstr "Sin botón de conexión en el formulario de inicio de sesión"
1319
 
1320
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
 
 
 
 
 
 
 
 
 
 
 
 
1321
  msgid "No Connect button in register form"
1322
  msgstr "Sin botón de conexión en el formulario de registro"
1323
 
1324
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154
1325
+ #, fuzzy
1326
+ #| msgid "WooCommerce billing form"
1327
+ msgid "Billing form"
 
 
 
 
 
 
 
1328
  msgstr "Formulario de facturación de WooCommerce"
1329
 
1330
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159
1331
  msgid "No Connect button in billing form"
1332
  msgstr "Sin botón de conexión en el formulario de facturación"
1333
 
1334
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
1335
+ #, fuzzy
1336
+ #| msgid "Login layout"
1337
+ msgid "Billing layout"
1338
+ msgstr "Diseño de Inicio de Sesión"
 
 
1339
 
1340
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1341
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:222
1342
+ #, fuzzy
1343
+ #| msgid "No link buttons"
1344
+ msgid "Link buttons on"
1345
+ msgstr "Sin botones de enlace"
1346
 
1347
+ #: nextend-facebook-connect/admin/templates/test-connection.php:41
1348
+ #, fuzzy, php-format
1349
+ #| msgid "Authentication successful"
1350
+ msgid "Network connection successful: %1$s"
1351
+ msgstr "Autenticación exitosa"
1352
 
1353
+ #: nextend-facebook-connect/admin/templates/test-connection.php:47
1354
+ #, php-format
1355
+ msgid "Network connection failed: %1$s"
1356
+ msgstr ""
1357
 
1358
+ #: nextend-facebook-connect/admin/templates/test-connection.php:50
1359
+ msgid ""
1360
+ "Please contact with your hosting provider to resolve the network issue "
1361
+ "between your server and the provider."
1362
+ msgstr ""
1363
 
1364
+ #: nextend-facebook-connect/includes/avatar.php:47
1365
  msgid "Manage Avatar"
1366
  msgstr "Administrar Avatar"
1367
 
1368
+ #: nextend-facebook-connect/includes/avatar.php:48
1369
  #, php-format
1370
  msgid "Avatar <span class=\"count\">(%s)</span>"
1371
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1372
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1373
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1374
 
1375
+ #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1376
+ #: nextend-facebook-connect/includes/compat-wp-login.php:42
1377
+ #, php-format
1378
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1379
+ msgstr ""
1380
+
1381
+ #: nextend-facebook-connect/includes/compat-wp-login.php:97
1382
+ msgid "https://wordpress.org/"
1383
+ msgstr ""
1384
+
1385
+ #: nextend-facebook-connect/includes/compat-wp-login.php:98
1386
+ msgid "Powered by WordPress"
1387
+ msgstr ""
1388
+
1389
+ #. translators: %s: site title
1390
+ #: nextend-facebook-connect/includes/compat-wp-login.php:234
1391
+ #, php-format
1392
+ msgctxt "site"
1393
+ msgid "&larr; Back to %s"
1394
+ msgstr ""
1395
+
1396
+ #: nextend-facebook-connect/includes/provider-admin.php:196
1397
  msgid "Your configuration needs to be verified"
1398
  msgstr "Tu configuración debe ser verificada"
1399
 
1400
+ #: nextend-facebook-connect/includes/provider-admin.php:197
1401
  msgid ""
1402
  "Before you can start letting your users register with your app it needs to "
1403
  "be tested. This test makes sure that no users will have troubles with the "
1411
  "mensaje de error en el menú emergente, verifica la ID copiada y el secreto o "
1412
  "la aplicación. De lo contrario, tu configuración está bien."
1413
 
1414
+ #: nextend-facebook-connect/includes/provider-admin.php:203
1415
  msgid "Please save your changes to verify settings."
1416
  msgstr "Guarda los cambios para verificar la configuración."
1417
 
1418
+ #: nextend-facebook-connect/includes/provider-admin.php:211
1419
  msgid "Works Fine"
1420
  msgstr "Funciona Bien"
1421
 
1422
+ #: nextend-facebook-connect/includes/provider-admin.php:225
1423
  #, php-format
1424
  msgid ""
1425
  "This provider is currently disabled, which means that users can’t register "
1428
  "Este proveedor está desactivado, así que los usuarios no pueden registrarse "
1429
  "ni iniciar sesión a través de su cuenta de %s."
1430
 
1431
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1432
  #, php-format
1433
  msgid ""
1434
  "This provider works fine, but you can test it again. If you don’t want to "
1438
  "permitir que los usuarios se registren o inicien sesión con %s, puedes "
1439
  "deshabilitarlo."
1440
 
1441
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1442
  #, php-format
1443
  msgid ""
1444
  "This provider is currently enabled, which means that users can register or "
1447
  "Este proveedor está habilitado, así que los usuarios pueden registrarse o "
1448
  "iniciar sesión a través de su cuenta %s."
1449
 
1450
+ #: nextend-facebook-connect/includes/provider-admin.php:239
1451
  msgid "Verify Settings Again"
1452
  msgstr "Verificar la configuración de nuevo"
1453
 
1454
+ #: nextend-facebook-connect/includes/provider-admin.php:240
1455
  msgid "Please save your changes before verifying settings."
1456
  msgstr "Guarda tus cambios antes de verificar la configuración, por favor."
1457
 
1458
+ #: nextend-facebook-connect/includes/provider.php:347
1459
+ #: nextend-facebook-connect/includes/provider.php:643
1460
+ #: nextend-facebook-connect/includes/provider.php:648
1461
  msgid "Authentication successful"
1462
  msgstr "Autenticación exitosa"
1463
 
1464
+ #: nextend-facebook-connect/includes/provider.php:587
1465
+ #: nextend-facebook-connect/includes/user.php:109
1466
  msgid "Authentication error"
1467
  msgstr "Error de autenticación"
1468
 
1469
+ #: nextend-facebook-connect/includes/provider.php:602
1470
  msgid "Unlink successful."
1471
  msgstr "Desenlace exitoso."
1472
 
1473
+ #: nextend-facebook-connect/includes/provider.php:799
1474
+ #: nextend-facebook-connect/includes/provider.php:806
1475
  msgid "The test was successful"
1476
  msgstr "La prueba fue exitosa"
1477
 
1478
+ #: nextend-facebook-connect/includes/provider.php:852
1479
  msgid "Authentication failed"
1480
  msgstr "Error de autenticación"
1481
 
1482
+ #: nextend-facebook-connect/includes/provider.php:977
1483
+ msgid "Identifier"
1484
+ msgstr ""
1485
+
1486
+ #: nextend-facebook-connect/includes/provider.php:993
1487
+ msgid "Profile picture"
1488
+ msgstr ""
1489
+
1490
+ #: nextend-facebook-connect/includes/user.php:69
1491
  #, php-format
1492
  msgid ""
1493
  "Your %1$s account is successfully linked with your account. Now you can sign "
1496
  "Tu cuenta %1$s está vinculada con éxito a tu cuenta. Ahora puedes iniciar "
1497
  "sesión con %2$s fácilmente."
1498
 
1499
+ #: nextend-facebook-connect/includes/user.php:72
1500
  #, php-format
1501
  msgid ""
1502
  "You have already linked a(n) %s account. Please unlink the current and then "
1505
  "Ya has vinculado una %s cuenta. Desvincula la cuenta actual y después "
1506
  "podrías vincular otra cuenta de %s."
1507
 
1508
+ #: nextend-facebook-connect/includes/user.php:77
1509
  #, php-format
1510
  msgid "This %s account is already linked to other user."
1511
  msgstr "Esta cuenta %s ya está vinculada a otro usuario."
1512
 
1513
+ #: nextend-facebook-connect/includes/userData.php:122
1514
+ msgid "Register For This Site!"
1515
+ msgstr "¡Registrarse Para Este Sitio!"
1516
+
1517
  #. translators: %2$s: PHP version
1518
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1519
  #, php-format
1530
  "%1$s requiere la versión de WordPress %2$s+. Desde estás utilizando una "
1531
  "versión anterior, el plugin NO ESTÁ ACTIVO."
1532
 
1533
+ #: nextend-facebook-connect/nextend-social-login.php:77
1534
+ #: nextend-facebook-connect/nextend-social-login.php:84
1535
  #, php-format
1536
  msgid "Please update %1$s to version %2$s or newer."
1537
  msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
1538
 
1539
+ #: nextend-facebook-connect/nextend-social-login.php:77
1540
+ #: nextend-facebook-connect/nextend-social-login.php:84
1541
  msgid "Update now!"
1542
  msgstr "¡Actualizar ahora!"
1543
 
1544
+ #: nextend-facebook-connect/nextend-social-login.php:91
1545
+ #, php-format
1546
+ msgid "Your domain name changed so you must authorize %1$s again."
1547
+ msgstr ""
1548
+
1549
+ #: nextend-facebook-connect/nextend-social-login.php:485
1550
  #, php-format
1551
  msgid ""
1552
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1555
  "%s ha reemplazado Nextend Google Connect. Puedes eliminar Nextend Google "
1556
  "Connect porque ya no es necesario."
1557
 
1558
+ #: nextend-facebook-connect/nextend-social-login.php:496
1559
  #, php-format
1560
  msgid ""
1561
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1564
  "%s ha reemplazado Nextend Twitter Connect. Puedes eliminar Nextend Twitter "
1565
  "Connect porque ya no es necesario."
1566
 
1567
+ #: nextend-facebook-connect/nextend-social-login.php:760
1568
+ #: nextend-facebook-connect/nextend-social-login.php:1106
 
 
 
 
1569
  msgid "Social Login"
1570
  msgstr "Social Login"
1571
 
1572
+ #: nextend-facebook-connect/nextend-social-login.php:1087
1573
  msgid "Social Accounts"
1574
  msgstr "Cuentas Sociales"
1575
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1576
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1577
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1578
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1579
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1580
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
 
1581
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1582
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1583
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1596
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
1597
 
1598
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1599
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1600
  #, php-format
1601
  msgid ""
1602
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1604
  "Agrega la siguiente URL al campo \"Valid OAuth redirect URIs\": <b>%s</b>"
1605
 
1606
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1607
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1608
  msgid "Click on \"Save Changes\""
1609
  msgstr "Haz clic en \"Guardar Cambios\""
1610
 
1625
  msgid "How to get SSL for my WordPress site?"
1626
  msgstr "¿Cómo puedo obtener SSL para mi sitio de WordPress?"
1627
 
1628
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
1629
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1630
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1631
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1644
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
1645
  "dados según tu aplicación %1$s."
1646
 
1647
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1648
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1649
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1650
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1651
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1652
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1653
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1654
  #, php-format
1655
  msgctxt "App creation"
1656
  msgid "Create %s"
1657
  msgstr "Crear %s"
1658
 
1659
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1660
  msgid "Click on the \"Add a New App\" button"
1661
  msgstr "Haz clic en el botón \"Add a New App\" por favor"
1662
 
1663
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1664
  msgid "Fill \"Display Name\" and \"Contact Email\""
1665
  msgstr "Llena \"Nombre para Mostrar\" y \"Email de Contacto\""
1666
 
1667
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1668
  msgid "Click on blue \"Create App ID\" button"
1669
  msgstr "Haz clic en el botón azul \"Create App ID\" por favor"
1670
 
1671
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1672
  msgid ""
1673
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1674
  "button"
1676
  "Mueve tu mouse sobre Facebook Login y haz clic en el botón \"Configurar\" "
1677
  "que aparece"
1678
 
1679
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1680
  msgid "Choose Web"
1681
  msgstr "Escoge Web"
1682
 
1683
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1684
  #, php-format
1685
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1686
  msgstr ""
1687
  "Llena \"Site URL\" con la URL de tu página principal, probablemente: <b>%s</"
1688
  "b>"
1689
 
1690
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1691
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
1692
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1693
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
1694
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
1695
  msgid "Click on \"Save\""
1696
  msgstr "Haz clic en \"Guardar Cambios\""
1697
 
1698
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1699
  msgid "In the left sidebar, click on \"Facebook Login\""
1700
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login\""
1701
 
1702
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1703
  msgid "In the top of the left sidebar, click on \"Settings\""
1704
  msgstr ""
1705
  "En la parte superior de la barra lateral izquierda, haz clic en \"Ajustes\""
1706
 
1707
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1708
  msgid ""
1709
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1710
  "click on the \"Show\" button. These will be needed in plugin's settings."
1713
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
1714
  "plugin."
1715
 
1716
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1717
  msgid "Enter your domain name to the App Domains"
1718
  msgstr "Ingresa tu nombre de dominio a los App Domains"
1719
 
1720
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1721
  msgid ""
1722
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1723
  "accessible privacy policy that explains what data you are collecting and how "
1727
  "accesible al público y de fácil acceso que explique cuales datos estás "
1728
  "recopilando y cómo utilizarás esos datos."
1729
 
1730
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1731
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1732
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1733
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1734
  msgid "Save your changes."
1735
  msgstr "Guarda tus cambios."
1736
 
1737
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1738
  msgid ""
1739
  "Your application is currently private, which means that only you can log in "
1740
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1743
  "En la barra lateral izquierda, elige \"App Review\" y haz que tu aplicación "
1744
  "sea pública"
1745
 
1746
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1747
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
1748
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1749
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1750
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1751
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1752
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1753
  #, php-format
1754
  msgid "I am done setting up my %s"
1901
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1902
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1903
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1904
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1905
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1906
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1907
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1908
  msgid "Required"
1913
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1914
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1915
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1916
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1917
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1918
  #, php-format
1919
  msgid ""
1939
  msgid "Unlink account from <b>Facebook</b>"
1940
  msgstr "Desenlazar cuenta de <b>Facebook</b>"
1941
 
1942
+ #: nextend-facebook-connect/providers/facebook/facebook.php:154
1943
+ #: nextend-facebook-connect/providers/google/google.php:144
1944
+ #: nextend-facebook-connect/providers/twitter/twitter.php:105
1945
+ #: nextend-social-login-pro/providers/amazon/amazon.php:63
1946
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1947
+ #: nextend-social-login-pro/providers/paypal/paypal.php:125
1948
+ #: nextend-social-login-pro/providers/vk/vk.php:60
1949
  #, php-format
1950
  msgid ""
1951
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1952
  msgstr ""
1953
  "El %1$s ingresado no parece ser válido. Por favor ingresa un %2$s válido."
1954
 
1955
+ #: nextend-facebook-connect/providers/facebook/facebook.php:333
1956
+ #: nextend-social-login-pro/providers/paypal/paypal.php:201
1957
+ #, php-format
1958
+ msgid "Required scope: %1$s"
1959
+ msgstr "Alcance requerido: %1$s"
1960
+
1961
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1962
+ #, fuzzy
1963
+ #| msgid "Buttons"
1964
+ msgid "Button skin"
1965
+ msgstr "Botones"
1966
+
1967
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1968
+ msgid "Uniform"
1969
+ msgstr ""
1970
+
1971
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1972
+ msgid "Light"
1973
+ msgstr ""
1974
+
1975
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:20
1976
+ msgid "Dark"
1977
+ msgstr ""
1978
+
1979
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1980
  msgid "Click on the \"Credentials\" in the left hand menu"
1981
  msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
1986
  msgstr "Haz clic en la ID del cliente de OAuth 2.0: %s"
1987
 
1988
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1989
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1990
  #, php-format
1991
  msgid ""
1992
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1994
  "Agrega la siguiente URL al campo \"Authorised redirect URIs\": <b>%s</b>"
1995
 
1996
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1997
+ #, fuzzy
1998
+ #| msgid ""
1999
+ #| "If you don't have a project yet, you'll need to create one. You can do "
2000
+ #| "this by clicking on the blue \"Create project\" button on the right side"
2001
  msgid ""
2002
  "If you don't have a project yet, you'll need to create one. You can do this "
2003
+ "by clicking on the blue \"Create project\" button on the right side! ( If "
2004
+ "you already have a project, click on the name of your project in the "
2005
+ "dashboard instead, which will bring up a modal and click New Project. )"
2006
  msgstr ""
2007
  "Si aún no tienes un proyecto, deberás crear uno. Puedes hacer esto haciendo "
2008
  "clic en el botón azul \"Create project\" en el lado derecho"
2009
 
2010
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2011
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2012
+ #, fuzzy
2013
+ #| msgid "Click on the Create button"
2014
+ msgid "Click the Create button."
2015
+ msgstr "Haz clic en el botón Create"
2016
 
2017
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2018
+ #, fuzzy
2019
+ #| msgid "Name your project and then click on the Create button"
2020
+ msgid "Name your project and then click on the Create button again"
2021
+ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2022
+
2023
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2024
  msgid "Once you have a project, you'll end up in the dashboard."
2025
  msgstr "Una vez que tengas un proyecto, llegarás al escritorio."
2026
 
2027
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2028
  msgid ""
2029
  "Click on the \"Credentials\" in the left hand menu to create new API "
2030
  "credentials"
2032
  "Haz clic en \"Credentials\" en el menú de la izquierda para crear nuevas "
2033
  "credenciales de API"
2034
 
2035
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2036
+ msgid "Select \"OAuth client ID\" from the dropdown."
2037
+ msgstr ""
2038
+
2039
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2040
+ #, fuzzy
2041
+ #| msgid ""
2042
+ #| "Go to the OAuth consent screen tab and enter a product name and provide "
2043
+ #| "the Privacy Policy URL, then click on the save button."
2044
  msgid ""
2045
+ "If you're prompted to set a product name, do so. Provide the Privacy Policy "
2046
+ "URL as well then click on the save button"
2047
  msgstr ""
2048
  "Ve a la pestaña de la pantalla de consentimiento de OAuth e ingresa el "
2049
  "nombre de un producto y proporciona la URL de la Privacy Policy, luego haz "
2050
  "clic en el botón guardar."
2051
 
2052
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
 
 
 
 
 
 
 
 
 
 
2053
  msgid "Your application type should be \"Web application\""
2054
  msgstr "Tu tipo de aplicación debe ser \"Web application\""
2055
 
2056
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2057
  msgid "Name your application"
2058
  msgstr "Nombra tu aplicación"
2059
 
2060
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2061
  msgid "Click on the Create button"
2062
  msgstr "Haz clic en el botón Create"
2063
 
2064
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2065
  msgid ""
2066
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2067
  "the Credentials in the left hand menu and select your app by clicking on its "
2090
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
2091
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2092
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2093
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2094
  msgid "Client ID"
2095
  msgstr "Client ID"
2096
 
2100
  msgid "Client Secret"
2101
  msgstr "Client Secret"
2102
 
2103
+ #: nextend-facebook-connect/providers/google/google.php:89
2104
  msgid "Continue with <b>Google</b>"
2105
  msgstr "Sigue con <b>Google</b>"
2106
 
2107
+ #: nextend-facebook-connect/providers/google/google.php:90
2108
  msgid "Link account with <b>Google</b>"
2109
  msgstr "Enlazar cuenta con <b>Google</b>"
2110
 
2111
+ #: nextend-facebook-connect/providers/google/google.php:91
2112
  msgid "Unlink account from <b>Google</b>"
2113
  msgstr "Desenlazar cuenta de <b>Google</b>"
2114
 
2115
+ #: nextend-facebook-connect/providers/google/google.php:329
2116
+ #, fuzzy, php-format
2117
+ #| msgid "Required scope: %1$s"
2118
+ msgid "Required API: %1$s"
2119
+ msgstr "Alcance requerido: %1$s"
2120
+
2121
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2122
+ #, fuzzy
2123
+ #| msgid "Name your project and then click on the Create button"
2124
+ msgid "Find your App and click on the Details button"
2125
+ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2126
 
2127
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2128
+ msgid ""
2129
+ "The Edit button can be found on the App details tab. Click on it and select "
2130
+ "Edit details"
2131
+ msgstr ""
2132
 
2133
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2134
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2135
+ #, fuzzy, php-format
2136
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2137
+ msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2138
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2139
 
2140
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2141
+ #, fuzzy, php-format
2142
+ #| msgid "Log in with your %s credentials if you are not logged in"
2143
+ msgid "Log in with your %s credentials if you are not logged in yet"
2144
+ msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
2145
 
2146
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2147
+ msgid ""
2148
+ "If you don't have a developer account yet, please apply one by filling all "
2149
+ "the required details! This is required for the next steps!"
2150
+ msgstr ""
2151
 
2152
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2153
  #, php-format
2154
  msgid ""
2155
+ "Once your developer account is complete, navigate back to %s if you aren't "
2156
+ "already there!"
2157
+ msgstr ""
2158
+
2159
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2160
+ #, fuzzy, php-format
2161
+ #| msgid ""
2162
+ #| "Fill the name and description fields. Then enter your site's URL to the "
2163
+ #| "Website field: <b>%s</b>"
2164
+ msgid ""
2165
+ "Fill the App name, Application description fields. Then enter your site's "
2166
+ "URL to the Website URL field: <b>%s</b>"
2167
  msgstr ""
2168
  "Llena los campos de nombre y descripción. Luego ingresa la URL de tu sitio "
2169
  "en el campo Website: <b>%s</b>"
2170
 
2171
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2172
+ msgid "Tick the checkbox next to Enable Sign in with Twitter!"
2173
+ msgstr ""
2174
 
2175
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2176
  msgid ""
2177
+ "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us how "
2178
+ "this app will be used” fields!"
2179
  msgstr ""
 
2180
 
2181
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2182
+ #, fuzzy
2183
+ #| msgid "Name your project and then click on the Create button"
2184
+ msgid "Read the Developer Terms and click the Create button again!"
2185
+ msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2186
+
2187
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2188
+ msgid "Select the Permissions tab and click Edit."
2189
+ msgstr ""
2190
+
2191
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2192
  msgid ""
2193
+ "Tick the Request email address from users under the Additional permissions "
2194
+ "section and click Save."
2195
+ msgstr ""
2196
+
2197
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2198
+ #, fuzzy
2199
+ #| msgid ""
2200
+ #| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
2201
+ msgid "Go to the Keys and tokens tab and find the API key and API secret key"
2202
  msgstr ""
2203
  "Ve a la pestaña Keys and Access Tokens y busca la Consumer Key y Secret"
2204
 
2211
  msgstr "Ve a la pestaña de Ajustes."
2212
 
2213
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2214
+ msgid "API Key"
2215
+ msgstr ""
2216
 
2217
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2218
+ #, fuzzy
2219
+ #| msgid "Secure key"
2220
+ msgid "API secret key"
2221
+ msgstr "Secure key"
2222
+
2223
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2224
+ msgid "Profile image size"
2225
+ msgstr ""
2226
+
2227
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2228
+ msgid "Original"
2229
+ msgstr ""
2230
 
2231
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2232
  msgid "Continue with <b>Twitter</b>"
2233
  msgstr "Sigue con <b>Twitter</b>"
2234
 
2235
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2236
  msgid "Link account with <b>Twitter</b>"
2237
  msgstr "Enlazar cuenta con <b>Twitter</b>"
2238
 
2239
+ #: nextend-facebook-connect/providers/twitter/twitter.php:74
2240
  msgid "Unlink account from <b>Twitter</b>"
2241
  msgstr "Desenlazar cuenta de <b>Twitter</b>"
2242
 
2261
  msgid "Show unlink buttons"
2262
  msgstr "Mostrar botones de desenlazar"
2263
 
2264
+ #: nextend-social-login-pro/class-provider-extension.php:115
2265
  msgid "Social login is not allowed with this role!"
2266
  msgstr "¡Social login no esta permitido con este rol!"
2267
 
 
2268
  #: nextend-social-login-pro/class-provider-extension.php:211
2269
+ #: nextend-social-login-pro/class-provider-extension.php:214
2270
+ #: nextend-social-login-pro/class-provider-extension.php:220
2271
+ #: nextend-social-login-pro/class-provider-extension.php:227
2272
+ #: nextend-social-login-pro/class-provider-extension.php:298
2273
+ #: nextend-social-login-pro/class-provider-extension.php:301
2274
+ #: nextend-social-login-pro/class-provider-extension.php:305
2275
  msgid "ERROR"
2276
  msgstr "ERROR"
2277
 
2278
+ #: nextend-social-login-pro/class-provider-extension.php:211
2279
  msgid "Please enter a username."
2280
  msgstr "Por favor introduce un usuario."
2281
 
2282
+ #: nextend-social-login-pro/class-provider-extension.php:214
2283
  msgid ""
2284
  "This username is invalid because it uses illegal characters. Please enter a "
2285
  "valid username."
2287
  "Este usuario no es válido porque usa caracteres ilegales. Por favor ingresa "
2288
  "un usuario válido."
2289
 
2290
+ #: nextend-social-login-pro/class-provider-extension.php:220
2291
  msgid "This username is already registered. Please choose another one."
2292
  msgstr "Este nombre de usuario ya está registrado. Por favor escoge otro."
2293
 
2294
+ #: nextend-social-login-pro/class-provider-extension.php:227
2295
  msgid "Sorry, that username is not allowed."
2296
  msgstr "Lo sentimos, ese usuario no está permitido."
2297
 
2298
+ #: nextend-social-login-pro/class-provider-extension.php:245
2299
+ msgid "Username"
2300
+ msgstr "Usuario"
2301
+
2302
+ #: nextend-social-login-pro/class-provider-extension.php:298
2303
  msgid "Please enter an email address."
2304
  msgstr "Por favor introduce un email."
2305
 
2306
+ #: nextend-social-login-pro/class-provider-extension.php:301
2307
  msgid "The email address isn&#8217;t correct."
2308
  msgstr "El email no es correcto."
2309
 
2310
+ #: nextend-social-login-pro/class-provider-extension.php:305
2311
  msgid "This email is already registered, please choose another one."
2312
  msgstr "Este email ya esta registrado, por favor escoge otro."
2313
 
2314
+ #: nextend-social-login-pro/class-provider-extension.php:325
2315
+ msgid "Registration confirmation will be emailed to you."
2316
+ msgstr "La confirmación de registro será enviada por email."
2317
+
2318
+ #: nextend-social-login-pro/class-provider-extension.php:376
2319
  msgid "<strong>ERROR</strong>: Please enter a password."
2320
  msgstr "<strong>ERROR</strong>: Por favor introduce una contraseña."
2321
 
2322
+ #: nextend-social-login-pro/class-provider-extension.php:382
2323
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
2324
  msgstr ""
2325
  "<strong>ERROR</strong>: Contraseñas no pueden contener el caracter \"\\\"."
2326
 
2327
+ #: nextend-social-login-pro/class-provider-extension.php:388
2328
  msgid ""
2329
  "<strong>ERROR</strong>: Please enter the same password in both password "
2330
  "fields."
2332
  "<strong>ERROR</strong>: Por favor introduce la misma contraseña en los dos "
2333
  "campos de contraseña."
2334
 
2335
+ #: nextend-social-login-pro/class-provider-extension.php:405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2336
  msgid "Password"
2337
  msgstr "Contraseña"
2338
 
2339
+ #: nextend-social-login-pro/class-provider-extension.php:415
2340
  msgid "Strength indicator"
2341
  msgstr "Indicador de dificultad"
2342
 
2343
+ #: nextend-social-login-pro/class-provider-extension.php:420
2344
  msgid "Confirm use of weak password"
2345
  msgstr "Confirmar el uso de contraseña débil"
2346
 
2347
+ #: nextend-social-login-pro/class-provider-extension.php:426
2348
  msgid "Confirm password"
2349
  msgstr "Confirmar contraseña"
2350
 
2351
+ #: nextend-social-login-pro/class-provider-extension.php:438
2352
  #, php-format
2353
  msgid ""
2354
  "This email is already registered, please login in to your account to link "
2375
  msgstr "¡Instalar ahora!"
2376
 
2377
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2378
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
2379
  #, php-format
2380
  msgid "Visit %s"
2381
  msgstr "Visita %s"
2382
 
2383
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2384
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2385
  msgid ""
2386
  "On the right side, under \"Manage\", hover over the gear icon and select "
2387
  "\"Web Settings\" option."
2390
  "ajustes y selecciona la opción \"Web Settings\"."
2391
 
2392
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2393
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2394
  msgid "Click \"Edit\"."
2395
  msgstr "Haz clic en \"Edit\"."
2396
 
2397
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
2398
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2399
  #, php-format
2400
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2401
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2402
 
2403
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2404
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2405
  #, php-format
2406
  msgid ""
2407
  "To allow your visitors to log in with their %1$s account, first you must "
2416
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
2417
  "dados según tu aplicación %1$s."
2418
 
2419
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2420
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2421
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2422
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2423
  #, php-format
2424
  msgid "Log in with your %s credentials if you are not logged in."
2425
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
2426
 
2427
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2428
  msgid ""
2429
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2430
  "do this by clicking on the orange \"Create a New Security Profile\" button "
2434
  "haciendo clic en el botón naranja \"Create a New Security Profile\" en el "
2435
  "lado izquierdo."
2436
 
2437
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2438
  msgid ""
2439
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
2440
  "\"Consent Privacy Notice URL\"."
2442
  "Llena \"Security Profile Name\", \"Security Profile Description\" y "
2443
  "\"Consent Privacy Notice URL\"."
2444
 
2445
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2446
  msgid "Once you filled all the required fields, click \"Save\"."
2447
  msgstr ""
2448
  "Una vez que hayas completado todos los campos requeridos, haz clic en "
2449
  "\"Guardar\"."
2450
 
2451
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2452
  #, php-format
2453
  msgid ""
2454
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
2456
  "Llena \"Allowed Origins\" con la url de tu página principal, probablemente: "
2457
  "<b>%s</b>"
2458
 
2459
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2460
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
2461
  msgid "When all fields are filled, click \"Save\"."
2462
  msgstr ""
2463
  "Una vez que hayas completado todos los campos, haz clic en \"Guardar\"."
2464
 
2465
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2466
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
2467
  msgstr ""
2468
  "Escoge la pestaña \"General\" que está al lado de la pestaña \"Web Settings"
2469
  "\"."
2470
 
2471
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2472
  msgid ""
2473
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
2474
  "page."
2486
  msgid "Unlink account from <b>Amazon</b>"
2487
  msgstr "Desenlazar cuenta de <b>Amazon</b>"
2488
 
2489
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2490
+ msgid "Click on the App"
2491
+ msgstr "Haz clic en la App"
2492
+
2493
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
2494
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
2495
  #, php-format
2535
  "A lo mejor quieres habilitar el \"r_emailaddress\" abajo de los Default "
2536
  "Application Permissions"
2537
 
2538
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:62
2539
  msgid "Continue with <b>LinkedIn</b>"
2540
  msgstr "Sigue con <b>LinkedIn</b>"
2541
 
2542
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2543
  msgid "Link account with <b>LinkedIn</b>"
2544
  msgstr "Enlazar cuenta con <b>LinkedIn</b>"
2545
 
2546
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:64
2547
  msgid "Unlink account from <b>LinkedIn</b>"
2548
  msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
2549
 
2550
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
2551
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2552
+ msgid "Scroll down to \"REST API apps\"."
2553
+ msgstr ""
2554
+
2555
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2556
+ #, fuzzy, php-format
2557
+ #| msgid "Click on the Manage button at the App"
2558
+ msgid "Click on the name of your %s App."
2559
+ msgstr "Haz clic en el botón Manage en la App"
2560
+
2561
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2562
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2563
+ msgid "Select the \"Live\" option on the top-right side. "
2564
+ msgstr ""
2565
+
2566
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13
2567
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2568
+ msgid ""
2569
+ "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" heading "
2570
+ "and click \"Show\"."
2571
+ msgstr ""
2572
+
2573
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14
2574
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
2575
+ #, fuzzy, php-format
2576
+ #| msgid ""
2577
+ #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2578
+ msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2579
+ msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2580
+
2581
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
2582
+ #, fuzzy
2583
+ #| msgid "Click on the \"Create New App\" button"
2584
+ msgid "Click the \"Create App\" button."
2585
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2586
+
2587
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
2588
+ msgid "Fill the \"App Name\" field and click \"Create App\" button."
2589
+ msgstr ""
2590
+
2591
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
2592
+ msgid ""
2593
+ "Scroll down to \"App feature options\" section and tick \"Log In with PayPal"
2594
+ "\"."
2595
+ msgstr ""
2596
+
2597
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
2598
+ msgid ""
2599
+ "Click \"Advanced Options\" which can be found at the end of text \"Log In "
2600
+ "with PayPal\"."
2601
+ msgstr ""
2602
+
2603
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
2604
+ #, fuzzy
2605
+ #| msgid "Please enter an email address."
2606
+ msgid "Tick \"Full name\" and \"Email address\"."
2607
+ msgstr "Por favor introduce un email."
2608
+
2609
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27
2610
+ msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
2611
+ msgstr ""
2612
+
2613
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29
2614
+ msgid ""
2615
+ "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary "
2616
+ "\"Client ID\" and \"Secret\"! ( Make sure you are in \"Live\" mode and not "
2617
+ "\"Sandbox\" )."
2618
+ msgstr ""
2619
+
2620
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
2621
+ #, fuzzy
2622
+ #| msgid "App Secret"
2623
+ msgid "Secret"
2624
+ msgstr "App Secret"
2625
+
2626
+ #: nextend-social-login-pro/providers/paypal/paypal.php:99
2627
+ msgid "Continue with <b>PayPal</b>"
2628
+ msgstr "Sigue con <b>PayPal</b>"
2629
+
2630
+ #: nextend-social-login-pro/providers/paypal/paypal.php:100
2631
+ msgid "Link account with <b>PayPal</b>"
2632
+ msgstr "Enlazar cuenta con <b>PayPal</b>"
2633
+
2634
+ #: nextend-social-login-pro/providers/paypal/paypal.php:101
2635
+ msgid "Unlink account from <b>PayPal</b>"
2636
+ msgstr "Desenlazar cuenta de <b>PayPal</b>"
2637
+
2638
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
2639
  msgid "Click on the Manage button at the App"
2640
  msgstr "Haz clic en el botón Manage en la App"
2733
  msgid "Unlink account from <b>VK</b>"
2734
  msgstr "Desenlazar cuenta de <b>VK</b>"
2735
 
2736
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2737
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2738
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:11
2739
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:8
2740
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
2741
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
2742
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
2743
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
2744
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
2745
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
2746
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
2747
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
2748
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
2749
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
2750
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
2751
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
2752
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
2753
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
2754
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
2755
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
2756
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
2757
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
2758
  msgid "OR"
2759
  msgstr "O"
2760
 
2761
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
2762
+ #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:1
2763
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2764
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2765
  msgid "Social accounts"
2766
  msgstr "Cuentas sociales"
2767
+
2768
+ #~ msgid "Click on the \"Settings\" tab"
2769
+ #~ msgstr "Haz clic en la pestaña de Ajustes"
2770
+
2771
+ #~ msgid "Click on \"Update Settings\""
2772
+ #~ msgstr "Haz clic en \"Actualizar Ajustes\""
2773
+
2774
+ #, fuzzy
2775
+ #~| msgid ""
2776
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2777
+ #~| "b>"
2778
+ #~ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2779
+ #~ msgstr ""
2780
+ #~ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2781
+
2782
+ #, fuzzy
2783
+ #~| msgid "Click on \"Save\""
2784
+ #~ msgid "Click on \"Update\""
2785
+ #~ msgstr "Haz clic en \"Guardar Cambios\""
2786
+
2787
+ #, fuzzy
2788
+ #~| msgid "Click on the \"Create New App\" button"
2789
+ #~ msgid "Click on the \"Create New Application\" button."
2790
+ #~ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2791
+
2792
+ #, fuzzy
2793
+ #~| msgid "Click on the \"Create New App\" button"
2794
+ #~ msgid "Click the \"Create\" button!"
2795
+ #~ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2796
+
2797
+ #, fuzzy
2798
+ #~| msgid ""
2799
+ #~| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2800
+ #~| "you click on the \"Show\" button. These will be needed in plugin's "
2801
+ #~| "settings."
2802
+ #~ msgid ""
2803
+ #~ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2804
+ #~ "needed in the plugin's settings."
2805
+ #~ msgstr ""
2806
+ #~ "Aquí puedes ver tu \"APP ID\" y puedes ver tu \"App secret\" si haces "
2807
+ #~ "clic en el botón \"Mostrar\". Estos serán necesarios en la configuración "
2808
+ #~ "del plugin."
2809
+
2810
+ #~ msgid "Continue with <b>WordPress.com</b>"
2811
+ #~ msgstr "Sigue con <b>WordPress.com</b>"
2812
+
2813
+ #~ msgid "Link account with <b>WordPress.com</b>"
2814
+ #~ msgstr "Enlazar cuenta con <b>WordPress.com</b>"
2815
+
2816
+ #~ msgid "Unlink account from <b>WordPress.com</b>"
2817
+ #~ msgstr "Desenlazar cuenta de <b>WordPress.com</b>"
2818
+
2819
+ #~ msgid ""
2820
+ #~ "Go back to the Credentials tab and locate the small box at the middle. "
2821
+ #~ "Click on the blue \"Create credentials\" button. Chose the \"OAuth client "
2822
+ #~ "ID\" from the dropdown list."
2823
+ #~ msgstr ""
2824
+ #~ "Regresa a la pestaña de Credentials y ubica la pequeña caja en el medio. "
2825
+ #~ "Haz clic en el botón azul \"Create credentials\". Elija la \"OAuth client "
2826
+ #~ "ID\" de la lista desplegable."
2827
+
2828
+ #~ msgid "Accept the Twitter Developer Agreement"
2829
+ #~ msgstr "Aceptar el Twitter Developer Agreement"
2830
+
2831
+ #~ msgid ""
2832
+ #~ "Create your application by clicking on the Create your Twitter "
2833
+ #~ "application button"
2834
+ #~ msgstr ""
2835
+ #~ "Crea tu aplicación haciendo clic en el botón Create your Twitter "
2836
+ #~ "application"
2837
+
2838
+ #~ msgid "Consumer Key"
2839
+ #~ msgstr "Consumer Key"
2840
+
2841
+ #~ msgid "Consumer Secret"
2842
+ #~ msgstr "Consumer Secret"
2843
+
2844
+ #~ msgid "BuddyPress register form"
2845
+ #~ msgstr "Formulario de registro para BuddyPress"
2846
+
2847
+ #~ msgid "BuddyPress register button style"
2848
+ #~ msgstr "Estilo del botón de registro BuddyPress"
2849
+
2850
+ #~ msgid "Comment login button"
2851
+ #~ msgstr "Botón para iniciar sesión para comentar"
2852
+
2853
+ #~ msgid "Comment button style"
2854
+ #~ msgstr "Estilo de botón para comentar"
2855
+
2856
+ #~ msgid "Store Avatar"
2857
+ #~ msgstr "Avatar de Tienda"
2858
+
2859
+ #~ msgid "WooCommerce login form"
2860
+ #~ msgstr "Formulario de iniciar sesión WooCommerce"
2861
+
2862
+ #~ msgid "Connect button before login form"
2863
+ #~ msgstr "Conectar botón antes del formulario inicio de sesión"
2864
+
2865
+ #~ msgid "Connect button after login form"
2866
+ #~ msgstr "Conectar botón después del formulario inicio de sesión"
2867
+
2868
+ #~ msgid "WooCommerce register form"
2869
+ #~ msgstr "Formulario de registro WooCommerce"
2870
+
2871
+ #~ msgid "Connect button before register form"
2872
+ #~ msgstr "Conectar botón antes del formulario registro"
2873
+
2874
+ #~ msgid "Connect button after register form"
2875
+ #~ msgstr "Conectar botón después del formulario registro"
2876
+
2877
+ #~ msgid "Connect button before billing form"
2878
+ #~ msgstr "Conectar botón antes del formulario de facturación"
2879
+
2880
+ #~ msgid "Connect button after billing form"
2881
+ #~ msgstr "Conectar botón después del formulario de facturación"
2882
+
2883
+ #~ msgid "WooCommerce account details"
2884
+ #~ msgstr "Detalles de cuenta WooCommerce"
2885
+
2886
+ #~ msgid "Link buttons before account details"
2887
+ #~ msgstr "Enlazar botones antes de detalles de la cuenta"
2888
+
2889
+ #~ msgid "WooCommerce button style"
2890
+ #~ msgstr "Estilo de botón WooCommerce"
languages/nextend-facebook-connect-fr_FR.mo CHANGED
Binary file
languages/nextend-facebook-connect-fr_FR.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 2018-05-08 15:04+0200\n"
5
- "PO-Revision-Date: 2018-05-08 15:04+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.7\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -26,46 +26,137 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
- #: nextend-facebook-connect/admin/admin.php:187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  #, php-format
31
  msgid "%s needs json_decode function."
32
  msgstr ""
33
 
34
- #: nextend-facebook-connect/admin/admin.php:187
35
  msgid "Please contact your server administrator and ask for solution!"
36
  msgstr ""
37
 
38
- #: nextend-facebook-connect/admin/admin.php:214
39
- #: nextend-facebook-connect/admin/admin.php:256
40
  msgid "Settings saved."
41
  msgstr ""
42
 
43
- #: nextend-facebook-connect/admin/admin.php:223
44
  msgid "The authorization was successful"
45
  msgstr ""
46
 
47
- #: nextend-facebook-connect/admin/admin.php:234
48
  msgid "Deauthorize completed."
49
  msgstr ""
50
 
51
- #: nextend-facebook-connect/admin/admin.php:374
52
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
53
  #: nextend-facebook-connect/admin/templates/providers.php:84
54
  #: nextend-facebook-connect/admin/templates/providers.php:96
55
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
56
  msgid "Settings"
57
  msgstr ""
58
 
59
- #: nextend-facebook-connect/admin/admin.php:448
60
- #: nextend-facebook-connect/includes/oauth2.php:131
61
- #: nextend-facebook-connect/includes/oauth2.php:273
62
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
63
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:155
64
  #, php-format
65
  msgid "Unexpected response: %s"
66
  msgstr ""
67
 
68
- #: nextend-facebook-connect/admin/admin.php:506
69
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
70
  #, php-format
71
  msgid ""
@@ -73,93 +164,144 @@ msgid ""
73
  "URIs in the related social applications."
74
  msgstr ""
75
 
76
- #: nextend-facebook-connect/admin/admin.php:507
77
  msgid "Fix Error"
78
  msgstr ""
79
 
80
- #: nextend-facebook-connect/admin/admin.php:507
81
  msgid "Oauth Redirect URI"
82
  msgstr ""
83
 
84
- #: nextend-facebook-connect/admin/admin.php:517
85
  #, php-format
86
  msgid ""
87
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
88
  "display Social Login buttons in %2$s login form!"
89
  msgstr ""
90
 
91
- #: nextend-facebook-connect/admin/admin.php:518
92
  msgid "Dismiss and check Pro Addon"
93
  msgstr ""
94
 
95
- #: nextend-facebook-connect/admin/admin.php:518
96
  msgid "Dismiss"
97
  msgstr ""
98
 
99
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  msgid "Login label"
101
  msgstr ""
102
 
103
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
104
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:90
105
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
106
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
107
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
 
108
  msgid "Reset to default"
109
  msgstr ""
110
 
111
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
112
  msgid "Link label"
113
  msgstr ""
114
 
115
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:96
116
  msgid "Unlink label"
117
  msgstr ""
118
 
119
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
120
  msgid "Default button"
121
  msgstr ""
122
 
123
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:123
124
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
125
  msgid "Use custom button"
126
  msgstr ""
127
 
128
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
129
  #, php-format
130
  msgid "Use the %s in your custom button's code to make the label show up."
131
  msgstr ""
132
 
133
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:138
134
  msgid "Icon button"
135
  msgstr ""
136
 
137
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:169
138
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
139
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:90
140
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
141
- #: nextend-facebook-connect/admin/templates/settings/comment.php:56
142
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
143
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
144
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
145
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
146
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:86
 
 
147
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
148
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
149
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
150
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
151
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
152
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
153
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
 
154
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
155
  msgid "Save Changes"
156
  msgstr ""
157
 
158
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
159
  #: nextend-facebook-connect/admin/templates/providers.php:64
 
160
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
161
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
 
162
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
 
163
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
164
  msgid "Getting Started"
165
  msgstr ""
@@ -189,7 +331,18 @@ msgid "Fallback username prefix on register"
189
  msgstr ""
190
 
191
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
192
- msgid "Used when username is invalid"
 
 
 
 
 
 
 
 
 
 
 
193
  msgstr ""
194
 
195
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
@@ -242,9 +395,9 @@ msgstr ""
242
 
243
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
244
  #: nextend-facebook-connect/admin/templates/providers.php:39
245
- #: nextend-facebook-connect/admin/templates/settings/general.php:55
246
- #: nextend-facebook-connect/admin/templates/settings/general.php:69
247
- #: nextend-facebook-connect/includes/provider-admin.php:207
248
  msgid "Disabled"
249
  msgstr ""
250
 
@@ -262,19 +415,25 @@ msgstr ""
262
 
263
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
264
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
265
- #: nextend-facebook-connect/admin/templates/settings/comment.php:40
266
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
267
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
268
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
 
 
 
269
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
270
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
271
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
 
 
 
272
  #: nextend-facebook-connect/widget.php:40
273
  msgid "Default"
274
  msgstr ""
275
 
276
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
277
- #: nextend-social-login-pro/class-provider-extension.php:409
278
  msgid "Register"
279
  msgstr ""
280
 
@@ -290,11 +449,6 @@ msgstr ""
290
  msgid "Store in meta key"
291
  msgstr ""
292
 
293
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:80
294
- #, php-format
295
- msgid "Required scope: %1$s"
296
- msgstr ""
297
-
298
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
299
  msgid "Shortcode"
300
  msgstr ""
@@ -315,6 +469,80 @@ msgstr ""
315
  msgid "Image url"
316
  msgstr ""
317
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
318
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
319
  msgid "Fix Oauth Redirect URIs"
320
  msgstr ""
@@ -327,22 +555,26 @@ msgstr ""
327
  msgid "Got it"
328
  msgstr ""
329
 
330
- #: nextend-facebook-connect/admin/templates/global-settings.php:26
331
  #: nextend-facebook-connect/admin/templates/menu.php:8
332
  msgid "Global Settings"
333
  msgstr ""
334
 
335
- #: nextend-facebook-connect/admin/templates/global-settings.php:29
336
  msgid "General"
337
  msgstr ""
338
 
339
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
 
 
 
 
340
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
341
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
342
  msgid "Login Form"
343
  msgstr ""
344
 
345
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
346
  msgid "Comment"
347
  msgstr ""
348
 
@@ -354,7 +586,7 @@ msgstr ""
354
  msgid "Support"
355
  msgstr ""
356
 
357
- #: nextend-facebook-connect/admin/templates/header.php:20
358
  #: nextend-facebook-connect/admin/templates/menu.php:12
359
  msgid "Pro Addon"
360
  msgstr ""
@@ -386,7 +618,7 @@ msgid ""
386
  msgstr ""
387
 
388
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
389
- #: nextend-facebook-connect/admin/templates/pro-addon.php:215
390
  msgid "Deauthorize Pro Addon"
391
  msgstr ""
392
 
@@ -414,30 +646,11 @@ msgstr ""
414
  msgid "Activating..."
415
  msgstr ""
416
 
417
- #: nextend-facebook-connect/admin/templates/pro-addon.php:126
418
- msgid "Authorize your Pro Addon"
419
- msgstr ""
420
-
421
- #: nextend-facebook-connect/admin/templates/pro-addon.php:127
422
- msgid ""
423
- "To be able to use the Pro features, you need to authorize Nextend Social "
424
- "Connect Pro Addon. You can do this by clicking on the Authorize button below "
425
- "then select the related purchase."
426
- msgstr ""
427
-
428
- #: nextend-facebook-connect/admin/templates/pro-addon.php:132
429
- msgid "Authorize"
430
- msgstr ""
431
-
432
- #: nextend-facebook-connect/admin/templates/pro-addon.php:189
433
- msgid "License key"
434
- msgstr ""
435
-
436
- #: nextend-facebook-connect/admin/templates/pro-addon.php:206
437
  msgid "Pro Addon is installed and activated"
438
  msgstr ""
439
 
440
- #: nextend-facebook-connect/admin/templates/pro-addon.php:208
441
  msgid ""
442
  "You installed and activated the Pro Addon. If you don’t want to use it "
443
  "anymore, you can deauthorize using the button below."
@@ -492,9 +705,9 @@ msgid "Not Verified"
492
  msgstr ""
493
 
494
  #: nextend-facebook-connect/admin/templates/providers.php:42
495
- #: nextend-facebook-connect/admin/templates/settings/general.php:58
496
- #: nextend-facebook-connect/admin/templates/settings/general.php:72
497
- #: nextend-facebook-connect/includes/provider-admin.php:210
498
  msgid "Enabled"
499
  msgstr ""
500
 
@@ -507,17 +720,17 @@ msgid "Upgrade Now"
507
  msgstr ""
508
 
509
  #: nextend-facebook-connect/admin/templates/providers.php:72
510
- #: nextend-facebook-connect/includes/provider-admin.php:194
511
  msgid "Verify Settings"
512
  msgstr ""
513
 
514
  #: nextend-facebook-connect/admin/templates/providers.php:80
515
- #: nextend-facebook-connect/includes/provider-admin.php:239
516
  msgid "Enable"
517
  msgstr ""
518
 
519
  #: nextend-facebook-connect/admin/templates/providers.php:92
520
- #: nextend-facebook-connect/includes/provider-admin.php:247
521
  msgid "Disable"
522
  msgstr ""
523
 
@@ -525,18 +738,50 @@ msgstr ""
525
  msgid "Import"
526
  msgstr ""
527
 
528
- #: nextend-facebook-connect/admin/templates/providers.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
529
  msgid "Saving..."
530
  msgstr ""
531
 
532
- #: nextend-facebook-connect/admin/templates/providers.php:123
533
  msgid "Saving failed"
534
  msgstr ""
535
 
536
- #: nextend-facebook-connect/admin/templates/providers.php:124
537
  msgid "Order Saved"
538
  msgstr ""
539
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
540
  #: nextend-facebook-connect/admin/templates/review.php:14
541
  msgid "Rate your experience!"
542
  msgstr ""
@@ -576,7 +821,9 @@ msgid "Ok, you deserve it"
576
  msgstr ""
577
 
578
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
579
- msgid "BuddyPress register form"
 
 
580
  msgstr ""
581
 
582
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
@@ -590,15 +837,19 @@ msgstr ""
590
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
591
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
592
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
593
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
594
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
595
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
596
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
597
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
598
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
599
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
600
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
601
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
 
 
 
 
602
  msgid "Action:"
603
  msgstr ""
604
 
@@ -611,49 +862,53 @@ msgid "Connect button after register"
611
  msgstr ""
612
 
613
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
614
- msgid "BuddyPress register button style"
615
  msgstr ""
616
 
617
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
618
- #: nextend-facebook-connect/admin/templates/settings/comment.php:46
619
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
620
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
621
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
 
 
 
622
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
623
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
624
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
625
  #: nextend-facebook-connect/widget.php:45
626
  msgid "Icon"
627
  msgstr ""
628
 
629
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
630
- #: nextend-facebook-connect/admin/templates/settings/comment.php:22
631
- msgid "Comment login button"
632
  msgstr ""
633
 
634
- #: nextend-facebook-connect/admin/templates/settings/comment.php:25
 
635
  msgid "Show"
636
  msgstr ""
637
 
638
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
639
  msgid "Hide"
640
  msgstr ""
641
 
642
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
643
  #, php-format
644
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
645
  msgstr ""
646
 
647
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
648
  msgid "Discussion"
649
  msgstr ""
650
 
651
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
652
  msgid "Users must be registered and logged in to comment"
653
  msgstr ""
654
 
655
- #: nextend-facebook-connect/admin/templates/settings/comment.php:34
656
- msgid "Comment button style"
 
657
  msgstr ""
658
 
659
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
@@ -681,82 +936,138 @@ msgid "Allow registration with Social login"
681
  msgstr ""
682
 
683
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
684
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
685
  msgid "Registration notification sent to"
686
  msgstr ""
687
 
688
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
689
  msgid "WordPress default"
690
  msgstr ""
691
 
692
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
693
  msgid "Nobody"
694
  msgstr ""
695
 
696
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
697
- msgid "User"
698
- msgstr ""
699
-
700
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
701
  msgid "Admin"
702
  msgstr ""
703
 
704
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
705
  msgid "User and Admin"
706
  msgstr ""
707
 
708
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
709
- #: nextend-facebook-connect/admin/templates/settings/general.php:52
710
  msgid "Debug mode"
711
  msgstr ""
712
 
713
- #: nextend-facebook-connect/admin/templates/settings/general.php:64
714
- msgid "Store Avatar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
715
  msgstr ""
716
 
717
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
718
  msgid "Default redirect url"
719
  msgstr ""
720
 
721
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
722
- #: nextend-facebook-connect/admin/templates/settings/general.php:130
723
  msgid "for Login"
724
  msgstr ""
725
 
726
- #: nextend-facebook-connect/admin/templates/settings/general.php:107
727
- #: nextend-facebook-connect/admin/templates/settings/general.php:145
728
  msgid "for Register"
729
  msgstr ""
730
 
731
- #: nextend-facebook-connect/admin/templates/settings/general.php:117
732
  msgid "Fixed redirect url"
733
  msgstr ""
734
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
735
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
736
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
 
737
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
738
  msgid "Login form button style"
739
  msgstr ""
740
 
741
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
742
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
 
743
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
 
744
  msgid "Login layout"
745
  msgstr ""
746
 
747
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
748
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
749
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
 
 
 
750
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
751
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
 
 
 
752
  msgid "Below"
753
  msgstr ""
754
 
755
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
756
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
757
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
 
 
 
758
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
759
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
 
 
 
760
  msgid "Below with separator"
761
  msgstr ""
762
 
@@ -767,16 +1078,28 @@ msgstr ""
767
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
768
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
769
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
 
 
 
770
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
771
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
 
 
 
772
  msgid "Above"
773
  msgstr ""
774
 
775
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
776
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
777
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
 
 
 
778
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
779
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
 
 
 
780
  msgid "Above with separator"
781
  msgstr ""
782
 
@@ -806,7 +1129,7 @@ msgid "Hide login buttons"
806
  msgstr ""
807
 
808
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
809
- #: nextend-social-login-pro/class-provider-extension.php:328
810
  msgid "Registration Form"
811
  msgstr ""
812
 
@@ -814,114 +1137,194 @@ msgstr ""
814
  msgid "Embedded login form"
815
  msgstr ""
816
 
817
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:68
818
- msgid "MemberPress account details"
819
  msgstr ""
820
 
821
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
822
  msgid "No link buttons"
823
  msgstr ""
824
 
825
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
826
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
827
  msgid "Link buttons after account details"
828
  msgstr ""
829
 
830
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
831
- msgid "Register Form"
 
 
 
832
  msgstr ""
833
 
834
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
835
- msgid "Register form button style"
836
  msgstr ""
837
 
838
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
839
- msgid "Register layout"
840
  msgstr ""
841
 
842
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
843
- msgid "WooCommerce login form"
844
  msgstr ""
845
 
846
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
847
- msgid "No Connect button in login form"
 
848
  msgstr ""
849
 
850
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
851
- msgid "Connect button before login form"
852
  msgstr ""
853
 
854
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
855
- msgid "Connect button after login form"
 
856
  msgstr ""
857
 
858
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
859
- msgid "WooCommerce register form"
 
860
  msgstr ""
861
 
862
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
863
- msgid "No Connect button in register form"
 
864
  msgstr ""
865
 
866
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
867
- msgid "Connect button before register form"
868
  msgstr ""
869
 
870
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
871
- msgid "Connect button after register form"
872
  msgstr ""
873
 
874
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
875
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
876
- msgid "WooCommerce billing form"
877
  msgstr ""
878
 
879
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
880
- msgid "No Connect button in billing form"
 
 
881
  msgstr ""
882
 
883
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
884
- msgid "Connect button before billing form"
885
  msgstr ""
886
 
887
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
888
- msgid "Connect button after billing form"
889
  msgstr ""
890
 
891
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
892
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
893
- msgid "WooCommerce account details"
894
  msgstr ""
895
 
896
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
897
- msgid "Link buttons before account details"
898
  msgstr ""
899
 
900
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
901
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
902
- msgid "WooCommerce button style"
903
  msgstr ""
904
 
905
- #: nextend-facebook-connect/includes/avatar.php:45
906
- msgid "Avatar"
907
  msgstr ""
908
 
909
- #: nextend-facebook-connect/includes/avatar.php:46
910
- msgid "Manage Avatar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
911
  msgstr ""
912
 
913
  #: nextend-facebook-connect/includes/avatar.php:47
 
 
 
 
914
  #, php-format
915
  msgid "Avatar <span class=\"count\">(%s)</span>"
916
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
917
  msgstr[0] ""
918
  msgstr[1] ""
919
 
920
- #: nextend-facebook-connect/includes/provider-admin.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
921
  msgid "Your configuration needs to be verified"
922
  msgstr ""
923
 
924
- #: nextend-facebook-connect/includes/provider-admin.php:189
925
  msgid ""
926
  "Before you can start letting your users register with your app it needs to "
927
  "be tested. This test makes sure that no users will have troubles with the "
@@ -930,86 +1333,98 @@ msgid ""
930
  "are fine."
931
  msgstr ""
932
 
933
- #: nextend-facebook-connect/includes/provider-admin.php:195
934
  msgid "Please save your changes to verify settings."
935
  msgstr ""
936
 
937
- #: nextend-facebook-connect/includes/provider-admin.php:203
938
  msgid "Works Fine"
939
  msgstr ""
940
 
941
- #: nextend-facebook-connect/includes/provider-admin.php:217
942
  #, php-format
943
  msgid ""
944
  "This provider is currently disabled, which means that users can’t register "
945
  "or login via their %s account."
946
  msgstr ""
947
 
948
- #: nextend-facebook-connect/includes/provider-admin.php:220
949
  #, php-format
950
  msgid ""
951
  "This provider works fine, but you can test it again. If you don’t want to "
952
  "let users register or login with %s anymore you can disable it."
953
  msgstr ""
954
 
955
- #: nextend-facebook-connect/includes/provider-admin.php:223
956
  #, php-format
957
  msgid ""
958
  "This provider is currently enabled, which means that users can register or "
959
  "login via their %s account."
960
  msgstr ""
961
 
962
- #: nextend-facebook-connect/includes/provider-admin.php:231
963
  msgid "Verify Settings Again"
964
  msgstr ""
965
 
966
- #: nextend-facebook-connect/includes/provider-admin.php:232
967
  msgid "Please save your changes before verifying settings."
968
  msgstr ""
969
 
970
- #: nextend-facebook-connect/includes/provider.php:320
971
- #: nextend-facebook-connect/includes/provider.php:618
972
- #: nextend-facebook-connect/includes/provider.php:629
973
  msgid "Authentication successful"
974
  msgstr ""
975
 
976
- #: nextend-facebook-connect/includes/provider.php:558
977
- #: nextend-facebook-connect/includes/user.php:102
978
  msgid "Authentication error"
979
  msgstr ""
980
 
981
- #: nextend-facebook-connect/includes/provider.php:573
982
  msgid "Unlink successful."
983
  msgstr ""
984
 
985
- #: nextend-facebook-connect/includes/provider.php:758
986
- #: nextend-facebook-connect/includes/provider.php:765
987
  msgid "The test was successful"
988
  msgstr ""
989
 
990
- #: nextend-facebook-connect/includes/provider.php:811
991
  msgid "Authentication failed"
992
  msgstr ""
993
 
994
- #: nextend-facebook-connect/includes/user.php:66
 
 
 
 
 
 
 
 
995
  #, php-format
996
  msgid ""
997
  "Your %1$s account is successfully linked with your account. Now you can sign "
998
  "in with %2$s easily."
999
  msgstr ""
1000
 
1001
- #: nextend-facebook-connect/includes/user.php:69
1002
  #, php-format
1003
  msgid ""
1004
  "You have already linked a(n) %s account. Please unlink the current and then "
1005
  "you can link other %s account."
1006
  msgstr ""
1007
 
1008
- #: nextend-facebook-connect/includes/user.php:74
1009
  #, php-format
1010
  msgid "This %s account is already linked to other user."
1011
  msgstr ""
1012
 
 
 
 
 
1013
  #. translators: %2$s: PHP version
1014
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1015
  #, php-format
@@ -1024,66 +1439,50 @@ msgid ""
1024
  "version, the plugin is currently NOT ACTIVE."
1025
  msgstr ""
1026
 
1027
- #: nextend-facebook-connect/nextend-social-login.php:25
1028
- #: nextend-facebook-connect/nextend-social-login.php:33
1029
  #, php-format
1030
  msgid "Please update %1$s to version %2$s or newer."
1031
  msgstr ""
1032
 
1033
- #: nextend-facebook-connect/nextend-social-login.php:25
1034
- #: nextend-facebook-connect/nextend-social-login.php:33
1035
  msgid "Update now!"
1036
  msgstr ""
1037
 
1038
- #: nextend-facebook-connect/nextend-social-login.php:379
 
 
 
 
 
1039
  #, php-format
1040
  msgid ""
1041
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1042
  "Connect as it is not needed anymore."
1043
  msgstr ""
1044
 
1045
- #: nextend-facebook-connect/nextend-social-login.php:390
1046
  #, php-format
1047
  msgid ""
1048
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1049
  "Connect as it is not needed anymore."
1050
  msgstr ""
1051
 
1052
- #: nextend-facebook-connect/nextend-social-login.php:507
1053
- msgid "You have logged in successfully."
1054
- msgstr ""
1055
-
1056
- #: nextend-facebook-connect/nextend-social-login.php:631
1057
- #: nextend-facebook-connect/nextend-social-login.php:919
1058
  msgid "Social Login"
1059
  msgstr ""
1060
 
1061
- #: nextend-facebook-connect/nextend-social-login.php:903
1062
  msgid "Social Accounts"
1063
  msgstr ""
1064
 
1065
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1066
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1067
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1068
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1069
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1070
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1071
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1072
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21
1073
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1074
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1075
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1076
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
1077
- #, php-format
1078
- msgid "Navigate to %s"
1079
- msgstr ""
1080
-
1081
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1082
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
1083
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1084
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1085
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1086
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1087
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1088
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1089
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
@@ -1102,14 +1501,14 @@ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1102
  msgstr ""
1103
 
1104
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1105
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1106
  #, php-format
1107
  msgid ""
1108
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1109
  msgstr ""
1110
 
1111
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1112
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1113
  msgid "Click on \"Save Changes\""
1114
  msgstr ""
1115
 
@@ -1128,7 +1527,7 @@ msgstr ""
1128
  msgid "How to get SSL for my WordPress site?"
1129
  msgstr ""
1130
 
1131
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:16
1132
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1133
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1134
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
@@ -1142,93 +1541,97 @@ msgid ""
1142
  "%1$s App."
1143
  msgstr ""
1144
 
1145
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:18
1146
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1147
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1148
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:18
1149
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
 
1150
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1151
  #, php-format
1152
  msgctxt "App creation"
1153
  msgid "Create %s"
1154
  msgstr ""
1155
 
1156
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1157
  msgid "Click on the \"Add a New App\" button"
1158
  msgstr ""
1159
 
1160
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1161
  msgid "Fill \"Display Name\" and \"Contact Email\""
1162
  msgstr ""
1163
 
1164
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1165
  msgid "Click on blue \"Create App ID\" button"
1166
  msgstr ""
1167
 
1168
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1169
  msgid ""
1170
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1171
  "button"
1172
  msgstr ""
1173
 
1174
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1175
  msgid "Choose Web"
1176
  msgstr ""
1177
 
1178
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1179
  #, php-format
1180
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1181
  msgstr ""
1182
 
1183
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1184
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
 
1185
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
 
1186
  msgid "Click on \"Save\""
1187
  msgstr ""
1188
 
1189
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1190
  msgid "In the left sidebar, click on \"Facebook Login\""
1191
  msgstr ""
1192
 
1193
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1194
  msgid "In the top of the left sidebar, click on \"Settings\""
1195
  msgstr ""
1196
 
1197
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1198
  msgid ""
1199
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1200
  "click on the \"Show\" button. These will be needed in plugin's settings."
1201
  msgstr ""
1202
 
1203
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1204
  msgid "Enter your domain name to the App Domains"
1205
  msgstr ""
1206
 
1207
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1208
  msgid ""
1209
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1210
  "accessible privacy policy that explains what data you are collecting and how "
1211
  "you will use that data."
1212
  msgstr ""
1213
 
1214
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1215
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1216
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1217
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1218
  msgid "Save your changes."
1219
  msgstr ""
1220
 
1221
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1222
  msgid ""
1223
  "Your application is currently private, which means that only you can log in "
1224
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1225
  msgstr ""
1226
 
1227
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1228
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
1229
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
1230
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
1231
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
 
1232
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1233
  #, php-format
1234
  msgid "I am done setting up my %s"
@@ -1365,6 +1768,8 @@ msgstr ""
1365
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1366
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1367
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
 
 
1368
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1369
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1370
  msgid "Required"
@@ -1375,6 +1780,7 @@ msgstr ""
1375
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1376
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1377
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
 
1378
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1379
  #, php-format
1380
  msgid ""
@@ -1398,17 +1804,40 @@ msgstr ""
1398
  msgid "Unlink account from <b>Facebook</b>"
1399
  msgstr ""
1400
 
1401
- #: nextend-facebook-connect/providers/facebook/facebook.php:151
1402
- #: nextend-facebook-connect/providers/google/google.php:71
1403
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
1404
- #: nextend-social-login-pro/providers/amazon/amazon.php:71
1405
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1406
- #: nextend-social-login-pro/providers/vk/vk.php:68
 
1407
  #, php-format
1408
  msgid ""
1409
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1410
  msgstr ""
1411
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1412
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1413
  msgid "Click on the \"Credentials\" in the left hand menu"
1414
  msgstr ""
@@ -1419,7 +1848,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
1419
  msgstr ""
1420
 
1421
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1422
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1423
  #, php-format
1424
  msgid ""
1425
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -1428,49 +1857,53 @@ msgstr ""
1428
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1429
  msgid ""
1430
  "If you don't have a project yet, you'll need to create one. You can do this "
1431
- "by clicking on the blue \"Create project\" button on the right side"
 
 
1432
  msgstr ""
1433
 
1434
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1435
- msgid "Name your project and then click on the Create button"
 
1436
  msgstr ""
1437
 
1438
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
1439
- msgid "Once you have a project, you'll end up in the dashboard."
1440
  msgstr ""
1441
 
1442
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1443
- msgid ""
1444
- "Click on the \"Credentials\" in the left hand menu to create new API "
1445
- "credentials"
1446
  msgstr ""
1447
 
1448
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1449
  msgid ""
1450
- "Go to the OAuth consent screen tab and enter a product name and provide the "
1451
- "Privacy Policy URL, then click on the save button."
1452
  msgstr ""
1453
 
1454
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1455
- msgid ""
1456
- "Go back to the Credentials tab and locate the small box at the middle. Click "
1457
- "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
1458
- "from the dropdown list."
1459
  msgstr ""
1460
 
1461
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1462
- msgid "Your application type should be \"Web application\""
 
 
1463
  msgstr ""
1464
 
1465
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
 
 
 
 
1466
  msgid "Name your application"
1467
  msgstr ""
1468
 
1469
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1470
  msgid "Click on the Create button"
1471
  msgstr ""
1472
 
1473
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1474
  msgid ""
1475
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1476
  "the Credentials in the left hand menu and select your app by clicking on its "
@@ -1493,6 +1926,7 @@ msgstr ""
1493
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
1494
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1495
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
 
1496
  msgid "Client ID"
1497
  msgstr ""
1498
 
@@ -1502,61 +1936,90 @@ msgstr ""
1502
  msgid "Client Secret"
1503
  msgstr ""
1504
 
1505
- #: nextend-facebook-connect/providers/google/google.php:38
1506
  msgid "Continue with <b>Google</b>"
1507
  msgstr ""
1508
 
1509
- #: nextend-facebook-connect/providers/google/google.php:39
1510
  msgid "Link account with <b>Google</b>"
1511
  msgstr ""
1512
 
1513
- #: nextend-facebook-connect/providers/google/google.php:40
1514
  msgid "Unlink account from <b>Google</b>"
1515
  msgstr ""
1516
 
 
 
 
 
 
1517
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1518
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1519
- msgid "Click on the App"
1520
  msgstr ""
1521
 
1522
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1523
- msgid "Click on the \"Settings\" tab"
 
 
1524
  msgstr ""
1525
 
1526
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
1527
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1528
  #, php-format
1529
- msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
1530
  msgstr ""
1531
 
1532
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1533
- msgid "Click on \"Update Settings\""
 
1534
  msgstr ""
1535
 
1536
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1537
- msgid "Click on the \"Create New App\" button"
 
 
1538
  msgstr ""
1539
 
1540
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1541
  #, php-format
1542
  msgid ""
1543
- "Fill the name and description fields. Then enter your site's URL to the "
1544
- "Website field: <b>%s</b>"
 
 
 
 
 
 
 
1545
  msgstr ""
1546
 
1547
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1548
- msgid "Accept the Twitter Developer Agreement"
1549
  msgstr ""
1550
 
1551
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
1552
  msgid ""
1553
- "Create your application by clicking on the Create your Twitter application "
1554
- "button"
1555
  msgstr ""
1556
 
1557
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
 
 
 
 
 
 
 
1558
  msgid ""
1559
- "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
 
 
 
 
 
1560
  msgstr ""
1561
 
1562
  #: nextend-facebook-connect/providers/twitter/admin/import.php:9
@@ -1568,22 +2031,30 @@ msgid "Go to the Settings tab."
1568
  msgstr ""
1569
 
1570
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
1571
- msgid "Consumer Key"
1572
  msgstr ""
1573
 
1574
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
1575
- msgid "Consumer Secret"
 
 
 
 
1576
  msgstr ""
1577
 
1578
- #: nextend-facebook-connect/providers/twitter/twitter.php:38
 
 
 
 
1579
  msgid "Continue with <b>Twitter</b>"
1580
  msgstr ""
1581
 
1582
- #: nextend-facebook-connect/providers/twitter/twitter.php:39
1583
  msgid "Link account with <b>Twitter</b>"
1584
  msgstr ""
1585
 
1586
- #: nextend-facebook-connect/providers/twitter/twitter.php:40
1587
  msgid "Unlink account from <b>Twitter</b>"
1588
  msgstr ""
1589
 
@@ -1608,97 +2079,89 @@ msgstr ""
1608
  msgid "Show unlink buttons"
1609
  msgstr ""
1610
 
1611
- #: nextend-social-login-pro/class-provider-extension.php:114
1612
  msgid "Social login is not allowed with this role!"
1613
  msgstr ""
1614
 
1615
- #: nextend-social-login-pro/class-provider-extension.php:209
1616
  #: nextend-social-login-pro/class-provider-extension.php:211
1617
- #: nextend-social-login-pro/class-provider-extension.php:216
1618
- #: nextend-social-login-pro/class-provider-extension.php:222
1619
- #: nextend-social-login-pro/class-provider-extension.php:235
1620
- #: nextend-social-login-pro/class-provider-extension.php:237
1621
- #: nextend-social-login-pro/class-provider-extension.php:240
 
1622
  msgid "ERROR"
1623
  msgstr ""
1624
 
1625
- #: nextend-social-login-pro/class-provider-extension.php:209
1626
  msgid "Please enter a username."
1627
  msgstr ""
1628
 
1629
- #: nextend-social-login-pro/class-provider-extension.php:211
1630
  msgid ""
1631
  "This username is invalid because it uses illegal characters. Please enter a "
1632
  "valid username."
1633
  msgstr ""
1634
 
1635
- #: nextend-social-login-pro/class-provider-extension.php:216
1636
  msgid "This username is already registered. Please choose another one."
1637
  msgstr ""
1638
 
1639
- #: nextend-social-login-pro/class-provider-extension.php:222
1640
  msgid "Sorry, that username is not allowed."
1641
  msgstr ""
1642
 
1643
- #: nextend-social-login-pro/class-provider-extension.php:235
 
 
 
 
1644
  msgid "Please enter an email address."
1645
  msgstr ""
1646
 
1647
- #: nextend-social-login-pro/class-provider-extension.php:237
1648
  msgid "The email address isn&#8217;t correct."
1649
  msgstr ""
1650
 
1651
- #: nextend-social-login-pro/class-provider-extension.php:240
1652
  msgid "This email is already registered, please choose another one."
1653
  msgstr ""
1654
 
1655
- #: nextend-social-login-pro/class-provider-extension.php:255
 
 
 
 
1656
  msgid "<strong>ERROR</strong>: Please enter a password."
1657
  msgstr ""
1658
 
1659
- #: nextend-social-login-pro/class-provider-extension.php:260
1660
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1661
  msgstr ""
1662
 
1663
- #: nextend-social-login-pro/class-provider-extension.php:265
1664
  msgid ""
1665
  "<strong>ERROR</strong>: Please enter the same password in both password "
1666
  "fields."
1667
  msgstr ""
1668
 
1669
- #: nextend-social-login-pro/class-provider-extension.php:328
1670
- msgid "Register For This Site!"
1671
- msgstr ""
1672
-
1673
- #: nextend-social-login-pro/class-provider-extension.php:355
1674
- msgid "Username"
1675
- msgstr ""
1676
-
1677
- #: nextend-social-login-pro/class-provider-extension.php:362
1678
- msgid "Email"
1679
- msgstr ""
1680
-
1681
- #: nextend-social-login-pro/class-provider-extension.php:367
1682
- msgid "Registration confirmation will be emailed to you."
1683
- msgstr ""
1684
-
1685
- #: nextend-social-login-pro/class-provider-extension.php:375
1686
  msgid "Password"
1687
  msgstr ""
1688
 
1689
- #: nextend-social-login-pro/class-provider-extension.php:385
1690
  msgid "Strength indicator"
1691
  msgstr ""
1692
 
1693
- #: nextend-social-login-pro/class-provider-extension.php:390
1694
  msgid "Confirm use of weak password"
1695
  msgstr ""
1696
 
1697
- #: nextend-social-login-pro/class-provider-extension.php:396
1698
  msgid "Confirm password"
1699
  msgstr ""
1700
 
1701
- #: nextend-social-login-pro/class-provider-extension.php:506
1702
  #, php-format
1703
  msgid ""
1704
  "This email is already registered, please login in to your account to link "
@@ -1723,30 +2186,31 @@ msgid "Install now!"
1723
  msgstr ""
1724
 
1725
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
1726
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1727
  #, php-format
1728
  msgid "Visit %s"
1729
  msgstr ""
1730
 
1731
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
1732
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
1733
  msgid ""
1734
  "On the right side, under \"Manage\", hover over the gear icon and select "
1735
  "\"Web Settings\" option."
1736
  msgstr ""
1737
 
1738
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
1739
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
1740
  msgid "Click \"Edit\"."
1741
  msgstr ""
1742
 
1743
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
1744
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
1745
  #, php-format
1746
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1747
  msgstr ""
1748
 
1749
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:16
 
1750
  #, php-format
1751
  msgid ""
1752
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -1756,44 +2220,47 @@ msgid ""
1756
  "%1$s App."
1757
  msgstr ""
1758
 
1759
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
 
 
1760
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
1761
  #, php-format
1762
  msgid "Log in with your %s credentials if you are not logged in."
1763
  msgstr ""
1764
 
1765
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
1766
  msgid ""
1767
  "If you don't have a Security Profile yet, you'll need to create one. You can "
1768
  "do this by clicking on the orange \"Create a New Security Profile\" button "
1769
  "on the left side."
1770
  msgstr ""
1771
 
1772
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
1773
  msgid ""
1774
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
1775
  "\"Consent Privacy Notice URL\"."
1776
  msgstr ""
1777
 
1778
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1779
  msgid "Once you filled all the required fields, click \"Save\"."
1780
  msgstr ""
1781
 
1782
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
1783
  #, php-format
1784
  msgid ""
1785
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
1786
  msgstr ""
1787
 
1788
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
 
1789
  msgid "When all fields are filled, click \"Save\"."
1790
  msgstr ""
1791
 
1792
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
1793
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
1794
  msgstr ""
1795
 
1796
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
1797
  msgid ""
1798
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
1799
  "page."
@@ -1811,6 +2278,10 @@ msgstr ""
1811
  msgid "Unlink account from <b>Amazon</b>"
1812
  msgstr ""
1813
 
 
 
 
 
1814
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
1815
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
1816
  #, php-format
@@ -1851,18 +2322,97 @@ msgid ""
1851
  "Application Permissions"
1852
  msgstr ""
1853
 
1854
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
1855
  msgid "Continue with <b>LinkedIn</b>"
1856
  msgstr ""
1857
 
1858
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
1859
  msgid "Link account with <b>LinkedIn</b>"
1860
  msgstr ""
1861
 
1862
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
1863
  msgid "Unlink account from <b>LinkedIn</b>"
1864
  msgstr ""
1865
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1866
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
1867
  msgid "Click on the Manage button at the App"
1868
  msgstr ""
@@ -1950,20 +2500,33 @@ msgstr ""
1950
  msgid "Unlink account from <b>VK</b>"
1951
  msgstr ""
1952
 
1953
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:8
1954
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:8
1955
- #: nextend-social-login-pro/template-parts/login/above-separator.php:10
1956
- #: nextend-social-login-pro/template-parts/login/below-separator.php:14
1957
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:8
1958
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:8
1959
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:8
1960
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:8
1961
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:8
1962
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:8
 
 
 
 
 
 
 
 
 
 
 
 
1963
  msgid "OR"
1964
  msgstr "OU"
1965
 
1966
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
 
1967
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
1968
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
1969
  msgid "Social accounts"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2018-09-04 15:28+0200\n"
5
+ "PO-Revision-Date: 2018-09-04 15:28+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.1.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
+ #: nextend-facebook-connect/NSL/GDPR.php:32
30
+ msgid "What personal data we collect and why we collect it"
31
+ msgstr ""
32
+
33
+ #: nextend-facebook-connect/NSL/GDPR.php:33
34
+ #, php-format
35
+ msgid ""
36
+ "%1$s collects data when a visitor register, login or link the account with "
37
+ "with any of the enabled social provider. It collects the following data: "
38
+ "email address, name, social provider identifier and access token. Also it "
39
+ "can collect profile picture and more fields with the Pro Addon's sync data "
40
+ "feature."
41
+ msgstr ""
42
+
43
+ #: nextend-facebook-connect/NSL/GDPR.php:35
44
+ msgid "Who we share your data with"
45
+ msgstr ""
46
+
47
+ #: nextend-facebook-connect/NSL/GDPR.php:36
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
+
55
+ #: nextend-facebook-connect/NSL/GDPR.php:38
56
+ msgid "Does the plugin share personal data with third parties"
57
+ msgstr ""
58
+
59
+ #: nextend-facebook-connect/NSL/GDPR.php:39
60
+ #, php-format
61
+ msgid ""
62
+ "%1$s use the access token what the social provider gave to communicate with "
63
+ "the providers to verify account and securely access personal data."
64
+ msgstr ""
65
+
66
+ #: nextend-facebook-connect/NSL/GDPR.php:41
67
+ msgid "How long we retain your data"
68
+ msgstr ""
69
+
70
+ #: nextend-facebook-connect/NSL/GDPR.php:42
71
+ #, php-format
72
+ msgid ""
73
+ "%1$s removes the collected personal data when the user deleted from "
74
+ "WordPress."
75
+ msgstr ""
76
+
77
+ #: nextend-facebook-connect/NSL/GDPR.php:44
78
+ msgid "Does the plugin use personal data collected by others?"
79
+ msgstr ""
80
+
81
+ #: nextend-facebook-connect/NSL/GDPR.php:45
82
+ #, php-format
83
+ msgid ""
84
+ "%1$s use the personal data collected by the social providers to create "
85
+ "account on your site when the visitor authorize it."
86
+ msgstr ""
87
+
88
+ #: nextend-facebook-connect/NSL/GDPR.php:47
89
+ msgid "Does the plugin store things in the browser?"
90
+ msgstr ""
91
+
92
+ #: nextend-facebook-connect/NSL/GDPR.php:48
93
+ #, php-format
94
+ msgid ""
95
+ "Yes, %1$s must create a cookie for visitors who use the social login "
96
+ "authorization flow. This cookie required for every provider to secure the "
97
+ "communication and to redirect the user back to the last location."
98
+ msgstr ""
99
+
100
+ #: nextend-facebook-connect/NSL/GDPR.php:50
101
+ msgid "Does the plugin collect telemetry data, directly or indirectly?"
102
+ msgstr ""
103
+
104
+ #: nextend-facebook-connect/NSL/GDPR.php:51
105
+ #: nextend-facebook-connect/NSL/GDPR.php:54
106
+ msgid "No"
107
+ msgstr ""
108
+
109
+ #: nextend-facebook-connect/NSL/GDPR.php:53
110
+ msgid ""
111
+ "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
112
+ "third party?"
113
+ msgstr ""
114
+
115
+ #: nextend-facebook-connect/NSL/GDPR.php:97
116
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:65
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:277
131
  msgid "Settings saved."
132
  msgstr ""
133
 
134
+ #: nextend-facebook-connect/admin/admin.php:244
135
  msgid "The authorization was successful"
136
  msgstr ""
137
 
138
+ #: nextend-facebook-connect/admin/admin.php:255
139
  msgid "Deauthorize completed."
140
  msgstr ""
141
 
142
+ #: nextend-facebook-connect/admin/admin.php:429
143
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
144
  #: nextend-facebook-connect/admin/templates/providers.php:84
145
  #: nextend-facebook-connect/admin/templates/providers.php:96
146
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
147
  msgid "Settings"
148
  msgstr ""
149
 
150
+ #: nextend-facebook-connect/admin/admin.php:503
151
+ #: nextend-facebook-connect/includes/oauth2.php:139
152
+ #: nextend-facebook-connect/includes/oauth2.php:284
153
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
154
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:163
155
  #, php-format
156
  msgid "Unexpected response: %s"
157
  msgstr ""
158
 
159
+ #: nextend-facebook-connect/admin/admin.php:561
160
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
161
  #, php-format
162
  msgid ""
164
  "URIs in the related social applications."
165
  msgstr ""
166
 
167
+ #: nextend-facebook-connect/admin/admin.php:562
168
  msgid "Fix Error"
169
  msgstr ""
170
 
171
+ #: nextend-facebook-connect/admin/admin.php:562
172
  msgid "Oauth Redirect URI"
173
  msgstr ""
174
 
175
+ #: nextend-facebook-connect/admin/admin.php:572
176
  #, php-format
177
  msgid ""
178
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
179
  "display Social Login buttons in %2$s login form!"
180
  msgstr ""
181
 
182
+ #: nextend-facebook-connect/admin/admin.php:573
183
  msgid "Dismiss and check Pro Addon"
184
  msgstr ""
185
 
186
+ #: nextend-facebook-connect/admin/admin.php:573
187
  msgid "Dismiss"
188
  msgstr ""
189
 
190
+ #: nextend-facebook-connect/admin/admin.php:579
191
+ #, php-format
192
+ msgid ""
193
+ "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
194
+ "register flow</b>\" and \"<b>OAuth redirect uri proxy page</b>\" in %1$s to "
195
+ "work properly."
196
+ msgstr ""
197
+
198
+ #: nextend-facebook-connect/admin/admin.php:580
199
+ msgid "Fix now"
200
+ msgstr ""
201
+
202
+ #: nextend-facebook-connect/admin/admin.php:604
203
+ msgid "Authorize your Pro Addon"
204
+ msgstr ""
205
+
206
+ #: nextend-facebook-connect/admin/admin.php:605
207
+ msgid ""
208
+ "To be able to use the Pro features, you need to authorize Nextend Social "
209
+ "Connect Pro Addon. You can do this by clicking on the Authorize button below "
210
+ "then select the related purchase."
211
+ msgstr ""
212
+
213
+ #: nextend-facebook-connect/admin/admin.php:610
214
+ msgid "Authorize"
215
+ msgstr ""
216
+
217
+ #: nextend-facebook-connect/admin/admin.php:667
218
+ msgid "License key"
219
+ msgstr ""
220
+
221
+ #: nextend-facebook-connect/admin/admin.php:682
222
+ msgid "OAuth proxy page"
223
+ msgstr ""
224
+
225
+ #: nextend-facebook-connect/admin/admin.php:685
226
+ msgid "Register flow page"
227
+ msgstr ""
228
+
229
+ #: nextend-facebook-connect/admin/interim.php:12
230
+ #: nextend-facebook-connect/admin/interim.php:23
231
+ msgid "You have logged in successfully."
232
+ msgstr ""
233
+
234
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:81
235
  msgid "Login label"
236
  msgstr ""
237
 
238
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
239
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:97
240
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
241
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
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:91
248
  msgid "Link label"
249
  msgstr ""
250
 
251
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:103
252
  msgid "Unlink label"
253
  msgstr ""
254
 
255
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
256
  msgid "Default button"
257
  msgstr ""
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
260
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
261
  msgid "Use custom button"
262
  msgstr ""
263
 
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
265
  #, php-format
266
  msgid "Use the %s in your custom button's code to make the label show up."
267
  msgstr ""
268
 
269
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:145
270
  msgid "Icon button"
271
  msgstr ""
272
 
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:176
274
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
275
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:93
276
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
277
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:54
278
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
279
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:79
280
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
281
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
282
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:153
283
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:108
284
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:168
285
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
286
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:232
287
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
288
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
289
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
290
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
291
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
292
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
293
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
294
  msgid "Save Changes"
295
  msgstr ""
296
 
297
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
298
  #: nextend-facebook-connect/admin/templates/providers.php:64
299
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:15
300
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
301
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
302
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
303
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
304
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
305
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
306
  msgid "Getting Started"
307
  msgstr ""
331
  msgstr ""
332
 
333
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
334
+ msgid "Used when username is invalid or not stored"
335
+ msgstr ""
336
+
337
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:29
338
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
339
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
340
+ msgid "Terms and conditions"
341
+ msgstr ""
342
+
343
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
344
+ #, php-format
345
+ msgid "Override global \"%1$s\""
346
  msgstr ""
347
 
348
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
395
 
396
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
397
  #: nextend-facebook-connect/admin/templates/providers.php:39
398
+ #: nextend-facebook-connect/admin/templates/settings/general.php:53
399
+ #: nextend-facebook-connect/admin/templates/settings/general.php:189
400
+ #: nextend-facebook-connect/includes/provider-admin.php:215
401
  msgid "Disabled"
402
  msgstr ""
403
 
415
 
416
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
417
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
418
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:38
419
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
420
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
421
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
422
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
423
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
424
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
425
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
426
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
427
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
428
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
429
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
430
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
431
  #: nextend-facebook-connect/widget.php:40
432
  msgid "Default"
433
  msgstr ""
434
 
435
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
436
+ #: nextend-facebook-connect/includes/userData.php:172
437
  msgid "Register"
438
  msgstr ""
439
 
449
  msgid "Store in meta key"
450
  msgstr ""
451
 
 
 
 
 
 
452
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
453
  msgid "Shortcode"
454
  msgstr ""
469
  msgid "Image url"
470
  msgstr ""
471
 
472
+ #: nextend-facebook-connect/admin/templates/debug.php:7
473
+ #: nextend-facebook-connect/admin/templates/header.php:20
474
+ msgid "Debug"
475
+ msgstr ""
476
+
477
+ #: nextend-facebook-connect/admin/templates/debug.php:40
478
+ msgid "Test network connection with providers"
479
+ msgstr ""
480
+
481
+ #: nextend-facebook-connect/admin/templates/debug.php:47
482
+ msgid "You don't have cURL support, please enable it in php.ini!"
483
+ msgstr ""
484
+
485
+ #: nextend-facebook-connect/admin/templates/debug.php:57
486
+ #, php-format
487
+ msgid "Test %1$s connection"
488
+ msgstr ""
489
+
490
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:7
491
+ msgid "Pro Addon - Authorized domain has been changed"
492
+ msgstr ""
493
+
494
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:15
495
+ msgid ""
496
+ "<b>You must authorize your new domain</b> to receive <b>updates and support</"
497
+ "b> in the future."
498
+ msgstr ""
499
+
500
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:21
501
+ msgid "You can authorize your new domain by completing the following steps:"
502
+ msgstr ""
503
+
504
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:25
505
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
506
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
507
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
508
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
509
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
510
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
511
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
512
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
513
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
514
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
515
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
516
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
517
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
518
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
519
+ #, php-format
520
+ msgid "Navigate to %s"
521
+ msgstr ""
522
+
523
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:26
524
+ msgid "Log in with your credentials if you are not logged in"
525
+ msgstr ""
526
+
527
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:27
528
+ #, php-format
529
+ msgid "Find your old domain name: <b>%s</b>"
530
+ msgstr ""
531
+
532
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:28
533
+ #, php-format
534
+ msgid "Click on the %1$s next to your domain name."
535
+ msgstr ""
536
+
537
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:29
538
+ #, php-format
539
+ msgid "Authorize your %1$s by clicking on the following button."
540
+ msgstr ""
541
+
542
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:34
543
+ msgid "The authorized domain name of your site is fine!"
544
+ msgstr ""
545
+
546
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
547
  msgid "Fix Oauth Redirect URIs"
548
  msgstr ""
555
  msgid "Got it"
556
  msgstr ""
557
 
558
+ #: nextend-facebook-connect/admin/templates/global-settings.php:28
559
  #: nextend-facebook-connect/admin/templates/menu.php:8
560
  msgid "Global Settings"
561
  msgstr ""
562
 
563
+ #: nextend-facebook-connect/admin/templates/global-settings.php:31
564
  msgid "General"
565
  msgstr ""
566
 
567
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
568
+ msgid "Privacy"
569
+ msgstr ""
570
+
571
+ #: nextend-facebook-connect/admin/templates/global-settings.php:35
572
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
573
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
574
  msgid "Login Form"
575
  msgstr ""
576
 
577
+ #: nextend-facebook-connect/admin/templates/global-settings.php:39
578
  msgid "Comment"
579
  msgstr ""
580
 
586
  msgid "Support"
587
  msgstr ""
588
 
589
+ #: nextend-facebook-connect/admin/templates/header.php:23
590
  #: nextend-facebook-connect/admin/templates/menu.php:12
591
  msgid "Pro Addon"
592
  msgstr ""
618
  msgstr ""
619
 
620
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
621
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
622
  msgid "Deauthorize Pro Addon"
623
  msgstr ""
624
 
646
  msgid "Activating..."
647
  msgstr ""
648
 
649
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
650
  msgid "Pro Addon is installed and activated"
651
  msgstr ""
652
 
653
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:120
654
  msgid ""
655
  "You installed and activated the Pro Addon. If you don’t want to use it "
656
  "anymore, you can deauthorize using the button below."
705
  msgstr ""
706
 
707
  #: nextend-facebook-connect/admin/templates/providers.php:42
708
+ #: nextend-facebook-connect/admin/templates/settings/general.php:56
709
+ #: nextend-facebook-connect/admin/templates/settings/general.php:192
710
+ #: nextend-facebook-connect/includes/provider-admin.php:218
711
  msgid "Enabled"
712
  msgstr ""
713
 
720
  msgstr ""
721
 
722
  #: nextend-facebook-connect/admin/templates/providers.php:72
723
+ #: nextend-facebook-connect/includes/provider-admin.php:202
724
  msgid "Verify Settings"
725
  msgstr ""
726
 
727
  #: nextend-facebook-connect/admin/templates/providers.php:80
728
+ #: nextend-facebook-connect/includes/provider-admin.php:247
729
  msgid "Enable"
730
  msgstr ""
731
 
732
  #: nextend-facebook-connect/admin/templates/providers.php:92
733
+ #: nextend-facebook-connect/includes/provider-admin.php:255
734
  msgid "Disable"
735
  msgstr ""
736
 
738
  msgid "Import"
739
  msgstr ""
740
 
741
+ #: nextend-facebook-connect/admin/templates/providers.php:124
742
+ msgid "Stay Updated"
743
+ msgstr ""
744
+
745
+ #: nextend-facebook-connect/admin/templates/providers.php:125
746
+ msgid ""
747
+ "Receive info on the latest plugin updates and social provider related "
748
+ "changes."
749
+ msgstr ""
750
+
751
+ #: nextend-facebook-connect/admin/templates/providers.php:126
752
+ msgid "Enter your email address"
753
+ msgstr ""
754
+
755
+ #: nextend-facebook-connect/admin/templates/providers.php:130
756
+ msgid "Subscribe"
757
+ msgstr ""
758
+
759
+ #: nextend-facebook-connect/admin/templates/providers.php:146
760
  msgid "Saving..."
761
  msgstr ""
762
 
763
+ #: nextend-facebook-connect/admin/templates/providers.php:147
764
  msgid "Saving failed"
765
  msgstr ""
766
 
767
+ #: nextend-facebook-connect/admin/templates/providers.php:148
768
  msgid "Order Saved"
769
  msgstr ""
770
 
771
+ #: nextend-facebook-connect/admin/templates/providers.php:217
772
+ msgid "Successfully subscribed!"
773
+ msgstr ""
774
+
775
+ #: nextend-facebook-connect/admin/templates/providers.php:217
776
+ msgid ""
777
+ "We'll be bringing you all the latest news and updates about Social Login - "
778
+ "right to your inbox."
779
+ msgstr ""
780
+
781
+ #: nextend-facebook-connect/admin/templates/providers.php:224
782
+ msgid "The entered email address is invalid!"
783
+ msgstr ""
784
+
785
  #: nextend-facebook-connect/admin/templates/review.php:14
786
  msgid "Rate your experience!"
787
  msgstr ""
821
  msgstr ""
822
 
823
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
824
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84
825
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96
826
+ msgid "Register form"
827
  msgstr ""
828
 
829
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
837
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
838
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
839
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
840
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78
841
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144
842
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
843
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93
844
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159
845
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
846
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
847
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
848
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
849
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163
850
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
851
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:218
852
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
853
  msgid "Action:"
854
  msgstr ""
855
 
862
  msgstr ""
863
 
864
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
865
+ msgid "Register button style"
866
  msgstr ""
867
 
868
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
869
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:44
870
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
871
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
872
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
873
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96
874
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
875
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
876
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
877
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
878
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
879
  #: nextend-facebook-connect/widget.php:45
880
  msgid "Icon"
881
  msgstr ""
882
 
883
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
884
+ msgid "Login button"
 
885
  msgstr ""
886
 
887
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:23
888
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
889
  msgid "Show"
890
  msgstr ""
891
 
892
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:26
893
  msgid "Hide"
894
  msgstr ""
895
 
896
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
897
  #, php-format
898
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
899
  msgstr ""
900
 
901
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
902
  msgid "Discussion"
903
  msgstr ""
904
 
905
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
906
  msgid "Users must be registered and logged in to comment"
907
  msgstr ""
908
 
909
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:32
910
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
911
+ msgid "Button style"
912
  msgstr ""
913
 
914
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
936
  msgstr ""
937
 
938
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
 
939
  msgid "Registration notification sent to"
940
  msgstr ""
941
 
942
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:59
943
  msgid "WordPress default"
944
  msgstr ""
945
 
946
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:62
947
  msgid "Nobody"
948
  msgstr ""
949
 
950
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:68
 
 
 
 
951
  msgid "Admin"
952
  msgstr ""
953
 
954
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:71
955
  msgid "User and Admin"
956
  msgstr ""
957
 
958
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
 
959
  msgid "Debug mode"
960
  msgstr ""
961
 
962
+ #: nextend-facebook-connect/admin/templates/settings/general.php:61
963
+ msgid "Page for register flow"
964
+ msgstr ""
965
+
966
+ #: nextend-facebook-connect/admin/templates/settings/general.php:65
967
+ #: nextend-facebook-connect/admin/templates/settings/general.php:76
968
+ msgid "None"
969
+ msgstr ""
970
+
971
+ #: nextend-facebook-connect/admin/templates/settings/general.php:68
972
+ #, php-format
973
+ msgid ""
974
+ "First create a new page for register flow and insert the following "
975
+ "shortcode: %1$s then select this page above"
976
+ msgstr ""
977
+
978
+ #: nextend-facebook-connect/admin/templates/settings/general.php:72
979
+ msgid "OAuth redirect uri proxy page"
980
  msgstr ""
981
 
982
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
983
+ msgid ""
984
+ "If your wp-login.php is not available to handle the OAuth flow create a new "
985
+ "page and select it here. Otherwise don't select any page."
986
+ msgstr ""
987
+
988
+ #: nextend-facebook-connect/admin/templates/settings/general.php:85
989
+ msgid "Prevent external redirect overrides"
990
+ msgstr ""
991
+
992
+ #: nextend-facebook-connect/admin/templates/settings/general.php:91
993
+ msgid "Disable external redirects"
994
+ msgstr ""
995
+
996
+ #: nextend-facebook-connect/admin/templates/settings/general.php:98
997
  msgid "Default redirect url"
998
  msgstr ""
999
 
1000
+ #: nextend-facebook-connect/admin/templates/settings/general.php:111
1001
+ #: nextend-facebook-connect/admin/templates/settings/general.php:149
1002
  msgid "for Login"
1003
  msgstr ""
1004
 
1005
+ #: nextend-facebook-connect/admin/templates/settings/general.php:126
1006
+ #: nextend-facebook-connect/admin/templates/settings/general.php:164
1007
  msgid "for Register"
1008
  msgstr ""
1009
 
1010
+ #: nextend-facebook-connect/admin/templates/settings/general.php:136
1011
  msgid "Fixed redirect url"
1012
  msgstr ""
1013
 
1014
+ #: nextend-facebook-connect/admin/templates/settings/general.php:173
1015
+ msgid "Blacklisted redirects"
1016
+ msgstr ""
1017
+
1018
+ #: nextend-facebook-connect/admin/templates/settings/general.php:179
1019
+ msgid "If you want to blacklist redirect url params. One pattern per line."
1020
+ msgstr ""
1021
+
1022
+ #: nextend-facebook-connect/admin/templates/settings/general.php:184
1023
+ msgid "Support login restrictions"
1024
+ msgstr ""
1025
+
1026
+ #: nextend-facebook-connect/admin/templates/settings/general.php:194
1027
+ #, php-format
1028
+ msgid "Please visit to our %1$s to check what plugins are supported!"
1029
+ msgstr ""
1030
+
1031
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
1032
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1033
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1034
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1035
  msgid "Login form button style"
1036
  msgstr ""
1037
 
1038
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
1039
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
1040
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52
1041
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
1042
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
1043
  msgid "Login layout"
1044
  msgstr ""
1045
 
1046
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
1047
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
1048
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
1049
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109
1050
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1051
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124
1052
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1053
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
1054
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
1055
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
1056
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
1057
  msgid "Below"
1058
  msgstr ""
1059
 
1060
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
1061
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
1062
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
1063
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115
1064
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1065
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
1066
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1067
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
1068
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1069
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1070
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192
1071
  msgid "Below with separator"
1072
  msgstr ""
1073
 
1078
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
1079
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
1080
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
1081
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121
1082
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1083
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1084
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1085
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1086
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1087
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1088
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198
1089
  msgid "Above"
1090
  msgstr ""
1091
 
1092
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
1093
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
1094
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
1095
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127
1096
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1097
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1098
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1099
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1100
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1101
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1102
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204
1103
  msgid "Above with separator"
1104
  msgstr ""
1105
 
1129
  msgstr ""
1130
 
1131
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1132
+ #: nextend-facebook-connect/includes/userData.php:122
1133
  msgid "Registration Form"
1134
  msgstr ""
1135
 
1137
  msgid "Embedded login form"
1138
  msgstr ""
1139
 
1140
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69
1141
+ msgid "Sign Up form"
1142
  msgstr ""
1143
 
1144
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74
1145
+ msgid "No Connect button in Sign Up form"
1146
+ msgstr ""
1147
+
1148
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
1149
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1150
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92
1151
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46
1152
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51
1153
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104
1154
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
1155
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162
1156
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167
1157
+ msgid "Connect button on"
1158
+ msgstr ""
1159
+
1160
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84
1161
+ msgid "Sign Up form button style"
1162
+ msgstr ""
1163
+
1164
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103
1165
+ msgid "Sign Up layout"
1166
+ msgstr ""
1167
+
1168
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135
1169
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150
1170
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212
1171
+ msgid "Account details"
1172
+ msgstr ""
1173
+
1174
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140
1175
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155
1176
  msgid "No link buttons"
1177
  msgstr ""
1178
 
1179
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143
1180
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158
1181
  msgid "Link buttons after account details"
1182
  msgstr ""
1183
 
1184
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1185
+ #: nextend-facebook-connect/nextend-social-login.php:155
1186
+ msgid ""
1187
+ "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1188
+ "\"_blank\">Privacy Policy</a>"
1189
  msgstr ""
1190
 
1191
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1192
+ msgid "Store"
1193
  msgstr ""
1194
 
1195
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1196
+ msgid "First and last name"
1197
  msgstr ""
1198
 
1199
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1200
+ msgid "When not enabled, username will be randomly generated."
1201
  msgstr ""
1202
 
1203
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1204
+ #: nextend-social-login-pro/class-provider-extension.php:320
1205
+ msgid "Email"
1206
  msgstr ""
1207
 
1208
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1209
+ msgid "When not enabled, email will be empty."
1210
  msgstr ""
1211
 
1212
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1213
+ #: nextend-facebook-connect/includes/avatar.php:46
1214
+ msgid "Avatar"
1215
  msgstr ""
1216
 
1217
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1218
+ #: nextend-facebook-connect/includes/provider.php:985
1219
+ msgid "Access token"
1220
  msgstr ""
1221
 
1222
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1223
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38
1224
+ msgid "Login form"
1225
  msgstr ""
1226
 
1227
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1228
+ msgid "No Connect button in Login form"
1229
  msgstr ""
1230
 
1231
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89
1232
+ msgid "No Connect button in Register form"
1233
  msgstr ""
1234
 
1235
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
1236
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
1237
+ msgid "Register form button style"
1238
  msgstr ""
1239
 
1240
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118
1241
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
1242
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
1243
+ msgid "Register layout"
1244
  msgstr ""
1245
 
1246
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1247
+ msgid "Register Form"
1248
  msgstr ""
1249
 
1250
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43
1251
+ msgid "No Connect button in login form"
1252
  msgstr ""
1253
 
1254
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
1255
+ msgid "No Connect button in register form"
 
1256
  msgstr ""
1257
 
1258
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154
1259
+ msgid "Billing form"
1260
  msgstr ""
1261
 
1262
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159
1263
+ msgid "No Connect button in billing form"
 
1264
  msgstr ""
1265
 
1266
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
1267
+ msgid "Billing layout"
1268
  msgstr ""
1269
 
1270
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1271
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:222
1272
+ msgid "Link buttons on"
1273
+ msgstr ""
1274
+
1275
+ #: nextend-facebook-connect/admin/templates/test-connection.php:41
1276
+ #, php-format
1277
+ msgid "Network connection successful: %1$s"
1278
+ msgstr ""
1279
+
1280
+ #: nextend-facebook-connect/admin/templates/test-connection.php:47
1281
+ #, php-format
1282
+ msgid "Network connection failed: %1$s"
1283
+ msgstr ""
1284
+
1285
+ #: nextend-facebook-connect/admin/templates/test-connection.php:50
1286
+ msgid ""
1287
+ "Please contact with your hosting provider to resolve the network issue "
1288
+ "between your server and the provider."
1289
  msgstr ""
1290
 
1291
  #: nextend-facebook-connect/includes/avatar.php:47
1292
+ msgid "Manage Avatar"
1293
+ msgstr ""
1294
+
1295
+ #: nextend-facebook-connect/includes/avatar.php:48
1296
  #, php-format
1297
  msgid "Avatar <span class=\"count\">(%s)</span>"
1298
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1299
  msgstr[0] ""
1300
  msgstr[1] ""
1301
 
1302
+ #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1303
+ #: nextend-facebook-connect/includes/compat-wp-login.php:42
1304
+ #, php-format
1305
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1306
+ msgstr ""
1307
+
1308
+ #: nextend-facebook-connect/includes/compat-wp-login.php:97
1309
+ msgid "https://wordpress.org/"
1310
+ msgstr ""
1311
+
1312
+ #: nextend-facebook-connect/includes/compat-wp-login.php:98
1313
+ msgid "Powered by WordPress"
1314
+ msgstr ""
1315
+
1316
+ #. translators: %s: site title
1317
+ #: nextend-facebook-connect/includes/compat-wp-login.php:234
1318
+ #, php-format
1319
+ msgctxt "site"
1320
+ msgid "&larr; Back to %s"
1321
+ msgstr ""
1322
+
1323
+ #: nextend-facebook-connect/includes/provider-admin.php:196
1324
  msgid "Your configuration needs to be verified"
1325
  msgstr ""
1326
 
1327
+ #: nextend-facebook-connect/includes/provider-admin.php:197
1328
  msgid ""
1329
  "Before you can start letting your users register with your app it needs to "
1330
  "be tested. This test makes sure that no users will have troubles with the "
1333
  "are fine."
1334
  msgstr ""
1335
 
1336
+ #: nextend-facebook-connect/includes/provider-admin.php:203
1337
  msgid "Please save your changes to verify settings."
1338
  msgstr ""
1339
 
1340
+ #: nextend-facebook-connect/includes/provider-admin.php:211
1341
  msgid "Works Fine"
1342
  msgstr ""
1343
 
1344
+ #: nextend-facebook-connect/includes/provider-admin.php:225
1345
  #, php-format
1346
  msgid ""
1347
  "This provider is currently disabled, which means that users can’t register "
1348
  "or login via their %s account."
1349
  msgstr ""
1350
 
1351
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1352
  #, php-format
1353
  msgid ""
1354
  "This provider works fine, but you can test it again. If you don’t want to "
1355
  "let users register or login with %s anymore you can disable it."
1356
  msgstr ""
1357
 
1358
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1359
  #, php-format
1360
  msgid ""
1361
  "This provider is currently enabled, which means that users can register or "
1362
  "login via their %s account."
1363
  msgstr ""
1364
 
1365
+ #: nextend-facebook-connect/includes/provider-admin.php:239
1366
  msgid "Verify Settings Again"
1367
  msgstr ""
1368
 
1369
+ #: nextend-facebook-connect/includes/provider-admin.php:240
1370
  msgid "Please save your changes before verifying settings."
1371
  msgstr ""
1372
 
1373
+ #: nextend-facebook-connect/includes/provider.php:347
1374
+ #: nextend-facebook-connect/includes/provider.php:643
1375
+ #: nextend-facebook-connect/includes/provider.php:648
1376
  msgid "Authentication successful"
1377
  msgstr ""
1378
 
1379
+ #: nextend-facebook-connect/includes/provider.php:587
1380
+ #: nextend-facebook-connect/includes/user.php:109
1381
  msgid "Authentication error"
1382
  msgstr ""
1383
 
1384
+ #: nextend-facebook-connect/includes/provider.php:602
1385
  msgid "Unlink successful."
1386
  msgstr ""
1387
 
1388
+ #: nextend-facebook-connect/includes/provider.php:799
1389
+ #: nextend-facebook-connect/includes/provider.php:806
1390
  msgid "The test was successful"
1391
  msgstr ""
1392
 
1393
+ #: nextend-facebook-connect/includes/provider.php:852
1394
  msgid "Authentication failed"
1395
  msgstr ""
1396
 
1397
+ #: nextend-facebook-connect/includes/provider.php:977
1398
+ msgid "Identifier"
1399
+ msgstr ""
1400
+
1401
+ #: nextend-facebook-connect/includes/provider.php:993
1402
+ msgid "Profile picture"
1403
+ msgstr ""
1404
+
1405
+ #: nextend-facebook-connect/includes/user.php:69
1406
  #, php-format
1407
  msgid ""
1408
  "Your %1$s account is successfully linked with your account. Now you can sign "
1409
  "in with %2$s easily."
1410
  msgstr ""
1411
 
1412
+ #: nextend-facebook-connect/includes/user.php:72
1413
  #, php-format
1414
  msgid ""
1415
  "You have already linked a(n) %s account. Please unlink the current and then "
1416
  "you can link other %s account."
1417
  msgstr ""
1418
 
1419
+ #: nextend-facebook-connect/includes/user.php:77
1420
  #, php-format
1421
  msgid "This %s account is already linked to other user."
1422
  msgstr ""
1423
 
1424
+ #: nextend-facebook-connect/includes/userData.php:122
1425
+ msgid "Register For This Site!"
1426
+ msgstr ""
1427
+
1428
  #. translators: %2$s: PHP version
1429
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1430
  #, php-format
1439
  "version, the plugin is currently NOT ACTIVE."
1440
  msgstr ""
1441
 
1442
+ #: nextend-facebook-connect/nextend-social-login.php:77
1443
+ #: nextend-facebook-connect/nextend-social-login.php:84
1444
  #, php-format
1445
  msgid "Please update %1$s to version %2$s or newer."
1446
  msgstr ""
1447
 
1448
+ #: nextend-facebook-connect/nextend-social-login.php:77
1449
+ #: nextend-facebook-connect/nextend-social-login.php:84
1450
  msgid "Update now!"
1451
  msgstr ""
1452
 
1453
+ #: nextend-facebook-connect/nextend-social-login.php:91
1454
+ #, php-format
1455
+ msgid "Your domain name changed so you must authorize %1$s again."
1456
+ msgstr ""
1457
+
1458
+ #: nextend-facebook-connect/nextend-social-login.php:485
1459
  #, php-format
1460
  msgid ""
1461
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1462
  "Connect as it is not needed anymore."
1463
  msgstr ""
1464
 
1465
+ #: nextend-facebook-connect/nextend-social-login.php:496
1466
  #, php-format
1467
  msgid ""
1468
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1469
  "Connect as it is not needed anymore."
1470
  msgstr ""
1471
 
1472
+ #: nextend-facebook-connect/nextend-social-login.php:760
1473
+ #: nextend-facebook-connect/nextend-social-login.php:1106
 
 
 
 
1474
  msgid "Social Login"
1475
  msgstr ""
1476
 
1477
+ #: nextend-facebook-connect/nextend-social-login.php:1087
1478
  msgid "Social Accounts"
1479
  msgstr ""
1480
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1481
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1482
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1483
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1484
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1485
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
 
1486
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1487
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1488
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1501
  msgstr ""
1502
 
1503
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1504
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1505
  #, php-format
1506
  msgid ""
1507
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1508
  msgstr ""
1509
 
1510
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1511
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1512
  msgid "Click on \"Save Changes\""
1513
  msgstr ""
1514
 
1527
  msgid "How to get SSL for my WordPress site?"
1528
  msgstr ""
1529
 
1530
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
1531
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1532
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1533
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1541
  "%1$s App."
1542
  msgstr ""
1543
 
1544
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1545
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1546
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1547
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1548
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1549
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1550
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1551
  #, php-format
1552
  msgctxt "App creation"
1553
  msgid "Create %s"
1554
  msgstr ""
1555
 
1556
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1557
  msgid "Click on the \"Add a New App\" button"
1558
  msgstr ""
1559
 
1560
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1561
  msgid "Fill \"Display Name\" and \"Contact Email\""
1562
  msgstr ""
1563
 
1564
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1565
  msgid "Click on blue \"Create App ID\" button"
1566
  msgstr ""
1567
 
1568
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1569
  msgid ""
1570
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1571
  "button"
1572
  msgstr ""
1573
 
1574
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1575
  msgid "Choose Web"
1576
  msgstr ""
1577
 
1578
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1579
  #, php-format
1580
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1581
  msgstr ""
1582
 
1583
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1584
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
1585
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1586
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
1587
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
1588
  msgid "Click on \"Save\""
1589
  msgstr ""
1590
 
1591
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1592
  msgid "In the left sidebar, click on \"Facebook Login\""
1593
  msgstr ""
1594
 
1595
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1596
  msgid "In the top of the left sidebar, click on \"Settings\""
1597
  msgstr ""
1598
 
1599
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1600
  msgid ""
1601
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1602
  "click on the \"Show\" button. These will be needed in plugin's settings."
1603
  msgstr ""
1604
 
1605
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1606
  msgid "Enter your domain name to the App Domains"
1607
  msgstr ""
1608
 
1609
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1610
  msgid ""
1611
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1612
  "accessible privacy policy that explains what data you are collecting and how "
1613
  "you will use that data."
1614
  msgstr ""
1615
 
1616
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1617
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1618
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1619
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1620
  msgid "Save your changes."
1621
  msgstr ""
1622
 
1623
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1624
  msgid ""
1625
  "Your application is currently private, which means that only you can log in "
1626
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1627
  msgstr ""
1628
 
1629
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1630
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
1631
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1632
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1633
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1634
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1635
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1636
  #, php-format
1637
  msgid "I am done setting up my %s"
1768
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1769
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1770
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1771
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1772
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1773
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1774
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1775
  msgid "Required"
1780
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1781
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1782
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1783
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1784
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1785
  #, php-format
1786
  msgid ""
1804
  msgid "Unlink account from <b>Facebook</b>"
1805
  msgstr ""
1806
 
1807
+ #: nextend-facebook-connect/providers/facebook/facebook.php:154
1808
+ #: nextend-facebook-connect/providers/google/google.php:144
1809
+ #: nextend-facebook-connect/providers/twitter/twitter.php:105
1810
+ #: nextend-social-login-pro/providers/amazon/amazon.php:63
1811
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1812
+ #: nextend-social-login-pro/providers/paypal/paypal.php:125
1813
+ #: nextend-social-login-pro/providers/vk/vk.php:60
1814
  #, php-format
1815
  msgid ""
1816
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1817
  msgstr ""
1818
 
1819
+ #: nextend-facebook-connect/providers/facebook/facebook.php:333
1820
+ #: nextend-social-login-pro/providers/paypal/paypal.php:201
1821
+ #, php-format
1822
+ msgid "Required scope: %1$s"
1823
+ msgstr ""
1824
+
1825
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1826
+ msgid "Button skin"
1827
+ msgstr ""
1828
+
1829
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1830
+ msgid "Uniform"
1831
+ msgstr ""
1832
+
1833
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1834
+ msgid "Light"
1835
+ msgstr ""
1836
+
1837
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:20
1838
+ msgid "Dark"
1839
+ msgstr ""
1840
+
1841
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1842
  msgid "Click on the \"Credentials\" in the left hand menu"
1843
  msgstr ""
1848
  msgstr ""
1849
 
1850
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1851
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1852
  #, php-format
1853
  msgid ""
1854
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1857
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1858
  msgid ""
1859
  "If you don't have a project yet, you'll need to create one. You can do this "
1860
+ "by clicking on the blue \"Create project\" button on the right side! ( If "
1861
+ "you already have a project, click on the name of your project in the "
1862
+ "dashboard instead, which will bring up a modal and click New Project. )"
1863
  msgstr ""
1864
 
1865
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1866
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
1867
+ msgid "Click the Create button."
1868
  msgstr ""
1869
 
1870
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
1871
+ msgid "Name your project and then click on the Create button again"
1872
  msgstr ""
1873
 
1874
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1875
+ msgid "Once you have a project, you'll end up in the dashboard."
 
 
1876
  msgstr ""
1877
 
1878
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1879
  msgid ""
1880
+ "Click on the \"Credentials\" in the left hand menu to create new API "
1881
+ "credentials"
1882
  msgstr ""
1883
 
1884
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1885
+ msgid "Select \"OAuth client ID\" from the dropdown."
 
 
 
1886
  msgstr ""
1887
 
1888
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1889
+ msgid ""
1890
+ "If you're prompted to set a product name, do so. Provide the Privacy Policy "
1891
+ "URL as well then click on the save button"
1892
  msgstr ""
1893
 
1894
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1895
+ msgid "Your application type should be \"Web application\""
1896
+ msgstr ""
1897
+
1898
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1899
  msgid "Name your application"
1900
  msgstr ""
1901
 
1902
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1903
  msgid "Click on the Create button"
1904
  msgstr ""
1905
 
1906
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
1907
  msgid ""
1908
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1909
  "the Credentials in the left hand menu and select your app by clicking on its "
1926
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
1927
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1928
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
1929
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
1930
  msgid "Client ID"
1931
  msgstr ""
1932
 
1936
  msgid "Client Secret"
1937
  msgstr ""
1938
 
1939
+ #: nextend-facebook-connect/providers/google/google.php:89
1940
  msgid "Continue with <b>Google</b>"
1941
  msgstr ""
1942
 
1943
+ #: nextend-facebook-connect/providers/google/google.php:90
1944
  msgid "Link account with <b>Google</b>"
1945
  msgstr ""
1946
 
1947
+ #: nextend-facebook-connect/providers/google/google.php:91
1948
  msgid "Unlink account from <b>Google</b>"
1949
  msgstr ""
1950
 
1951
+ #: nextend-facebook-connect/providers/google/google.php:329
1952
+ #, php-format
1953
+ msgid "Required API: %1$s"
1954
+ msgstr ""
1955
+
1956
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1957
+ msgid "Find your App and click on the Details button"
 
1958
  msgstr ""
1959
 
1960
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1961
+ msgid ""
1962
+ "The Edit button can be found on the App details tab. Click on it and select "
1963
+ "Edit details"
1964
  msgstr ""
1965
 
1966
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
1967
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
1968
  #, php-format
1969
+ msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
1970
  msgstr ""
1971
 
1972
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1973
+ #, php-format
1974
+ msgid "Log in with your %s credentials if you are not logged in yet"
1975
  msgstr ""
1976
 
1977
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1978
+ msgid ""
1979
+ "If you don't have a developer account yet, please apply one by filling all "
1980
+ "the required details! This is required for the next steps!"
1981
  msgstr ""
1982
 
1983
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1984
  #, php-format
1985
  msgid ""
1986
+ "Once your developer account is complete, navigate back to %s if you aren't "
1987
+ "already there!"
1988
+ msgstr ""
1989
+
1990
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1991
+ #, php-format
1992
+ msgid ""
1993
+ "Fill the App name, Application description fields. Then enter your site's "
1994
+ "URL to the Website URL field: <b>%s</b>"
1995
  msgstr ""
1996
 
1997
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1998
+ msgid "Tick the checkbox next to Enable Sign in with Twitter!"
1999
  msgstr ""
2000
 
2001
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2002
  msgid ""
2003
+ "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us how "
2004
+ "this app will be used” fields!"
2005
  msgstr ""
2006
 
2007
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2008
+ msgid "Read the Developer Terms and click the Create button again!"
2009
+ msgstr ""
2010
+
2011
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2012
+ msgid "Select the Permissions tab and click Edit."
2013
+ msgstr ""
2014
+
2015
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2016
  msgid ""
2017
+ "Tick the Request email address from users under the Additional permissions "
2018
+ "section and click Save."
2019
+ msgstr ""
2020
+
2021
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2022
+ msgid "Go to the Keys and tokens tab and find the API key and API secret key"
2023
  msgstr ""
2024
 
2025
  #: nextend-facebook-connect/providers/twitter/admin/import.php:9
2031
  msgstr ""
2032
 
2033
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2034
+ msgid "API Key"
2035
  msgstr ""
2036
 
2037
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2038
+ msgid "API secret key"
2039
+ msgstr ""
2040
+
2041
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2042
+ msgid "Profile image size"
2043
  msgstr ""
2044
 
2045
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2046
+ msgid "Original"
2047
+ msgstr ""
2048
+
2049
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2050
  msgid "Continue with <b>Twitter</b>"
2051
  msgstr ""
2052
 
2053
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2054
  msgid "Link account with <b>Twitter</b>"
2055
  msgstr ""
2056
 
2057
+ #: nextend-facebook-connect/providers/twitter/twitter.php:74
2058
  msgid "Unlink account from <b>Twitter</b>"
2059
  msgstr ""
2060
 
2079
  msgid "Show unlink buttons"
2080
  msgstr ""
2081
 
2082
+ #: nextend-social-login-pro/class-provider-extension.php:115
2083
  msgid "Social login is not allowed with this role!"
2084
  msgstr ""
2085
 
 
2086
  #: nextend-social-login-pro/class-provider-extension.php:211
2087
+ #: nextend-social-login-pro/class-provider-extension.php:214
2088
+ #: nextend-social-login-pro/class-provider-extension.php:220
2089
+ #: nextend-social-login-pro/class-provider-extension.php:227
2090
+ #: nextend-social-login-pro/class-provider-extension.php:298
2091
+ #: nextend-social-login-pro/class-provider-extension.php:301
2092
+ #: nextend-social-login-pro/class-provider-extension.php:305
2093
  msgid "ERROR"
2094
  msgstr ""
2095
 
2096
+ #: nextend-social-login-pro/class-provider-extension.php:211
2097
  msgid "Please enter a username."
2098
  msgstr ""
2099
 
2100
+ #: nextend-social-login-pro/class-provider-extension.php:214
2101
  msgid ""
2102
  "This username is invalid because it uses illegal characters. Please enter a "
2103
  "valid username."
2104
  msgstr ""
2105
 
2106
+ #: nextend-social-login-pro/class-provider-extension.php:220
2107
  msgid "This username is already registered. Please choose another one."
2108
  msgstr ""
2109
 
2110
+ #: nextend-social-login-pro/class-provider-extension.php:227
2111
  msgid "Sorry, that username is not allowed."
2112
  msgstr ""
2113
 
2114
+ #: nextend-social-login-pro/class-provider-extension.php:245
2115
+ msgid "Username"
2116
+ msgstr ""
2117
+
2118
+ #: nextend-social-login-pro/class-provider-extension.php:298
2119
  msgid "Please enter an email address."
2120
  msgstr ""
2121
 
2122
+ #: nextend-social-login-pro/class-provider-extension.php:301
2123
  msgid "The email address isn&#8217;t correct."
2124
  msgstr ""
2125
 
2126
+ #: nextend-social-login-pro/class-provider-extension.php:305
2127
  msgid "This email is already registered, please choose another one."
2128
  msgstr ""
2129
 
2130
+ #: nextend-social-login-pro/class-provider-extension.php:325
2131
+ msgid "Registration confirmation will be emailed to you."
2132
+ msgstr ""
2133
+
2134
+ #: nextend-social-login-pro/class-provider-extension.php:376
2135
  msgid "<strong>ERROR</strong>: Please enter a password."
2136
  msgstr ""
2137
 
2138
+ #: nextend-social-login-pro/class-provider-extension.php:382
2139
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
2140
  msgstr ""
2141
 
2142
+ #: nextend-social-login-pro/class-provider-extension.php:388
2143
  msgid ""
2144
  "<strong>ERROR</strong>: Please enter the same password in both password "
2145
  "fields."
2146
  msgstr ""
2147
 
2148
+ #: nextend-social-login-pro/class-provider-extension.php:405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2149
  msgid "Password"
2150
  msgstr ""
2151
 
2152
+ #: nextend-social-login-pro/class-provider-extension.php:415
2153
  msgid "Strength indicator"
2154
  msgstr ""
2155
 
2156
+ #: nextend-social-login-pro/class-provider-extension.php:420
2157
  msgid "Confirm use of weak password"
2158
  msgstr ""
2159
 
2160
+ #: nextend-social-login-pro/class-provider-extension.php:426
2161
  msgid "Confirm password"
2162
  msgstr ""
2163
 
2164
+ #: nextend-social-login-pro/class-provider-extension.php:438
2165
  #, php-format
2166
  msgid ""
2167
  "This email is already registered, please login in to your account to link "
2186
  msgstr ""
2187
 
2188
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2189
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
2190
  #, php-format
2191
  msgid "Visit %s"
2192
  msgstr ""
2193
 
2194
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2195
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2196
  msgid ""
2197
  "On the right side, under \"Manage\", hover over the gear icon and select "
2198
  "\"Web Settings\" option."
2199
  msgstr ""
2200
 
2201
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2202
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2203
  msgid "Click \"Edit\"."
2204
  msgstr ""
2205
 
2206
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
2207
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2208
  #, php-format
2209
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2210
  msgstr ""
2211
 
2212
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2213
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2214
  #, php-format
2215
  msgid ""
2216
  "To allow your visitors to log in with their %1$s account, first you must "
2220
  "%1$s App."
2221
  msgstr ""
2222
 
2223
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2224
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2225
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2226
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2227
  #, php-format
2228
  msgid "Log in with your %s credentials if you are not logged in."
2229
  msgstr ""
2230
 
2231
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2232
  msgid ""
2233
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2234
  "do this by clicking on the orange \"Create a New Security Profile\" button "
2235
  "on the left side."
2236
  msgstr ""
2237
 
2238
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2239
  msgid ""
2240
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
2241
  "\"Consent Privacy Notice URL\"."
2242
  msgstr ""
2243
 
2244
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2245
  msgid "Once you filled all the required fields, click \"Save\"."
2246
  msgstr ""
2247
 
2248
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2249
  #, php-format
2250
  msgid ""
2251
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
2252
  msgstr ""
2253
 
2254
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2255
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
2256
  msgid "When all fields are filled, click \"Save\"."
2257
  msgstr ""
2258
 
2259
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2260
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
2261
  msgstr ""
2262
 
2263
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2264
  msgid ""
2265
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
2266
  "page."
2278
  msgid "Unlink account from <b>Amazon</b>"
2279
  msgstr ""
2280
 
2281
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2282
+ msgid "Click on the App"
2283
+ msgstr ""
2284
+
2285
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
2286
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
2287
  #, php-format
2322
  "Application Permissions"
2323
  msgstr ""
2324
 
2325
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:62
2326
  msgid "Continue with <b>LinkedIn</b>"
2327
  msgstr ""
2328
 
2329
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2330
  msgid "Link account with <b>LinkedIn</b>"
2331
  msgstr ""
2332
 
2333
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:64
2334
  msgid "Unlink account from <b>LinkedIn</b>"
2335
  msgstr ""
2336
 
2337
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
2338
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2339
+ msgid "Scroll down to \"REST API apps\"."
2340
+ msgstr ""
2341
+
2342
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2343
+ #, php-format
2344
+ msgid "Click on the name of your %s App."
2345
+ msgstr ""
2346
+
2347
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2348
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2349
+ msgid "Select the \"Live\" option on the top-right side. "
2350
+ msgstr ""
2351
+
2352
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13
2353
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2354
+ msgid ""
2355
+ "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" heading "
2356
+ "and click \"Show\"."
2357
+ msgstr ""
2358
+
2359
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14
2360
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
2361
+ #, php-format
2362
+ msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2363
+ msgstr ""
2364
+
2365
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
2366
+ msgid "Click the \"Create App\" button."
2367
+ msgstr ""
2368
+
2369
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
2370
+ msgid "Fill the \"App Name\" field and click \"Create App\" button."
2371
+ msgstr ""
2372
+
2373
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
2374
+ msgid ""
2375
+ "Scroll down to \"App feature options\" section and tick \"Log In with PayPal"
2376
+ "\"."
2377
+ msgstr ""
2378
+
2379
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
2380
+ msgid ""
2381
+ "Click \"Advanced Options\" which can be found at the end of text \"Log In "
2382
+ "with PayPal\"."
2383
+ msgstr ""
2384
+
2385
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
2386
+ msgid "Tick \"Full name\" and \"Email address\"."
2387
+ msgstr ""
2388
+
2389
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27
2390
+ msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
2391
+ msgstr ""
2392
+
2393
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29
2394
+ msgid ""
2395
+ "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary "
2396
+ "\"Client ID\" and \"Secret\"! ( Make sure you are in \"Live\" mode and not "
2397
+ "\"Sandbox\" )."
2398
+ msgstr ""
2399
+
2400
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
2401
+ msgid "Secret"
2402
+ msgstr ""
2403
+
2404
+ #: nextend-social-login-pro/providers/paypal/paypal.php:99
2405
+ msgid "Continue with <b>PayPal</b>"
2406
+ msgstr ""
2407
+
2408
+ #: nextend-social-login-pro/providers/paypal/paypal.php:100
2409
+ msgid "Link account with <b>PayPal</b>"
2410
+ msgstr ""
2411
+
2412
+ #: nextend-social-login-pro/providers/paypal/paypal.php:101
2413
+ msgid "Unlink account from <b>PayPal</b>"
2414
+ msgstr ""
2415
+
2416
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
2417
  msgid "Click on the Manage button at the App"
2418
  msgstr ""
2500
  msgid "Unlink account from <b>VK</b>"
2501
  msgstr ""
2502
 
2503
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2504
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2505
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:11
2506
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:8
2507
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
2508
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
2509
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
2510
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
2511
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
2512
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
2513
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
2514
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
2515
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
2516
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
2517
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
2518
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
2519
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
2520
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
2521
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
2522
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
2523
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
2524
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
2525
  msgid "OR"
2526
  msgstr "OU"
2527
 
2528
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
2529
+ #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:1
2530
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2531
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2532
  msgid "Social accounts"
languages/nextend-facebook-connect-hu_HU.mo CHANGED
Binary file
languages/nextend-facebook-connect-hu_HU.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2018-05-08 15:04+0200\n"
5
- "PO-Revision-Date: 2018-05-08 15:05+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.7\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -26,47 +26,138 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
- #: nextend-facebook-connect/admin/admin.php:187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  #, php-format
31
  msgid "%s needs json_decode function."
32
  msgstr "A %s-nak szüksége van a json_decode függvényre."
33
 
34
- #: nextend-facebook-connect/admin/admin.php:187
35
  msgid "Please contact your server administrator and ask for solution!"
36
  msgstr ""
37
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
38
 
39
- #: nextend-facebook-connect/admin/admin.php:214
40
- #: nextend-facebook-connect/admin/admin.php:256
41
  msgid "Settings saved."
42
  msgstr "Beállítások elmentve."
43
 
44
- #: nextend-facebook-connect/admin/admin.php:223
45
  msgid "The authorization was successful"
46
  msgstr "Az engedélyezés sikeres volt"
47
 
48
- #: nextend-facebook-connect/admin/admin.php:234
49
  msgid "Deauthorize completed."
50
  msgstr "A engedély visszavonása befejeződött."
51
 
52
- #: nextend-facebook-connect/admin/admin.php:374
53
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
54
  #: nextend-facebook-connect/admin/templates/providers.php:84
55
  #: nextend-facebook-connect/admin/templates/providers.php:96
56
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
57
  msgid "Settings"
58
  msgstr "Beállítások"
59
 
60
- #: nextend-facebook-connect/admin/admin.php:448
61
- #: nextend-facebook-connect/includes/oauth2.php:131
62
- #: nextend-facebook-connect/includes/oauth2.php:273
63
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
64
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:155
65
  #, php-format
66
  msgid "Unexpected response: %s"
67
  msgstr ""
68
 
69
- #: nextend-facebook-connect/admin/admin.php:506
70
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
71
  #, php-format
72
  msgid ""
@@ -74,93 +165,146 @@ msgid ""
74
  "URIs in the related social applications."
75
  msgstr ""
76
 
77
- #: nextend-facebook-connect/admin/admin.php:507
78
  msgid "Fix Error"
79
  msgstr ""
80
 
81
- #: nextend-facebook-connect/admin/admin.php:507
82
  msgid "Oauth Redirect URI"
83
  msgstr ""
84
 
85
- #: nextend-facebook-connect/admin/admin.php:517
86
  #, php-format
87
  msgid ""
88
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
89
  "display Social Login buttons in %2$s login form!"
90
  msgstr ""
91
 
92
- #: nextend-facebook-connect/admin/admin.php:518
93
  msgid "Dismiss and check Pro Addon"
94
  msgstr ""
95
 
96
- #: nextend-facebook-connect/admin/admin.php:518
97
  msgid "Dismiss"
98
  msgstr ""
99
 
100
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  msgid "Login label"
102
  msgstr "Bejelentkezés felirat"
103
 
104
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
105
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:90
106
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
107
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
108
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
 
109
  msgid "Reset to default"
110
  msgstr "Alapbeállítás visszaállítása"
111
 
112
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
113
  msgid "Link label"
114
  msgstr "Profil összekapcsolás felirat"
115
 
116
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:96
117
  msgid "Unlink label"
118
  msgstr "Profile szétkapcsolás felirat"
119
 
120
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
121
  msgid "Default button"
122
  msgstr "Alap gomb"
123
 
124
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:123
125
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
126
  msgid "Use custom button"
127
  msgstr "Egyedi gomb használata"
128
 
129
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
130
  #, php-format
131
  msgid "Use the %s in your custom button's code to make the label show up."
132
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
133
 
134
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:138
135
  msgid "Icon button"
136
  msgstr "Ikon gomb"
137
 
138
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:169
139
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
140
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:90
141
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
142
- #: nextend-facebook-connect/admin/templates/settings/comment.php:56
143
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
144
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
145
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
146
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
147
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:86
 
 
148
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
149
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
150
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
151
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
152
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
153
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
154
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
 
155
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
156
  msgid "Save Changes"
157
  msgstr "Változtatások Mentése"
158
 
159
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
160
  #: nextend-facebook-connect/admin/templates/providers.php:64
 
161
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
162
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
 
163
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
 
164
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
165
  msgid "Getting Started"
166
  msgstr "Első Lépések"
@@ -190,7 +334,18 @@ msgid "Fallback username prefix on register"
190
  msgstr ""
191
 
192
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
193
- msgid "Used when username is invalid"
 
 
 
 
 
 
 
 
 
 
 
194
  msgstr ""
195
 
196
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
@@ -245,9 +400,9 @@ msgstr "Fiók csatlakoztatása, ha regisztráció esetén már létezik a fiók"
245
 
246
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
247
  #: nextend-facebook-connect/admin/templates/providers.php:39
248
- #: nextend-facebook-connect/admin/templates/settings/general.php:55
249
- #: nextend-facebook-connect/admin/templates/settings/general.php:69
250
- #: nextend-facebook-connect/includes/provider-admin.php:207
251
  msgid "Disabled"
252
  msgstr "Kikapcsolva"
253
 
@@ -265,19 +420,25 @@ msgstr "Alap szerepkör, aki ezzel a szolgáltatóval registrál"
265
 
266
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
267
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
268
- #: nextend-facebook-connect/admin/templates/settings/comment.php:40
269
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
270
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
271
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
 
 
 
272
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
273
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
274
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
 
 
 
275
  #: nextend-facebook-connect/widget.php:40
276
  msgid "Default"
277
  msgstr "Alapbeállítás"
278
 
279
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
280
- #: nextend-social-login-pro/class-provider-extension.php:409
281
  msgid "Register"
282
  msgstr ""
283
 
@@ -293,11 +454,6 @@ msgstr ""
293
  msgid "Store in meta key"
294
  msgstr ""
295
 
296
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:80
297
- #, php-format
298
- msgid "Required scope: %1$s"
299
- msgstr ""
300
-
301
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
302
  msgid "Shortcode"
303
  msgstr ""
@@ -318,6 +474,84 @@ msgstr "Gomb képpel"
318
  msgid "Image url"
319
  msgstr "Kép URL"
320
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
322
  msgid "Fix Oauth Redirect URIs"
323
  msgstr ""
@@ -330,22 +564,26 @@ msgstr ""
330
  msgid "Got it"
331
  msgstr ""
332
 
333
- #: nextend-facebook-connect/admin/templates/global-settings.php:26
334
  #: nextend-facebook-connect/admin/templates/menu.php:8
335
  msgid "Global Settings"
336
  msgstr "Általános beállítások"
337
 
338
- #: nextend-facebook-connect/admin/templates/global-settings.php:29
339
  msgid "General"
340
  msgstr ""
341
 
342
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
 
 
 
 
343
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
344
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
345
  msgid "Login Form"
346
  msgstr ""
347
 
348
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
349
  msgid "Comment"
350
  msgstr ""
351
 
@@ -357,7 +595,7 @@ msgstr "Dokumentáció"
357
  msgid "Support"
358
  msgstr "Támogatás"
359
 
360
- #: nextend-facebook-connect/admin/templates/header.php:20
361
  #: nextend-facebook-connect/admin/templates/menu.php:12
362
  msgid "Pro Addon"
363
  msgstr "Pro Kiegészítő"
@@ -394,7 +632,7 @@ msgstr ""
394
  "a Pro funkciókat aktiválnod kell a Pro Kiegészítőt."
395
 
396
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
397
- #: nextend-facebook-connect/admin/templates/pro-addon.php:215
398
  msgid "Deauthorize Pro Addon"
399
  msgstr "Pro kiegészítő deaktiválása"
400
 
@@ -424,30 +662,11 @@ msgstr "Pro Kiegészítő telepítése"
424
  msgid "Activating..."
425
  msgstr "Aktiválás..."
426
 
427
- #: nextend-facebook-connect/admin/templates/pro-addon.php:126
428
- msgid "Authorize your Pro Addon"
429
- msgstr "Aktiváld a Pro Kiegészítődet"
430
-
431
- #: nextend-facebook-connect/admin/templates/pro-addon.php:127
432
- msgid ""
433
- "To be able to use the Pro features, you need to authorize Nextend Social "
434
- "Connect Pro Addon. You can do this by clicking on the Authorize button below "
435
- "then select the related purchase."
436
- msgstr ""
437
-
438
- #: nextend-facebook-connect/admin/templates/pro-addon.php:132
439
- msgid "Authorize"
440
- msgstr "Aktiválás"
441
-
442
- #: nextend-facebook-connect/admin/templates/pro-addon.php:189
443
- msgid "License key"
444
- msgstr "Licensz kulcs"
445
-
446
- #: nextend-facebook-connect/admin/templates/pro-addon.php:206
447
  msgid "Pro Addon is installed and activated"
448
  msgstr "A Pro Kiegészítő telepítve és aktiválva"
449
 
450
- #: nextend-facebook-connect/admin/templates/pro-addon.php:208
451
  msgid ""
452
  "You installed and activated the Pro Addon. If you don’t want to use it "
453
  "anymore, you can deauthorize using the button below."
@@ -508,9 +727,9 @@ msgid "Not Verified"
508
  msgstr ""
509
 
510
  #: nextend-facebook-connect/admin/templates/providers.php:42
511
- #: nextend-facebook-connect/admin/templates/settings/general.php:58
512
- #: nextend-facebook-connect/admin/templates/settings/general.php:72
513
- #: nextend-facebook-connect/includes/provider-admin.php:210
514
  msgid "Enabled"
515
  msgstr "Bekapcsolva"
516
 
@@ -523,17 +742,17 @@ msgid "Upgrade Now"
523
  msgstr ""
524
 
525
  #: nextend-facebook-connect/admin/templates/providers.php:72
526
- #: nextend-facebook-connect/includes/provider-admin.php:194
527
  msgid "Verify Settings"
528
  msgstr ""
529
 
530
  #: nextend-facebook-connect/admin/templates/providers.php:80
531
- #: nextend-facebook-connect/includes/provider-admin.php:239
532
  msgid "Enable"
533
  msgstr "Bekapcsolás"
534
 
535
  #: nextend-facebook-connect/admin/templates/providers.php:92
536
- #: nextend-facebook-connect/includes/provider-admin.php:247
537
  msgid "Disable"
538
  msgstr "Kikapcsolás"
539
 
@@ -541,18 +760,52 @@ msgstr "Kikapcsolás"
541
  msgid "Import"
542
  msgstr "Importálás"
543
 
544
- #: nextend-facebook-connect/admin/templates/providers.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
545
  msgid "Saving..."
546
  msgstr "Mentés..."
547
 
548
- #: nextend-facebook-connect/admin/templates/providers.php:123
549
  msgid "Saving failed"
550
  msgstr "A mentés nem sikerült"
551
 
552
- #: nextend-facebook-connect/admin/templates/providers.php:124
553
  msgid "Order Saved"
554
  msgstr "Sorrend elmentve"
555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
556
  #: nextend-facebook-connect/admin/templates/review.php:14
557
  msgid "Rate your experience!"
558
  msgstr ""
@@ -592,8 +845,12 @@ msgid "Ok, you deserve it"
592
  msgstr ""
593
 
594
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
595
- msgid "BuddyPress register form"
596
- msgstr ""
 
 
 
 
597
 
598
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
599
  msgid "No Connect button"
@@ -606,15 +863,19 @@ msgstr ""
606
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
607
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
608
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
609
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
610
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
611
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
612
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
613
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
614
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
615
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
616
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
617
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
 
 
 
 
618
  msgid "Action:"
619
  msgstr "Action:"
620
 
@@ -627,52 +888,62 @@ msgid "Connect button after register"
627
  msgstr ""
628
 
629
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
630
- msgid "BuddyPress register button style"
631
- msgstr ""
 
 
632
 
633
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
634
- #: nextend-facebook-connect/admin/templates/settings/comment.php:46
635
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
636
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
637
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
 
 
 
638
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
639
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
640
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
641
  #: nextend-facebook-connect/widget.php:45
642
  msgid "Icon"
643
  msgstr "Imon"
644
 
645
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
646
- #: nextend-facebook-connect/admin/templates/settings/comment.php:22
647
- msgid "Comment login button"
648
- msgstr "Belépés gomb a kommenteknél"
 
649
 
650
- #: nextend-facebook-connect/admin/templates/settings/comment.php:25
 
651
  msgid "Show"
652
  msgstr "Megjelenít"
653
 
654
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
655
  msgid "Hide"
656
  msgstr "Elrejt"
657
 
658
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
659
  #, php-format
660
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
661
  msgstr ""
662
  "Ahhoz, hogy ez a funkció működjön, be kell kapcsolnod a ' %1$s > %2$s > %3$s "
663
  "'-t."
664
 
665
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
666
  msgid "Discussion"
667
  msgstr ""
668
 
669
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
670
  msgid "Users must be registered and logged in to comment"
671
  msgstr ""
672
 
673
- #: nextend-facebook-connect/admin/templates/settings/comment.php:34
674
- msgid "Comment button style"
675
- msgstr "Gomb stílusa a kommenteknél"
 
 
 
676
 
677
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
678
  msgid "Target window"
@@ -699,86 +970,144 @@ msgid "Allow registration with Social login"
699
  msgstr ""
700
 
701
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
702
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
703
  msgid "Registration notification sent to"
704
  msgstr ""
705
 
706
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
707
  msgid "WordPress default"
708
  msgstr ""
709
 
710
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
711
  msgid "Nobody"
712
  msgstr ""
713
 
714
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
715
- msgid "User"
716
- msgstr ""
717
-
718
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
719
  msgid "Admin"
720
  msgstr ""
721
 
722
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
723
  msgid "User and Admin"
724
  msgstr ""
725
 
726
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
727
- #: nextend-facebook-connect/admin/templates/settings/general.php:52
728
  msgid "Debug mode"
729
  msgstr "Debug mód"
730
 
731
- #: nextend-facebook-connect/admin/templates/settings/general.php:64
732
- msgid "Store Avatar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
733
  msgstr ""
734
 
735
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
736
  msgid "Default redirect url"
737
  msgstr ""
738
 
739
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
740
- #: nextend-facebook-connect/admin/templates/settings/general.php:130
741
  #, fuzzy
742
  #| msgid "Social Login"
743
  msgid "for Login"
744
  msgstr "Közösségi belépés"
745
 
746
- #: nextend-facebook-connect/admin/templates/settings/general.php:107
747
- #: nextend-facebook-connect/admin/templates/settings/general.php:145
748
  msgid "for Register"
749
  msgstr ""
750
 
751
- #: nextend-facebook-connect/admin/templates/settings/general.php:117
752
  #, fuzzy
753
  #| msgid "Fixed redirect url for login"
754
  msgid "Fixed redirect url"
755
  msgstr "Fix átirányítási link belépésnél"
756
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
757
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
758
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
 
759
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
760
  msgid "Login form button style"
761
  msgstr "Login gomb stílusa"
762
 
763
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
764
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
 
765
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
 
766
  msgid "Login layout"
767
  msgstr "Login elrendezése"
768
 
769
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
770
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
771
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
 
 
 
772
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
773
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
 
 
 
774
  msgid "Below"
775
  msgstr "Alul"
776
 
777
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
778
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
779
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
 
 
 
780
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
781
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
 
 
 
782
  msgid "Below with separator"
783
  msgstr "Alul, elválasztóval"
784
 
@@ -789,16 +1118,28 @@ msgstr "Alul lebegve"
789
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
790
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
791
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
 
 
 
792
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
793
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
 
 
 
794
  msgid "Above"
795
  msgstr "Felül"
796
 
797
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
798
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
799
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
 
 
 
800
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
801
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
 
 
 
802
  msgid "Above with separator"
803
  msgstr "Felül, elválasztóval"
804
 
@@ -828,7 +1169,7 @@ msgid "Hide login buttons"
828
  msgstr ""
829
 
830
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
831
- #: nextend-social-login-pro/class-provider-extension.php:328
832
  msgid "Registration Form"
833
  msgstr ""
834
 
@@ -836,118 +1177,221 @@ msgstr ""
836
  msgid "Embedded login form"
837
  msgstr ""
838
 
839
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:68
840
- msgid "MemberPress account details"
841
  msgstr ""
842
 
843
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
844
  msgid "No link buttons"
845
  msgstr ""
846
 
847
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
848
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
849
  msgid "Link buttons after account details"
850
  msgstr "Összekapcsoló gombok a profil részletes beállításai után"
851
 
852
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
853
- msgid "Register Form"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
854
  msgstr ""
855
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
856
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
857
  #, fuzzy
858
  #| msgid "Login form button style"
859
  msgid "Register form button style"
860
  msgstr "Login gomb stílusa"
861
 
 
862
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
 
863
  #, fuzzy
864
  #| msgid "Login layout"
865
  msgid "Register layout"
866
  msgstr "Login elrendezése"
867
 
868
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
869
- msgid "WooCommerce login form"
870
- msgstr "WooCommerce belépési űrlap"
871
 
872
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
873
  msgid "No Connect button in login form"
874
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
875
 
876
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
877
- msgid "Connect button before login form"
878
- msgstr "Belépés gomb a belépési űrlap előtt"
879
-
880
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
881
- msgid "Connect button after login form"
882
- msgstr "Belépés gomb a belépési űrlap után"
883
-
884
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
885
- msgid "WooCommerce register form"
886
- msgstr ""
887
-
888
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
889
  msgid "No Connect button in register form"
890
  msgstr ""
891
 
892
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
893
- msgid "Connect button before register form"
894
- msgstr ""
895
-
896
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
897
- msgid "Connect button after register form"
898
- msgstr ""
899
-
900
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
901
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
902
- msgid "WooCommerce billing form"
903
  msgstr "WooCommerce számlázási űrlap"
904
 
905
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
906
  msgid "No Connect button in billing form"
907
  msgstr "Ne legyen összekapcsoló gomb a számlázási űrlapnál"
908
 
909
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
910
- msgid "Connect button before billing form"
911
- msgstr "Belépés gomb a számlázási űrlap előtt"
912
-
913
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
914
- msgid "Connect button after billing form"
915
- msgstr "Belépés gomb a számlázási űrlapon"
916
 
917
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
918
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
919
- msgid "WooCommerce account details"
920
- msgstr "WooCommerce fiók részletes beállítások"
 
 
921
 
922
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
923
- msgid "Link buttons before account details"
924
- msgstr "Összekapcsoló gombok a profil részletes beállításai előtt"
 
 
925
 
926
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
927
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
928
- msgid "WooCommerce button style"
929
- msgstr "WooCommerce gomb stílusa"
930
 
931
- #: nextend-facebook-connect/includes/avatar.php:45
932
- msgid "Avatar"
 
 
933
  msgstr ""
934
 
935
- #: nextend-facebook-connect/includes/avatar.php:46
936
  msgid "Manage Avatar"
937
  msgstr ""
938
 
939
- #: nextend-facebook-connect/includes/avatar.php:47
940
  #, php-format
941
  msgid "Avatar <span class=\"count\">(%s)</span>"
942
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
943
  msgstr[0] ""
944
  msgstr[1] ""
945
 
946
- #: nextend-facebook-connect/includes/provider-admin.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
947
  msgid "Your configuration needs to be verified"
948
  msgstr ""
949
 
950
- #: nextend-facebook-connect/includes/provider-admin.php:189
951
  msgid ""
952
  "Before you can start letting your users register with your app it needs to "
953
  "be tested. This test makes sure that no users will have troubles with the "
@@ -961,15 +1405,15 @@ msgstr ""
961
  "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. "
962
  "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van."
963
 
964
- #: nextend-facebook-connect/includes/provider-admin.php:195
965
  msgid "Please save your changes to verify settings."
966
  msgstr ""
967
 
968
- #: nextend-facebook-connect/includes/provider-admin.php:203
969
  msgid "Works Fine"
970
  msgstr "Megfelelően Működik"
971
 
972
- #: nextend-facebook-connect/includes/provider-admin.php:217
973
  #, php-format
974
  msgid ""
975
  "This provider is currently disabled, which means that users can’t register "
@@ -978,7 +1422,7 @@ msgstr ""
978
  "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a "
979
  "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal."
980
 
981
- #: nextend-facebook-connect/includes/provider-admin.php:220
982
  #, php-format
983
  msgid ""
984
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -988,7 +1432,7 @@ msgstr ""
988
  "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s "
989
  "fiókjukkal kikapcsolhatod a providertt."
990
 
991
- #: nextend-facebook-connect/includes/provider-admin.php:223
992
  #, php-format
993
  msgid ""
994
  "This provider is currently enabled, which means that users can register or "
@@ -997,39 +1441,47 @@ msgstr ""
997
  "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók "
998
  "regisztrálhatnak és beléphetnek a %s fiókjukkal."
999
 
1000
- #: nextend-facebook-connect/includes/provider-admin.php:231
1001
  msgid "Verify Settings Again"
1002
  msgstr ""
1003
 
1004
- #: nextend-facebook-connect/includes/provider-admin.php:232
1005
  msgid "Please save your changes before verifying settings."
1006
  msgstr ""
1007
 
1008
- #: nextend-facebook-connect/includes/provider.php:320
1009
- #: nextend-facebook-connect/includes/provider.php:618
1010
- #: nextend-facebook-connect/includes/provider.php:629
1011
  msgid "Authentication successful"
1012
  msgstr "Hitelesítés sikeres"
1013
 
1014
- #: nextend-facebook-connect/includes/provider.php:558
1015
- #: nextend-facebook-connect/includes/user.php:102
1016
  msgid "Authentication error"
1017
  msgstr "Hitelesítési hiba"
1018
 
1019
- #: nextend-facebook-connect/includes/provider.php:573
1020
  msgid "Unlink successful."
1021
  msgstr "Szétkapcsolás sikeres"
1022
 
1023
- #: nextend-facebook-connect/includes/provider.php:758
1024
- #: nextend-facebook-connect/includes/provider.php:765
1025
  msgid "The test was successful"
1026
  msgstr "A teszt sikeres volt"
1027
 
1028
- #: nextend-facebook-connect/includes/provider.php:811
1029
  msgid "Authentication failed"
1030
  msgstr "Hitelesítés sikertelen"
1031
 
1032
- #: nextend-facebook-connect/includes/user.php:66
 
 
 
 
 
 
 
 
1033
  #, php-format
1034
  msgid ""
1035
  "Your %1$s account is successfully linked with your account. Now you can sign "
@@ -1038,18 +1490,22 @@ msgstr ""
1038
  "A(z) %1$s fiók sikeresen össze lett kapcsolva a fiókoddal. Már könnyedén be "
1039
  "tudsz lépni a %2$s fiókoddal is."
1040
 
1041
- #: nextend-facebook-connect/includes/user.php:69
1042
  #, php-format
1043
  msgid ""
1044
  "You have already linked a(n) %s account. Please unlink the current and then "
1045
  "you can link other %s account."
1046
  msgstr ""
1047
 
1048
- #: nextend-facebook-connect/includes/user.php:74
1049
  #, php-format
1050
  msgid "This %s account is already linked to other user."
1051
  msgstr ""
1052
 
 
 
 
 
1053
  #. translators: %2$s: PHP version
1054
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1055
  #, php-format
@@ -1064,18 +1520,23 @@ msgid ""
1064
  "version, the plugin is currently NOT ACTIVE."
1065
  msgstr ""
1066
 
1067
- #: nextend-facebook-connect/nextend-social-login.php:25
1068
- #: nextend-facebook-connect/nextend-social-login.php:33
1069
  #, php-format
1070
  msgid "Please update %1$s to version %2$s or newer."
1071
  msgstr ""
1072
 
1073
- #: nextend-facebook-connect/nextend-social-login.php:25
1074
- #: nextend-facebook-connect/nextend-social-login.php:33
1075
  msgid "Update now!"
1076
  msgstr ""
1077
 
1078
- #: nextend-facebook-connect/nextend-social-login.php:379
 
 
 
 
 
1079
  #, php-format
1080
  msgid ""
1081
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
@@ -1084,7 +1545,7 @@ msgstr ""
1084
  "%s átvette a Nextend Google Connect helyét. Letörölheted a Nextend Google "
1085
  "Connect plguint, mivel már nincs rá szükség."
1086
 
1087
- #: nextend-facebook-connect/nextend-social-login.php:390
1088
  #, php-format
1089
  msgid ""
1090
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
@@ -1093,41 +1554,20 @@ msgstr ""
1093
  "%s átvette a Nextend Twitter Connect helyét. Letörölheted a Nextend Twitter "
1094
  "Connect plguint, mivel már nincs rá szükség."
1095
 
1096
- #: nextend-facebook-connect/nextend-social-login.php:507
1097
- msgid "You have logged in successfully."
1098
- msgstr ""
1099
-
1100
- #: nextend-facebook-connect/nextend-social-login.php:631
1101
- #: nextend-facebook-connect/nextend-social-login.php:919
1102
  msgid "Social Login"
1103
  msgstr "Közösségi belépés"
1104
 
1105
- #: nextend-facebook-connect/nextend-social-login.php:903
1106
  msgid "Social Accounts"
1107
  msgstr ""
1108
 
1109
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1110
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1111
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1112
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1113
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1114
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1115
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1116
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21
1117
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1118
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1119
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1120
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
1121
- #, php-format
1122
- msgid "Navigate to %s"
1123
- msgstr "Látogasd meg ezt az oldalt: %s"
1124
-
1125
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1126
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
1127
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1128
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1129
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1130
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1131
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1132
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1133
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
@@ -1146,7 +1586,7 @@ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1146
  msgstr ""
1147
 
1148
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1149
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1150
  #, php-format
1151
  msgid ""
1152
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
@@ -1154,7 +1594,7 @@ msgstr ""
1154
  "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1155
 
1156
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1157
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1158
  msgid "Click on \"Save Changes\""
1159
  msgstr "Kattints a \"Save Changes\"-re"
1160
 
@@ -1173,7 +1613,7 @@ msgstr ""
1173
  msgid "How to get SSL for my WordPress site?"
1174
  msgstr ""
1175
 
1176
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:16
1177
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1178
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1179
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
@@ -1192,32 +1632,33 @@ msgstr ""
1192
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
1193
  "alapján."
1194
 
1195
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:18
1196
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1197
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1198
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:18
1199
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
 
1200
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1201
  #, php-format
1202
  msgctxt "App creation"
1203
  msgid "Create %s"
1204
  msgstr "%s létrehozása"
1205
 
1206
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1207
  msgid "Click on the \"Add a New App\" button"
1208
  msgstr "Kattints az \"Add a New App\" gombra"
1209
 
1210
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1211
  msgid "Fill \"Display Name\" and \"Contact Email\""
1212
  msgstr ""
1213
  "Töltsd ki a \"Display name\" mezőt az app nevével. A \"Contact Email\" "
1214
  "mezőbe írd be az email címet, amin keresztül elérhetnek."
1215
 
1216
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1217
  msgid "Click on blue \"Create App ID\" button"
1218
  msgstr "Kattints a kék \"Create App ID\" gombra"
1219
 
1220
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1221
  msgid ""
1222
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1223
  "button"
@@ -1225,32 +1666,34 @@ msgstr ""
1225
  "Vidd a kurzort a \"Facebook Login\" doboz fölé és kattints a megjelenő \"Set "
1226
  "Up\" gombra."
1227
 
1228
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1229
  msgid "Choose Web"
1230
  msgstr "Válaszd a \"Web\"-et"
1231
 
1232
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1233
  #, php-format
1234
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1235
  msgstr ""
1236
  "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg ez "
1237
  "lesz az: <b>%s</b>"
1238
 
1239
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1240
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
 
1241
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
 
1242
  msgid "Click on \"Save\""
1243
  msgstr "Kattints a \"Save\" gombra"
1244
 
1245
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1246
  msgid "In the left sidebar, click on \"Facebook Login\""
1247
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1248
 
1249
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1250
  msgid "In the top of the left sidebar, click on \"Settings\""
1251
  msgstr "A bal oldali menü tetején kattints a \"Settings\"-re"
1252
 
1253
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1254
  msgid ""
1255
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1256
  "click on the \"Show\" button. These will be needed in plugin's settings."
@@ -1258,11 +1701,11 @@ msgstr ""
1258
  "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
1259
  "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
1260
 
1261
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1262
  msgid "Enter your domain name to the App Domains"
1263
  msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
1264
 
1265
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1266
  msgid ""
1267
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1268
  "accessible privacy policy that explains what data you are collecting and how "
@@ -1272,14 +1715,14 @@ msgstr ""
1272
  "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen "
1273
  "információkat gyűjtesz és mihez kezdesz velük."
1274
 
1275
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1276
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1277
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1278
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1279
  msgid "Save your changes."
1280
  msgstr "Mentsd el a módosításaidat."
1281
 
1282
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1283
  msgid ""
1284
  "Your application is currently private, which means that only you can log in "
1285
  "with it. In the left sidebar choose \"App Review\" and make your App public"
@@ -1288,11 +1731,12 @@ msgstr ""
1288
  "vele. A bal oldali menüben válaszd az \"App Review\" gombot és tedd "
1289
  "nyilvánossá az Appodat."
1290
 
1291
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1292
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
1293
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
1294
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
1295
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
 
1296
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1297
  #, php-format
1298
  msgid "I am done setting up my %s"
@@ -1445,6 +1889,8 @@ msgstr "App ID"
1445
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1446
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1447
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
 
 
1448
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1449
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1450
  msgid "Required"
@@ -1455,6 +1901,7 @@ msgstr "Kötelező"
1455
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1456
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1457
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
 
1458
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1459
  #, php-format
1460
  msgid ""
@@ -1480,12 +1927,13 @@ msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
1480
  msgid "Unlink account from <b>Facebook</b>"
1481
  msgstr "Szétkapcsolás <b>Facebook</b>-kal"
1482
 
1483
- #: nextend-facebook-connect/providers/facebook/facebook.php:151
1484
- #: nextend-facebook-connect/providers/google/google.php:71
1485
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
1486
- #: nextend-social-login-pro/providers/amazon/amazon.php:71
1487
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1488
- #: nextend-social-login-pro/providers/vk/vk.php:68
 
1489
  #, php-format
1490
  msgid ""
1491
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
@@ -1493,6 +1941,30 @@ msgstr ""
1493
  "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s "
1494
  "helyes."
1495
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1496
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1497
  msgid "Click on the \"Credentials\" in the left hand menu"
1498
  msgstr ""
@@ -1503,7 +1975,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
1503
  msgstr ""
1504
 
1505
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1506
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1507
  #, php-format
1508
  msgid ""
1509
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -1511,22 +1983,37 @@ msgstr ""
1511
  "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1512
 
1513
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
 
 
 
 
1514
  msgid ""
1515
  "If you don't have a project yet, you'll need to create one. You can do this "
1516
- "by clicking on the blue \"Create project\" button on the right side"
 
 
1517
  msgstr ""
1518
  "Ha még nincs projected, újat kell készítened. Ezt megteheted a kék \"Create "
1519
  "project\" gombra kattintva a jobb oldalon."
1520
 
1521
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1522
- msgid "Name your project and then click on the Create button"
1523
- msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra"
 
 
 
1524
 
1525
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
 
 
 
 
 
 
1526
  msgid "Once you have a project, you'll end up in the dashboard."
1527
  msgstr "Ha van már projekted át leszel irányítva az irányítópultra"
1528
 
1529
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1530
  msgid ""
1531
  "Click on the \"Credentials\" in the left hand menu to create new API "
1532
  "credentials"
@@ -1534,37 +2021,35 @@ msgstr ""
1534
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
1535
  "adatokat készíts"
1536
 
1537
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1538
- msgid ""
1539
- "Go to the OAuth consent screen tab and enter a product name and provide the "
1540
- "Privacy Policy URL, then click on the save button."
1541
  msgstr ""
1542
- "Menj az \"OAuth consent screen\" fülre. Írd be a termék nevét és írd be a "
1543
- "linket az Adatvédelmi Irányelvek oldalad linkjét. Kattints a Save gombra."
1544
 
1545
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
 
 
 
 
1546
  msgid ""
1547
- "Go back to the Credentials tab and locate the small box at the middle. Click "
1548
- "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
1549
- "from the dropdown list."
1550
  msgstr ""
1551
- "Menj vissza a \"Credentials\" fülre és keresd meg a kis dobozt középen. "
1552
- "Kattints a kék \"Create credentials\" gombra. Válaszd ki az \"OAuth client ID"
1553
- "\"-t a lenyíló listából."
1554
 
1555
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1556
  msgid "Your application type should be \"Web application\""
1557
  msgstr "Az applikációd típusa legyen \"Web application\""
1558
 
1559
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1560
  msgid "Name your application"
1561
  msgstr "Adj nevet az alkalmazásodnak"
1562
 
1563
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1564
  msgid "Click on the Create button"
1565
  msgstr "Kattints a \"Create\" gombra"
1566
 
1567
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1568
  msgid ""
1569
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1570
  "the Credentials in the left hand menu and select your app by clicking on its "
@@ -1592,6 +2077,7 @@ msgstr ""
1592
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
1593
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1594
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
 
1595
  msgid "Client ID"
1596
  msgstr "Client ID"
1597
 
@@ -1601,65 +2087,105 @@ msgstr "Client ID"
1601
  msgid "Client Secret"
1602
  msgstr "Client Secret"
1603
 
1604
- #: nextend-facebook-connect/providers/google/google.php:38
1605
  msgid "Continue with <b>Google</b>"
1606
  msgstr "Folytatás a <b>Google-el</b>"
1607
 
1608
- #: nextend-facebook-connect/providers/google/google.php:39
1609
  msgid "Link account with <b>Google</b>"
1610
  msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
1611
 
1612
- #: nextend-facebook-connect/providers/google/google.php:40
1613
  msgid "Unlink account from <b>Google</b>"
1614
  msgstr "Szétkapcsolás <b>Google</b>-lel"
1615
 
 
 
 
 
 
 
1616
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1617
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1618
- msgid "Click on the App"
1619
- msgstr ""
 
1620
 
1621
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1622
- msgid "Click on the \"Settings\" tab"
 
 
1623
  msgstr ""
1624
 
1625
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
1626
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1627
- #, php-format
1628
- msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
 
1629
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
1630
 
1631
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1632
- msgid "Click on \"Update Settings\""
1633
- msgstr ""
 
 
1634
 
1635
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1636
- msgid "Click on the \"Create New App\" button"
1637
- msgstr "Kattints a \"Create New App\" gombra"
 
 
1638
 
1639
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1640
  #, php-format
1641
  msgid ""
1642
- "Fill the name and description fields. Then enter your site's URL to the "
1643
- "Website field: <b>%s</b>"
 
 
 
 
 
 
 
 
 
 
1644
  msgstr ""
1645
  "Írd be az appod nevét a \"name\" és a leírását a \"description\" mezőbe. "
1646
  "Aztán írd be az oldalad címét a Website mezőbe: <b>%s</b>"
1647
 
1648
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1649
- msgid "Accept the Twitter Developer Agreement"
1650
- msgstr "Fogadd el a Twitter Fejlesztői Megállapodást"
1651
 
1652
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
1653
  msgid ""
1654
- "Create your application by clicking on the Create your Twitter application "
1655
- "button"
1656
  msgstr ""
1657
- "Hozd létre az alkalmazásodat a \"Create your Twitter application\" gombra "
1658
- "kattintva"
1659
 
1660
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
 
 
 
 
 
 
 
 
 
1661
  msgid ""
1662
- "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
 
 
 
 
 
 
 
 
1663
  msgstr ""
1664
  "Menj a \"Keys and Access Tokens\" fülre ahol megtalálod a \"Consumer Key\"-t "
1665
  "és \"Secret\"-et"
@@ -1673,22 +2199,30 @@ msgid "Go to the Settings tab."
1673
  msgstr "Menj a \"Settings\" fülre."
1674
 
1675
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
1676
- msgid "Consumer Key"
1677
- msgstr "Consumer Key"
1678
 
1679
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
1680
- msgid "Consumer Secret"
1681
- msgstr "Consumer Secret"
 
 
 
 
1682
 
1683
- #: nextend-facebook-connect/providers/twitter/twitter.php:38
 
 
 
 
1684
  msgid "Continue with <b>Twitter</b>"
1685
  msgstr "Folytatás a <b>Twitterrel</b>"
1686
 
1687
- #: nextend-facebook-connect/providers/twitter/twitter.php:39
1688
  msgid "Link account with <b>Twitter</b>"
1689
  msgstr "Fiók összekapcsolása a <b>Twitter</b>-rel"
1690
 
1691
- #: nextend-facebook-connect/providers/twitter/twitter.php:40
1692
  msgid "Unlink account from <b>Twitter</b>"
1693
  msgstr "Szétkapcsolás <b>Twitter</b>-rel"
1694
 
@@ -1713,99 +2247,91 @@ msgstr ""
1713
  msgid "Show unlink buttons"
1714
  msgstr ""
1715
 
1716
- #: nextend-social-login-pro/class-provider-extension.php:114
1717
  msgid "Social login is not allowed with this role!"
1718
  msgstr ""
1719
  "A közösségi fiókkal való belépés nem engedélyezett erre a felhasználói "
1720
  "szintre."
1721
 
1722
- #: nextend-social-login-pro/class-provider-extension.php:209
1723
  #: nextend-social-login-pro/class-provider-extension.php:211
1724
- #: nextend-social-login-pro/class-provider-extension.php:216
1725
- #: nextend-social-login-pro/class-provider-extension.php:222
1726
- #: nextend-social-login-pro/class-provider-extension.php:235
1727
- #: nextend-social-login-pro/class-provider-extension.php:237
1728
- #: nextend-social-login-pro/class-provider-extension.php:240
 
1729
  msgid "ERROR"
1730
  msgstr "HIBA"
1731
 
1732
- #: nextend-social-login-pro/class-provider-extension.php:209
1733
  msgid "Please enter a username."
1734
  msgstr ""
1735
 
1736
- #: nextend-social-login-pro/class-provider-extension.php:211
1737
  msgid ""
1738
  "This username is invalid because it uses illegal characters. Please enter a "
1739
  "valid username."
1740
  msgstr ""
1741
 
1742
- #: nextend-social-login-pro/class-provider-extension.php:216
1743
  msgid "This username is already registered. Please choose another one."
1744
  msgstr ""
1745
 
1746
- #: nextend-social-login-pro/class-provider-extension.php:222
1747
  msgid "Sorry, that username is not allowed."
1748
  msgstr ""
1749
 
1750
- #: nextend-social-login-pro/class-provider-extension.php:235
 
 
 
 
1751
  msgid "Please enter an email address."
1752
  msgstr ""
1753
 
1754
- #: nextend-social-login-pro/class-provider-extension.php:237
1755
  msgid "The email address isn&#8217;t correct."
1756
  msgstr ""
1757
 
1758
- #: nextend-social-login-pro/class-provider-extension.php:240
1759
  msgid "This email is already registered, please choose another one."
1760
  msgstr ""
1761
 
1762
- #: nextend-social-login-pro/class-provider-extension.php:255
 
 
 
 
1763
  msgid "<strong>ERROR</strong>: Please enter a password."
1764
  msgstr ""
1765
 
1766
- #: nextend-social-login-pro/class-provider-extension.php:260
1767
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1768
  msgstr ""
1769
 
1770
- #: nextend-social-login-pro/class-provider-extension.php:265
1771
  msgid ""
1772
  "<strong>ERROR</strong>: Please enter the same password in both password "
1773
  "fields."
1774
  msgstr ""
1775
 
1776
- #: nextend-social-login-pro/class-provider-extension.php:328
1777
- msgid "Register For This Site!"
1778
- msgstr ""
1779
-
1780
- #: nextend-social-login-pro/class-provider-extension.php:355
1781
- msgid "Username"
1782
- msgstr ""
1783
-
1784
- #: nextend-social-login-pro/class-provider-extension.php:362
1785
- msgid "Email"
1786
- msgstr "Email"
1787
-
1788
- #: nextend-social-login-pro/class-provider-extension.php:367
1789
- msgid "Registration confirmation will be emailed to you."
1790
- msgstr ""
1791
-
1792
- #: nextend-social-login-pro/class-provider-extension.php:375
1793
  msgid "Password"
1794
  msgstr ""
1795
 
1796
- #: nextend-social-login-pro/class-provider-extension.php:385
1797
  msgid "Strength indicator"
1798
  msgstr ""
1799
 
1800
- #: nextend-social-login-pro/class-provider-extension.php:390
1801
  msgid "Confirm use of weak password"
1802
  msgstr ""
1803
 
1804
- #: nextend-social-login-pro/class-provider-extension.php:396
1805
  msgid "Confirm password"
1806
  msgstr ""
1807
 
1808
- #: nextend-social-login-pro/class-provider-extension.php:506
1809
  #, php-format
1810
  msgid ""
1811
  "This email is already registered, please login in to your account to link "
@@ -1830,26 +2356,26 @@ msgid "Install now!"
1830
  msgstr ""
1831
 
1832
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
1833
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1834
  #, fuzzy, php-format
1835
  #| msgid "Visit %s."
1836
  msgid "Visit %s"
1837
  msgstr "Látogass el ide: %s."
1838
 
1839
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
1840
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
1841
  msgid ""
1842
  "On the right side, under \"Manage\", hover over the gear icon and select "
1843
  "\"Web Settings\" option."
1844
  msgstr ""
1845
 
1846
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
1847
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
1848
  msgid "Click \"Edit\"."
1849
  msgstr ""
1850
 
1851
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
1852
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
1853
  #, fuzzy, php-format
1854
  #| msgid ""
1855
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -1858,7 +2384,8 @@ msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1858
  msgstr ""
1859
  "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: <b>%s</b>"
1860
 
1861
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:16
 
1862
  #, fuzzy, php-format
1863
  #| msgid ""
1864
  #| "To allow your visitors to log in with their %1$s account, first you must "
@@ -1879,14 +2406,16 @@ msgstr ""
1879
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
1880
  "alapján."
1881
 
1882
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
 
 
1883
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
1884
  #, fuzzy, php-format
1885
  #| msgid "Log in with your %s credentials if you are not logged in"
1886
  msgid "Log in with your %s credentials if you are not logged in."
1887
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
1888
 
1889
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
1890
  #, fuzzy
1891
  #| msgid ""
1892
  #| "If you don't have a project yet, you'll need to create one. You can do "
@@ -1899,17 +2428,17 @@ msgstr ""
1899
  "Ha még nincs projected, újat kell készítened. Ezt megteheted a kék \"Create "
1900
  "project\" gombra kattintva a jobb oldalon."
1901
 
1902
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
1903
  msgid ""
1904
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
1905
  "\"Consent Privacy Notice URL\"."
1906
  msgstr ""
1907
 
1908
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1909
  msgid "Once you filled all the required fields, click \"Save\"."
1910
  msgstr ""
1911
 
1912
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
1913
  #, fuzzy, php-format
1914
  #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1915
  msgid ""
@@ -1918,37 +2447,36 @@ msgstr ""
1918
  "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg ez "
1919
  "lesz az: <b>%s</b>"
1920
 
1921
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
 
1922
  msgid "When all fields are filled, click \"Save\"."
1923
  msgstr ""
1924
 
1925
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
1926
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
1927
  msgstr ""
1928
 
1929
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
1930
  msgid ""
1931
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
1932
  "page."
1933
  msgstr ""
1934
 
1935
  #: nextend-social-login-pro/providers/amazon/amazon.php:37
1936
- #, fuzzy
1937
- #| msgid "Continue with <b>Facebook</b>"
1938
  msgid "Continue with <b>Amazon</b>"
1939
- msgstr "Folytatás a <b>Facebookkal</b>"
1940
 
1941
  #: nextend-social-login-pro/providers/amazon/amazon.php:38
1942
- #, fuzzy
1943
- #| msgid "Link account with <b>Facebook</b>"
1944
  msgid "Link account with <b>Amazon</b>"
1945
- msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
1946
 
1947
  #: nextend-social-login-pro/providers/amazon/amazon.php:39
1948
- #, fuzzy
1949
- #| msgid "Unlink account from <b>Facebook</b>"
1950
  msgid "Unlink account from <b>Amazon</b>"
1951
- msgstr "Szétkapcsolás <b>Facebook</b>-kal"
 
 
 
 
1952
 
1953
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
1954
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
@@ -1997,18 +2525,104 @@ msgstr ""
1997
  "Valószínűleg be kell kapcsolnod a \"r_emailaddress\"-t a \"Default "
1998
  "Application Permissions\" alatt"
1999
 
2000
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
2001
  msgid "Continue with <b>LinkedIn</b>"
2002
  msgstr "Folytatás a <b>LinkedInnel</b>"
2003
 
2004
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
2005
  msgid "Link account with <b>LinkedIn</b>"
2006
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
2007
 
2008
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
2009
  msgid "Unlink account from <b>LinkedIn</b>"
2010
  msgstr "Szétkapcsolás <b>LinkedIn</b>-nel"
2011
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2012
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
2013
  #, fuzzy
2014
  #| msgid "Click on the Create button"
@@ -2022,9 +2636,7 @@ msgid "Go to the Settings menu"
2022
  msgstr "Menj a \"Settings\" fülre."
2023
 
2024
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12
2025
- #, fuzzy, php-format
2026
- #| msgid ""
2027
- #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2028
  msgid ""
2029
  "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
2030
  msgstr ""
@@ -2109,42 +2721,141 @@ msgid "Secure key"
2109
  msgstr ""
2110
 
2111
  #: nextend-social-login-pro/providers/vk/vk.php:34
2112
- #, fuzzy
2113
- #| msgid "Continue with <b>Google</b>"
2114
  msgid "Continue with <b>VK</b>"
2115
- msgstr "Folytatás a <b>Google-el</b>"
2116
 
2117
  #: nextend-social-login-pro/providers/vk/vk.php:35
2118
- #, fuzzy
2119
- #| msgid "Link account with <b>Google</b>"
2120
  msgid "Link account with <b>VK</b>"
2121
- msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
2122
 
2123
  #: nextend-social-login-pro/providers/vk/vk.php:36
2124
- #, fuzzy
2125
- #| msgid "Unlink account from <b>Google</b>"
2126
  msgid "Unlink account from <b>VK</b>"
2127
- msgstr "Szétkapcsolás <b>Google</b>-lel"
2128
-
2129
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:8
2130
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:8
2131
- #: nextend-social-login-pro/template-parts/login/above-separator.php:10
2132
- #: nextend-social-login-pro/template-parts/login/below-separator.php:14
2133
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:8
2134
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:8
2135
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:8
2136
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:8
2137
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:8
2138
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:8
 
 
 
 
 
 
 
 
 
 
 
 
2139
  msgid "OR"
2140
  msgstr "VAGY"
2141
 
2142
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
 
2143
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2144
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2145
  msgid "Social accounts"
2146
  msgstr "Közösségi fiókok"
2147
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2148
  #~ msgid "Use custom"
2149
  #~ msgstr "Egyedi gomb használata"
2150
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2018-09-04 15:28+0200\n"
5
+ "PO-Revision-Date: 2018-09-04 15:28+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.1.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
+ #: nextend-facebook-connect/NSL/GDPR.php:32
30
+ msgid "What personal data we collect and why we collect it"
31
+ msgstr ""
32
+
33
+ #: nextend-facebook-connect/NSL/GDPR.php:33
34
+ #, php-format
35
+ msgid ""
36
+ "%1$s collects data when a visitor register, login or link the account with "
37
+ "with any of the enabled social provider. It collects the following data: "
38
+ "email address, name, social provider identifier and access token. Also it "
39
+ "can collect profile picture and more fields with the Pro Addon's sync data "
40
+ "feature."
41
+ msgstr ""
42
+
43
+ #: nextend-facebook-connect/NSL/GDPR.php:35
44
+ msgid "Who we share your data with"
45
+ msgstr ""
46
+
47
+ #: nextend-facebook-connect/NSL/GDPR.php:36
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
+
55
+ #: nextend-facebook-connect/NSL/GDPR.php:38
56
+ msgid "Does the plugin share personal data with third parties"
57
+ msgstr ""
58
+
59
+ #: nextend-facebook-connect/NSL/GDPR.php:39
60
+ #, php-format
61
+ msgid ""
62
+ "%1$s use the access token what the social provider gave to communicate with "
63
+ "the providers to verify account and securely access personal data."
64
+ msgstr ""
65
+
66
+ #: nextend-facebook-connect/NSL/GDPR.php:41
67
+ msgid "How long we retain your data"
68
+ msgstr ""
69
+
70
+ #: nextend-facebook-connect/NSL/GDPR.php:42
71
+ #, php-format
72
+ msgid ""
73
+ "%1$s removes the collected personal data when the user deleted from "
74
+ "WordPress."
75
+ msgstr ""
76
+
77
+ #: nextend-facebook-connect/NSL/GDPR.php:44
78
+ msgid "Does the plugin use personal data collected by others?"
79
+ msgstr ""
80
+
81
+ #: nextend-facebook-connect/NSL/GDPR.php:45
82
+ #, php-format
83
+ msgid ""
84
+ "%1$s use the personal data collected by the social providers to create "
85
+ "account on your site when the visitor authorize it."
86
+ msgstr ""
87
+
88
+ #: nextend-facebook-connect/NSL/GDPR.php:47
89
+ msgid "Does the plugin store things in the browser?"
90
+ msgstr ""
91
+
92
+ #: nextend-facebook-connect/NSL/GDPR.php:48
93
+ #, php-format
94
+ msgid ""
95
+ "Yes, %1$s must create a cookie for visitors who use the social login "
96
+ "authorization flow. This cookie required for every provider to secure the "
97
+ "communication and to redirect the user back to the last location."
98
+ msgstr ""
99
+
100
+ #: nextend-facebook-connect/NSL/GDPR.php:50
101
+ msgid "Does the plugin collect telemetry data, directly or indirectly?"
102
+ msgstr ""
103
+
104
+ #: nextend-facebook-connect/NSL/GDPR.php:51
105
+ #: nextend-facebook-connect/NSL/GDPR.php:54
106
+ msgid "No"
107
+ msgstr ""
108
+
109
+ #: nextend-facebook-connect/NSL/GDPR.php:53
110
+ msgid ""
111
+ "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
112
+ "third party?"
113
+ msgstr ""
114
+
115
+ #: nextend-facebook-connect/NSL/GDPR.php:97
116
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:65
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 "A %s-nak szüksége van a json_decode függvényre."
124
 
125
+ #: nextend-facebook-connect/admin/admin.php:203
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr ""
128
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
129
 
130
+ #: nextend-facebook-connect/admin/admin.php:235
131
+ #: nextend-facebook-connect/admin/admin.php:277
132
  msgid "Settings saved."
133
  msgstr "Beállítások elmentve."
134
 
135
+ #: nextend-facebook-connect/admin/admin.php:244
136
  msgid "The authorization was successful"
137
  msgstr "Az engedélyezés sikeres volt"
138
 
139
+ #: nextend-facebook-connect/admin/admin.php:255
140
  msgid "Deauthorize completed."
141
  msgstr "A engedély visszavonása befejeződött."
142
 
143
+ #: nextend-facebook-connect/admin/admin.php:429
144
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
145
  #: nextend-facebook-connect/admin/templates/providers.php:84
146
  #: nextend-facebook-connect/admin/templates/providers.php:96
147
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
148
  msgid "Settings"
149
  msgstr "Beállítások"
150
 
151
+ #: nextend-facebook-connect/admin/admin.php:503
152
+ #: nextend-facebook-connect/includes/oauth2.php:139
153
+ #: nextend-facebook-connect/includes/oauth2.php:284
154
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
155
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:163
156
  #, php-format
157
  msgid "Unexpected response: %s"
158
  msgstr ""
159
 
160
+ #: nextend-facebook-connect/admin/admin.php:561
161
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
162
  #, php-format
163
  msgid ""
165
  "URIs in the related social applications."
166
  msgstr ""
167
 
168
+ #: nextend-facebook-connect/admin/admin.php:562
169
  msgid "Fix Error"
170
  msgstr ""
171
 
172
+ #: nextend-facebook-connect/admin/admin.php:562
173
  msgid "Oauth Redirect URI"
174
  msgstr ""
175
 
176
+ #: nextend-facebook-connect/admin/admin.php:572
177
  #, php-format
178
  msgid ""
179
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
180
  "display Social Login buttons in %2$s login form!"
181
  msgstr ""
182
 
183
+ #: nextend-facebook-connect/admin/admin.php:573
184
  msgid "Dismiss and check Pro Addon"
185
  msgstr ""
186
 
187
+ #: nextend-facebook-connect/admin/admin.php:573
188
  msgid "Dismiss"
189
  msgstr ""
190
 
191
+ #: nextend-facebook-connect/admin/admin.php:579
192
+ #, php-format
193
+ msgid ""
194
+ "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
195
+ "register flow</b>\" and \"<b>OAuth redirect uri proxy page</b>\" in %1$s to "
196
+ "work properly."
197
+ msgstr ""
198
+
199
+ #: nextend-facebook-connect/admin/admin.php:580
200
+ msgid "Fix now"
201
+ msgstr ""
202
+
203
+ #: nextend-facebook-connect/admin/admin.php:604
204
+ msgid "Authorize your Pro Addon"
205
+ msgstr "Aktiváld a Pro Kiegészítődet"
206
+
207
+ #: nextend-facebook-connect/admin/admin.php:605
208
+ msgid ""
209
+ "To be able to use the Pro features, you need to authorize Nextend Social "
210
+ "Connect Pro Addon. You can do this by clicking on the Authorize button below "
211
+ "then select the related purchase."
212
+ msgstr ""
213
+
214
+ #: nextend-facebook-connect/admin/admin.php:610
215
+ msgid "Authorize"
216
+ msgstr "Aktiválás"
217
+
218
+ #: nextend-facebook-connect/admin/admin.php:667
219
+ msgid "License key"
220
+ msgstr "Licensz kulcs"
221
+
222
+ #: nextend-facebook-connect/admin/admin.php:682
223
+ msgid "OAuth proxy page"
224
+ msgstr ""
225
+
226
+ #: nextend-facebook-connect/admin/admin.php:685
227
+ #, fuzzy
228
+ #| msgid "Login layout"
229
+ msgid "Register flow page"
230
+ msgstr "Login elrendezése"
231
+
232
+ #: nextend-facebook-connect/admin/interim.php:12
233
+ #: nextend-facebook-connect/admin/interim.php:23
234
+ msgid "You have logged in successfully."
235
+ msgstr ""
236
+
237
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:81
238
  msgid "Login label"
239
  msgstr "Bejelentkezés felirat"
240
 
241
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:97
243
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
244
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
245
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
246
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
247
  msgid "Reset to default"
248
  msgstr "Alapbeállítás visszaállítása"
249
 
250
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
251
  msgid "Link label"
252
  msgstr "Profil összekapcsolás felirat"
253
 
254
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:103
255
  msgid "Unlink label"
256
  msgstr "Profile szétkapcsolás felirat"
257
 
258
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
259
  msgid "Default button"
260
  msgstr "Alap gomb"
261
 
262
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
263
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
264
  msgid "Use custom button"
265
  msgstr "Egyedi gomb használata"
266
 
267
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
268
  #, php-format
269
  msgid "Use the %s in your custom button's code to make the label show up."
270
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
271
 
272
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:145
273
  msgid "Icon button"
274
  msgstr "Ikon gomb"
275
 
276
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:176
277
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
278
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:93
279
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
280
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:54
281
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
282
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:79
283
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
284
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
285
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:153
286
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:108
287
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:168
288
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
289
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:232
290
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
291
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
292
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
293
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
294
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
295
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
296
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
297
  msgid "Save Changes"
298
  msgstr "Változtatások Mentése"
299
 
300
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
301
  #: nextend-facebook-connect/admin/templates/providers.php:64
302
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:15
303
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
304
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
305
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
306
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
307
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
308
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
309
  msgid "Getting Started"
310
  msgstr "Első Lépések"
334
  msgstr ""
335
 
336
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
337
+ msgid "Used when username is invalid or not stored"
338
+ msgstr ""
339
+
340
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:29
341
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
342
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
343
+ msgid "Terms and conditions"
344
+ msgstr ""
345
+
346
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
347
+ #, php-format
348
+ msgid "Override global \"%1$s\""
349
  msgstr ""
350
 
351
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
400
 
401
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
402
  #: nextend-facebook-connect/admin/templates/providers.php:39
403
+ #: nextend-facebook-connect/admin/templates/settings/general.php:53
404
+ #: nextend-facebook-connect/admin/templates/settings/general.php:189
405
+ #: nextend-facebook-connect/includes/provider-admin.php:215
406
  msgid "Disabled"
407
  msgstr "Kikapcsolva"
408
 
420
 
421
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
422
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
423
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:38
424
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
425
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
426
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
427
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
428
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
429
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
430
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
431
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
432
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
433
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
434
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
435
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
436
  #: nextend-facebook-connect/widget.php:40
437
  msgid "Default"
438
  msgstr "Alapbeállítás"
439
 
440
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
441
+ #: nextend-facebook-connect/includes/userData.php:172
442
  msgid "Register"
443
  msgstr ""
444
 
454
  msgid "Store in meta key"
455
  msgstr ""
456
 
 
 
 
 
 
457
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
458
  msgid "Shortcode"
459
  msgstr ""
474
  msgid "Image url"
475
  msgstr "Kép URL"
476
 
477
+ #: nextend-facebook-connect/admin/templates/debug.php:7
478
+ #: nextend-facebook-connect/admin/templates/header.php:20
479
+ #, fuzzy
480
+ #| msgid "Debug mode"
481
+ msgid "Debug"
482
+ msgstr "Debug mód"
483
+
484
+ #: nextend-facebook-connect/admin/templates/debug.php:40
485
+ msgid "Test network connection with providers"
486
+ msgstr ""
487
+
488
+ #: nextend-facebook-connect/admin/templates/debug.php:47
489
+ msgid "You don't have cURL support, please enable it in php.ini!"
490
+ msgstr ""
491
+
492
+ #: nextend-facebook-connect/admin/templates/debug.php:57
493
+ #, php-format
494
+ msgid "Test %1$s connection"
495
+ msgstr ""
496
+
497
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:7
498
+ msgid "Pro Addon - Authorized domain has been changed"
499
+ msgstr ""
500
+
501
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:15
502
+ msgid ""
503
+ "<b>You must authorize your new domain</b> to receive <b>updates and support</"
504
+ "b> in the future."
505
+ msgstr ""
506
+
507
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:21
508
+ msgid "You can authorize your new domain by completing the following steps:"
509
+ msgstr ""
510
+
511
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:25
512
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
513
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
514
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
515
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
516
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
517
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
518
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
519
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
520
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
521
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
522
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
523
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
524
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
525
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
526
+ #, php-format
527
+ msgid "Navigate to %s"
528
+ msgstr "Látogasd meg ezt az oldalt: %s"
529
+
530
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:26
531
+ #, fuzzy
532
+ #| msgid "Log in with your %s credentials if you are not logged in"
533
+ msgid "Log in with your credentials if you are not logged in"
534
+ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
535
+
536
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:27
537
+ #, php-format
538
+ msgid "Find your old domain name: <b>%s</b>"
539
+ msgstr ""
540
+
541
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:28
542
+ #, php-format
543
+ msgid "Click on the %1$s next to your domain name."
544
+ msgstr ""
545
+
546
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:29
547
+ #, php-format
548
+ msgid "Authorize your %1$s by clicking on the following button."
549
+ msgstr ""
550
+
551
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:34
552
+ msgid "The authorized domain name of your site is fine!"
553
+ msgstr ""
554
+
555
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
556
  msgid "Fix Oauth Redirect URIs"
557
  msgstr ""
564
  msgid "Got it"
565
  msgstr ""
566
 
567
+ #: nextend-facebook-connect/admin/templates/global-settings.php:28
568
  #: nextend-facebook-connect/admin/templates/menu.php:8
569
  msgid "Global Settings"
570
  msgstr "Általános beállítások"
571
 
572
+ #: nextend-facebook-connect/admin/templates/global-settings.php:31
573
  msgid "General"
574
  msgstr ""
575
 
576
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
577
+ msgid "Privacy"
578
+ msgstr ""
579
+
580
+ #: nextend-facebook-connect/admin/templates/global-settings.php:35
581
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
582
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
583
  msgid "Login Form"
584
  msgstr ""
585
 
586
+ #: nextend-facebook-connect/admin/templates/global-settings.php:39
587
  msgid "Comment"
588
  msgstr ""
589
 
595
  msgid "Support"
596
  msgstr "Támogatás"
597
 
598
+ #: nextend-facebook-connect/admin/templates/header.php:23
599
  #: nextend-facebook-connect/admin/templates/menu.php:12
600
  msgid "Pro Addon"
601
  msgstr "Pro Kiegészítő"
632
  "a Pro funkciókat aktiválnod kell a Pro Kiegészítőt."
633
 
634
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
635
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
636
  msgid "Deauthorize Pro Addon"
637
  msgstr "Pro kiegészítő deaktiválása"
638
 
662
  msgid "Activating..."
663
  msgstr "Aktiválás..."
664
 
665
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
  msgid "Pro Addon is installed and activated"
667
  msgstr "A Pro Kiegészítő telepítve és aktiválva"
668
 
669
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:120
670
  msgid ""
671
  "You installed and activated the Pro Addon. If you don’t want to use it "
672
  "anymore, you can deauthorize using the button below."
727
  msgstr ""
728
 
729
  #: nextend-facebook-connect/admin/templates/providers.php:42
730
+ #: nextend-facebook-connect/admin/templates/settings/general.php:56
731
+ #: nextend-facebook-connect/admin/templates/settings/general.php:192
732
+ #: nextend-facebook-connect/includes/provider-admin.php:218
733
  msgid "Enabled"
734
  msgstr "Bekapcsolva"
735
 
742
  msgstr ""
743
 
744
  #: nextend-facebook-connect/admin/templates/providers.php:72
745
+ #: nextend-facebook-connect/includes/provider-admin.php:202
746
  msgid "Verify Settings"
747
  msgstr ""
748
 
749
  #: nextend-facebook-connect/admin/templates/providers.php:80
750
+ #: nextend-facebook-connect/includes/provider-admin.php:247
751
  msgid "Enable"
752
  msgstr "Bekapcsolás"
753
 
754
  #: nextend-facebook-connect/admin/templates/providers.php:92
755
+ #: nextend-facebook-connect/includes/provider-admin.php:255
756
  msgid "Disable"
757
  msgstr "Kikapcsolás"
758
 
760
  msgid "Import"
761
  msgstr "Importálás"
762
 
763
+ #: nextend-facebook-connect/admin/templates/providers.php:124
764
+ msgid "Stay Updated"
765
+ msgstr ""
766
+
767
+ #: nextend-facebook-connect/admin/templates/providers.php:125
768
+ msgid ""
769
+ "Receive info on the latest plugin updates and social provider related "
770
+ "changes."
771
+ msgstr ""
772
+
773
+ #: nextend-facebook-connect/admin/templates/providers.php:126
774
+ #, fuzzy
775
+ #| msgid "Automatic, based on email address"
776
+ msgid "Enter your email address"
777
+ msgstr "Automatán, e-mail cím egyezés esetén"
778
+
779
+ #: nextend-facebook-connect/admin/templates/providers.php:130
780
+ msgid "Subscribe"
781
+ msgstr ""
782
+
783
+ #: nextend-facebook-connect/admin/templates/providers.php:146
784
  msgid "Saving..."
785
  msgstr "Mentés..."
786
 
787
+ #: nextend-facebook-connect/admin/templates/providers.php:147
788
  msgid "Saving failed"
789
  msgstr "A mentés nem sikerült"
790
 
791
+ #: nextend-facebook-connect/admin/templates/providers.php:148
792
  msgid "Order Saved"
793
  msgstr "Sorrend elmentve"
794
 
795
+ #: nextend-facebook-connect/admin/templates/providers.php:217
796
+ msgid "Successfully subscribed!"
797
+ msgstr ""
798
+
799
+ #: nextend-facebook-connect/admin/templates/providers.php:217
800
+ msgid ""
801
+ "We'll be bringing you all the latest news and updates about Social Login - "
802
+ "right to your inbox."
803
+ msgstr ""
804
+
805
+ #: nextend-facebook-connect/admin/templates/providers.php:224
806
+ msgid "The entered email address is invalid!"
807
+ msgstr ""
808
+
809
  #: nextend-facebook-connect/admin/templates/review.php:14
810
  msgid "Rate your experience!"
811
  msgstr ""
845
  msgstr ""
846
 
847
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
848
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84
849
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96
850
+ #, fuzzy
851
+ #| msgid "Login layout"
852
+ msgid "Register form"
853
+ msgstr "Login elrendezése"
854
 
855
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
856
  msgid "No Connect button"
863
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
864
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
865
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
866
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78
867
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144
868
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
869
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93
870
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159
871
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
872
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
873
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
874
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
875
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163
876
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
877
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:218
878
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
879
  msgid "Action:"
880
  msgstr "Action:"
881
 
888
  msgstr ""
889
 
890
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
891
+ #, fuzzy
892
+ #| msgid "Login form button style"
893
+ msgid "Register button style"
894
+ msgstr "Login gomb stílusa"
895
 
896
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
897
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:44
898
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
899
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
900
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
901
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96
902
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
903
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
904
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
905
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
906
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
907
  #: nextend-facebook-connect/widget.php:45
908
  msgid "Icon"
909
  msgstr "Imon"
910
 
911
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
912
+ #, fuzzy
913
+ #| msgid "Icon button"
914
+ msgid "Login button"
915
+ msgstr "Ikon gomb"
916
 
917
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:23
918
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
919
  msgid "Show"
920
  msgstr "Megjelenít"
921
 
922
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:26
923
  msgid "Hide"
924
  msgstr "Elrejt"
925
 
926
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
927
  #, php-format
928
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
929
  msgstr ""
930
  "Ahhoz, hogy ez a funkció működjön, be kell kapcsolnod a ' %1$s > %2$s > %3$s "
931
  "'-t."
932
 
933
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
934
  msgid "Discussion"
935
  msgstr ""
936
 
937
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
938
  msgid "Users must be registered and logged in to comment"
939
  msgstr ""
940
 
941
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:32
942
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
943
+ #, fuzzy
944
+ #| msgid "Button style:"
945
+ msgid "Button style"
946
+ msgstr "Gomb stílus:"
947
 
948
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
949
  msgid "Target window"
970
  msgstr ""
971
 
972
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
 
973
  msgid "Registration notification sent to"
974
  msgstr ""
975
 
976
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:59
977
  msgid "WordPress default"
978
  msgstr ""
979
 
980
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:62
981
  msgid "Nobody"
982
  msgstr ""
983
 
984
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:68
 
 
 
 
985
  msgid "Admin"
986
  msgstr ""
987
 
988
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:71
989
  msgid "User and Admin"
990
  msgstr ""
991
 
992
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
 
993
  msgid "Debug mode"
994
  msgstr "Debug mód"
995
 
996
+ #: nextend-facebook-connect/admin/templates/settings/general.php:61
997
+ msgid "Page for register flow"
998
+ msgstr ""
999
+
1000
+ #: nextend-facebook-connect/admin/templates/settings/general.php:65
1001
+ #: nextend-facebook-connect/admin/templates/settings/general.php:76
1002
+ msgid "None"
1003
+ msgstr ""
1004
+
1005
+ #: nextend-facebook-connect/admin/templates/settings/general.php:68
1006
+ #, php-format
1007
+ msgid ""
1008
+ "First create a new page for register flow and insert the following "
1009
+ "shortcode: %1$s then select this page above"
1010
+ msgstr ""
1011
+
1012
+ #: nextend-facebook-connect/admin/templates/settings/general.php:72
1013
+ msgid "OAuth redirect uri proxy page"
1014
  msgstr ""
1015
 
1016
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
1017
+ msgid ""
1018
+ "If your wp-login.php is not available to handle the OAuth flow create a new "
1019
+ "page and select it here. Otherwise don't select any page."
1020
+ msgstr ""
1021
+
1022
+ #: nextend-facebook-connect/admin/templates/settings/general.php:85
1023
+ msgid "Prevent external redirect overrides"
1024
+ msgstr ""
1025
+
1026
+ #: nextend-facebook-connect/admin/templates/settings/general.php:91
1027
+ msgid "Disable external redirects"
1028
+ msgstr ""
1029
+
1030
+ #: nextend-facebook-connect/admin/templates/settings/general.php:98
1031
  msgid "Default redirect url"
1032
  msgstr ""
1033
 
1034
+ #: nextend-facebook-connect/admin/templates/settings/general.php:111
1035
+ #: nextend-facebook-connect/admin/templates/settings/general.php:149
1036
  #, fuzzy
1037
  #| msgid "Social Login"
1038
  msgid "for Login"
1039
  msgstr "Közösségi belépés"
1040
 
1041
+ #: nextend-facebook-connect/admin/templates/settings/general.php:126
1042
+ #: nextend-facebook-connect/admin/templates/settings/general.php:164
1043
  msgid "for Register"
1044
  msgstr ""
1045
 
1046
+ #: nextend-facebook-connect/admin/templates/settings/general.php:136
1047
  #, fuzzy
1048
  #| msgid "Fixed redirect url for login"
1049
  msgid "Fixed redirect url"
1050
  msgstr "Fix átirányítási link belépésnél"
1051
 
1052
+ #: nextend-facebook-connect/admin/templates/settings/general.php:173
1053
+ #, fuzzy
1054
+ #| msgid "Fixed redirect url for login"
1055
+ msgid "Blacklisted redirects"
1056
+ msgstr "Fix átirányítási link belépésnél"
1057
+
1058
+ #: nextend-facebook-connect/admin/templates/settings/general.php:179
1059
+ msgid "If you want to blacklist redirect url params. One pattern per line."
1060
+ msgstr ""
1061
+
1062
+ #: nextend-facebook-connect/admin/templates/settings/general.php:184
1063
+ msgid "Support login restrictions"
1064
+ msgstr ""
1065
+
1066
+ #: nextend-facebook-connect/admin/templates/settings/general.php:194
1067
+ #, php-format
1068
+ msgid "Please visit to our %1$s to check what plugins are supported!"
1069
+ msgstr ""
1070
+
1071
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
1072
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1073
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1074
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1075
  msgid "Login form button style"
1076
  msgstr "Login gomb stílusa"
1077
 
1078
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
1079
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
1080
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52
1081
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
1082
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
1083
  msgid "Login layout"
1084
  msgstr "Login elrendezése"
1085
 
1086
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
1087
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
1088
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
1089
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109
1090
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1091
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124
1092
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1093
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
1094
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
1095
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
1096
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
1097
  msgid "Below"
1098
  msgstr "Alul"
1099
 
1100
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
1101
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
1102
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
1103
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115
1104
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1105
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
1106
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1107
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
1108
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1109
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1110
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192
1111
  msgid "Below with separator"
1112
  msgstr "Alul, elválasztóval"
1113
 
1118
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
1119
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
1120
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
1121
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121
1122
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1123
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1124
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1125
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1126
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1127
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1128
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198
1129
  msgid "Above"
1130
  msgstr "Felül"
1131
 
1132
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
1133
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
1134
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
1135
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127
1136
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1137
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1138
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1139
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1140
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1141
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1142
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204
1143
  msgid "Above with separator"
1144
  msgstr "Felül, elválasztóval"
1145
 
1169
  msgstr ""
1170
 
1171
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1172
+ #: nextend-facebook-connect/includes/userData.php:122
1173
  msgid "Registration Form"
1174
  msgstr ""
1175
 
1177
  msgid "Embedded login form"
1178
  msgstr ""
1179
 
1180
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69
1181
+ msgid "Sign Up form"
1182
  msgstr ""
1183
 
1184
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74
1185
+ #, fuzzy
1186
+ #| msgid "No Connect button in login form"
1187
+ msgid "No Connect button in Sign Up form"
1188
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1189
+
1190
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
1191
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1192
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92
1193
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46
1194
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51
1195
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104
1196
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
1197
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162
1198
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167
1199
+ #, fuzzy
1200
+ #| msgid "No Connect button in login form"
1201
+ msgid "Connect button on"
1202
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1203
+
1204
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84
1205
+ #, fuzzy
1206
+ #| msgid "Login form button style"
1207
+ msgid "Sign Up form button style"
1208
+ msgstr "Login gomb stílusa"
1209
+
1210
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103
1211
+ #, fuzzy
1212
+ #| msgid "Login layout"
1213
+ msgid "Sign Up layout"
1214
+ msgstr "Login elrendezése"
1215
+
1216
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135
1217
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150
1218
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212
1219
+ #, fuzzy
1220
+ #| msgid "WooCommerce account details"
1221
+ msgid "Account details"
1222
+ msgstr "WooCommerce fiók részletes beállítások"
1223
+
1224
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140
1225
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155
1226
  msgid "No link buttons"
1227
  msgstr ""
1228
 
1229
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143
1230
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158
1231
  msgid "Link buttons after account details"
1232
  msgstr "Összekapcsoló gombok a profil részletes beállításai után"
1233
 
1234
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1235
+ #: nextend-facebook-connect/nextend-social-login.php:155
1236
+ msgid ""
1237
+ "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1238
+ "\"_blank\">Privacy Policy</a>"
1239
+ msgstr ""
1240
+
1241
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1242
+ msgid "Store"
1243
+ msgstr ""
1244
+
1245
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1246
+ msgid "First and last name"
1247
+ msgstr ""
1248
+
1249
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1250
+ msgid "When not enabled, username will be randomly generated."
1251
+ msgstr ""
1252
+
1253
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1254
+ #: nextend-social-login-pro/class-provider-extension.php:320
1255
+ msgid "Email"
1256
+ msgstr "Email"
1257
+
1258
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1259
+ msgid "When not enabled, email will be empty."
1260
+ msgstr ""
1261
+
1262
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1263
+ #: nextend-facebook-connect/includes/avatar.php:46
1264
+ msgid "Avatar"
1265
+ msgstr ""
1266
+
1267
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1268
+ #: nextend-facebook-connect/includes/provider.php:985
1269
+ msgid "Access token"
1270
  msgstr ""
1271
 
1272
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1273
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38
1274
+ #, fuzzy
1275
+ #| msgid "Login layout"
1276
+ msgid "Login form"
1277
+ msgstr "Login elrendezése"
1278
+
1279
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1280
+ #, fuzzy
1281
+ #| msgid "No Connect button in login form"
1282
+ msgid "No Connect button in Login form"
1283
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1284
+
1285
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89
1286
+ #, fuzzy
1287
+ #| msgid "No Connect button in login form"
1288
+ msgid "No Connect button in Register form"
1289
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1290
+
1291
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
1292
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
1293
  #, fuzzy
1294
  #| msgid "Login form button style"
1295
  msgid "Register form button style"
1296
  msgstr "Login gomb stílusa"
1297
 
1298
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118
1299
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
1300
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
1301
  #, fuzzy
1302
  #| msgid "Login layout"
1303
  msgid "Register layout"
1304
  msgstr "Login elrendezése"
1305
 
1306
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1307
+ msgid "Register Form"
1308
+ msgstr ""
1309
 
1310
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43
1311
  msgid "No Connect button in login form"
1312
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1313
 
1314
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
 
 
 
 
 
 
 
 
 
 
 
 
1315
  msgid "No Connect button in register form"
1316
  msgstr ""
1317
 
1318
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154
1319
+ #, fuzzy
1320
+ #| msgid "WooCommerce billing form"
1321
+ msgid "Billing form"
 
 
 
 
 
 
 
1322
  msgstr "WooCommerce számlázási űrlap"
1323
 
1324
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159
1325
  msgid "No Connect button in billing form"
1326
  msgstr "Ne legyen összekapcsoló gomb a számlázási űrlapnál"
1327
 
1328
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
1329
+ #, fuzzy
1330
+ #| msgid "Login layout"
1331
+ msgid "Billing layout"
1332
+ msgstr "Login elrendezése"
 
 
1333
 
1334
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1335
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:222
1336
+ #, fuzzy
1337
+ #| msgid "Icon button"
1338
+ msgid "Link buttons on"
1339
+ msgstr "Ikon gomb"
1340
 
1341
+ #: nextend-facebook-connect/admin/templates/test-connection.php:41
1342
+ #, fuzzy, php-format
1343
+ #| msgid "Authentication successful"
1344
+ msgid "Network connection successful: %1$s"
1345
+ msgstr "Hitelesítés sikeres"
1346
 
1347
+ #: nextend-facebook-connect/admin/templates/test-connection.php:47
1348
+ #, php-format
1349
+ msgid "Network connection failed: %1$s"
1350
+ msgstr ""
1351
 
1352
+ #: nextend-facebook-connect/admin/templates/test-connection.php:50
1353
+ msgid ""
1354
+ "Please contact with your hosting provider to resolve the network issue "
1355
+ "between your server and the provider."
1356
  msgstr ""
1357
 
1358
+ #: nextend-facebook-connect/includes/avatar.php:47
1359
  msgid "Manage Avatar"
1360
  msgstr ""
1361
 
1362
+ #: nextend-facebook-connect/includes/avatar.php:48
1363
  #, php-format
1364
  msgid "Avatar <span class=\"count\">(%s)</span>"
1365
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1366
  msgstr[0] ""
1367
  msgstr[1] ""
1368
 
1369
+ #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1370
+ #: nextend-facebook-connect/includes/compat-wp-login.php:42
1371
+ #, php-format
1372
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1373
+ msgstr ""
1374
+
1375
+ #: nextend-facebook-connect/includes/compat-wp-login.php:97
1376
+ msgid "https://wordpress.org/"
1377
+ msgstr ""
1378
+
1379
+ #: nextend-facebook-connect/includes/compat-wp-login.php:98
1380
+ msgid "Powered by WordPress"
1381
+ msgstr ""
1382
+
1383
+ #. translators: %s: site title
1384
+ #: nextend-facebook-connect/includes/compat-wp-login.php:234
1385
+ #, php-format
1386
+ msgctxt "site"
1387
+ msgid "&larr; Back to %s"
1388
+ msgstr ""
1389
+
1390
+ #: nextend-facebook-connect/includes/provider-admin.php:196
1391
  msgid "Your configuration needs to be verified"
1392
  msgstr ""
1393
 
1394
+ #: nextend-facebook-connect/includes/provider-admin.php:197
1395
  msgid ""
1396
  "Before you can start letting your users register with your app it needs to "
1397
  "be tested. This test makes sure that no users will have troubles with the "
1405
  "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. "
1406
  "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van."
1407
 
1408
+ #: nextend-facebook-connect/includes/provider-admin.php:203
1409
  msgid "Please save your changes to verify settings."
1410
  msgstr ""
1411
 
1412
+ #: nextend-facebook-connect/includes/provider-admin.php:211
1413
  msgid "Works Fine"
1414
  msgstr "Megfelelően Működik"
1415
 
1416
+ #: nextend-facebook-connect/includes/provider-admin.php:225
1417
  #, php-format
1418
  msgid ""
1419
  "This provider is currently disabled, which means that users can’t register "
1422
  "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a "
1423
  "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal."
1424
 
1425
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1426
  #, php-format
1427
  msgid ""
1428
  "This provider works fine, but you can test it again. If you don’t want to "
1432
  "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s "
1433
  "fiókjukkal kikapcsolhatod a providertt."
1434
 
1435
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1436
  #, php-format
1437
  msgid ""
1438
  "This provider is currently enabled, which means that users can register or "
1441
  "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók "
1442
  "regisztrálhatnak és beléphetnek a %s fiókjukkal."
1443
 
1444
+ #: nextend-facebook-connect/includes/provider-admin.php:239
1445
  msgid "Verify Settings Again"
1446
  msgstr ""
1447
 
1448
+ #: nextend-facebook-connect/includes/provider-admin.php:240
1449
  msgid "Please save your changes before verifying settings."
1450
  msgstr ""
1451
 
1452
+ #: nextend-facebook-connect/includes/provider.php:347
1453
+ #: nextend-facebook-connect/includes/provider.php:643
1454
+ #: nextend-facebook-connect/includes/provider.php:648
1455
  msgid "Authentication successful"
1456
  msgstr "Hitelesítés sikeres"
1457
 
1458
+ #: nextend-facebook-connect/includes/provider.php:587
1459
+ #: nextend-facebook-connect/includes/user.php:109
1460
  msgid "Authentication error"
1461
  msgstr "Hitelesítési hiba"
1462
 
1463
+ #: nextend-facebook-connect/includes/provider.php:602
1464
  msgid "Unlink successful."
1465
  msgstr "Szétkapcsolás sikeres"
1466
 
1467
+ #: nextend-facebook-connect/includes/provider.php:799
1468
+ #: nextend-facebook-connect/includes/provider.php:806
1469
  msgid "The test was successful"
1470
  msgstr "A teszt sikeres volt"
1471
 
1472
+ #: nextend-facebook-connect/includes/provider.php:852
1473
  msgid "Authentication failed"
1474
  msgstr "Hitelesítés sikertelen"
1475
 
1476
+ #: nextend-facebook-connect/includes/provider.php:977
1477
+ msgid "Identifier"
1478
+ msgstr ""
1479
+
1480
+ #: nextend-facebook-connect/includes/provider.php:993
1481
+ msgid "Profile picture"
1482
+ msgstr ""
1483
+
1484
+ #: nextend-facebook-connect/includes/user.php:69
1485
  #, php-format
1486
  msgid ""
1487
  "Your %1$s account is successfully linked with your account. Now you can sign "
1490
  "A(z) %1$s fiók sikeresen össze lett kapcsolva a fiókoddal. Már könnyedén be "
1491
  "tudsz lépni a %2$s fiókoddal is."
1492
 
1493
+ #: nextend-facebook-connect/includes/user.php:72
1494
  #, php-format
1495
  msgid ""
1496
  "You have already linked a(n) %s account. Please unlink the current and then "
1497
  "you can link other %s account."
1498
  msgstr ""
1499
 
1500
+ #: nextend-facebook-connect/includes/user.php:77
1501
  #, php-format
1502
  msgid "This %s account is already linked to other user."
1503
  msgstr ""
1504
 
1505
+ #: nextend-facebook-connect/includes/userData.php:122
1506
+ msgid "Register For This Site!"
1507
+ msgstr ""
1508
+
1509
  #. translators: %2$s: PHP version
1510
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1511
  #, php-format
1520
  "version, the plugin is currently NOT ACTIVE."
1521
  msgstr ""
1522
 
1523
+ #: nextend-facebook-connect/nextend-social-login.php:77
1524
+ #: nextend-facebook-connect/nextend-social-login.php:84
1525
  #, php-format
1526
  msgid "Please update %1$s to version %2$s or newer."
1527
  msgstr ""
1528
 
1529
+ #: nextend-facebook-connect/nextend-social-login.php:77
1530
+ #: nextend-facebook-connect/nextend-social-login.php:84
1531
  msgid "Update now!"
1532
  msgstr ""
1533
 
1534
+ #: nextend-facebook-connect/nextend-social-login.php:91
1535
+ #, php-format
1536
+ msgid "Your domain name changed so you must authorize %1$s again."
1537
+ msgstr ""
1538
+
1539
+ #: nextend-facebook-connect/nextend-social-login.php:485
1540
  #, php-format
1541
  msgid ""
1542
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1545
  "%s átvette a Nextend Google Connect helyét. Letörölheted a Nextend Google "
1546
  "Connect plguint, mivel már nincs rá szükség."
1547
 
1548
+ #: nextend-facebook-connect/nextend-social-login.php:496
1549
  #, php-format
1550
  msgid ""
1551
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1554
  "%s átvette a Nextend Twitter Connect helyét. Letörölheted a Nextend Twitter "
1555
  "Connect plguint, mivel már nincs rá szükség."
1556
 
1557
+ #: nextend-facebook-connect/nextend-social-login.php:760
1558
+ #: nextend-facebook-connect/nextend-social-login.php:1106
 
 
 
 
1559
  msgid "Social Login"
1560
  msgstr "Közösségi belépés"
1561
 
1562
+ #: nextend-facebook-connect/nextend-social-login.php:1087
1563
  msgid "Social Accounts"
1564
  msgstr ""
1565
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1566
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1567
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1568
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1569
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1570
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
 
1571
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1572
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1573
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1586
  msgstr ""
1587
 
1588
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1589
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1590
  #, php-format
1591
  msgid ""
1592
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1594
  "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1595
 
1596
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1597
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1598
  msgid "Click on \"Save Changes\""
1599
  msgstr "Kattints a \"Save Changes\"-re"
1600
 
1613
  msgid "How to get SSL for my WordPress site?"
1614
  msgstr ""
1615
 
1616
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
1617
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1618
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1619
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1632
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
1633
  "alapján."
1634
 
1635
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1636
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1637
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1638
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1639
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1640
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1641
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1642
  #, php-format
1643
  msgctxt "App creation"
1644
  msgid "Create %s"
1645
  msgstr "%s létrehozása"
1646
 
1647
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1648
  msgid "Click on the \"Add a New App\" button"
1649
  msgstr "Kattints az \"Add a New App\" gombra"
1650
 
1651
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1652
  msgid "Fill \"Display Name\" and \"Contact Email\""
1653
  msgstr ""
1654
  "Töltsd ki a \"Display name\" mezőt az app nevével. A \"Contact Email\" "
1655
  "mezőbe írd be az email címet, amin keresztül elérhetnek."
1656
 
1657
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1658
  msgid "Click on blue \"Create App ID\" button"
1659
  msgstr "Kattints a kék \"Create App ID\" gombra"
1660
 
1661
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1662
  msgid ""
1663
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1664
  "button"
1666
  "Vidd a kurzort a \"Facebook Login\" doboz fölé és kattints a megjelenő \"Set "
1667
  "Up\" gombra."
1668
 
1669
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1670
  msgid "Choose Web"
1671
  msgstr "Válaszd a \"Web\"-et"
1672
 
1673
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1674
  #, php-format
1675
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1676
  msgstr ""
1677
  "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg ez "
1678
  "lesz az: <b>%s</b>"
1679
 
1680
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1681
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
1682
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1683
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
1684
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
1685
  msgid "Click on \"Save\""
1686
  msgstr "Kattints a \"Save\" gombra"
1687
 
1688
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1689
  msgid "In the left sidebar, click on \"Facebook Login\""
1690
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1691
 
1692
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1693
  msgid "In the top of the left sidebar, click on \"Settings\""
1694
  msgstr "A bal oldali menü tetején kattints a \"Settings\"-re"
1695
 
1696
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1697
  msgid ""
1698
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1699
  "click on the \"Show\" button. These will be needed in plugin's settings."
1701
  "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
1702
  "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
1703
 
1704
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1705
  msgid "Enter your domain name to the App Domains"
1706
  msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
1707
 
1708
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1709
  msgid ""
1710
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1711
  "accessible privacy policy that explains what data you are collecting and how "
1715
  "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen "
1716
  "információkat gyűjtesz és mihez kezdesz velük."
1717
 
1718
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1719
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1720
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1721
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1722
  msgid "Save your changes."
1723
  msgstr "Mentsd el a módosításaidat."
1724
 
1725
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1726
  msgid ""
1727
  "Your application is currently private, which means that only you can log in "
1728
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1731
  "vele. A bal oldali menüben válaszd az \"App Review\" gombot és tedd "
1732
  "nyilvánossá az Appodat."
1733
 
1734
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1735
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
1736
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1737
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1738
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1739
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1740
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1741
  #, php-format
1742
  msgid "I am done setting up my %s"
1889
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1890
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1891
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1892
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1893
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1894
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1895
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1896
  msgid "Required"
1901
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1902
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1903
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1904
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1905
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1906
  #, php-format
1907
  msgid ""
1927
  msgid "Unlink account from <b>Facebook</b>"
1928
  msgstr "Szétkapcsolás <b>Facebook</b>-kal"
1929
 
1930
+ #: nextend-facebook-connect/providers/facebook/facebook.php:154
1931
+ #: nextend-facebook-connect/providers/google/google.php:144
1932
+ #: nextend-facebook-connect/providers/twitter/twitter.php:105
1933
+ #: nextend-social-login-pro/providers/amazon/amazon.php:63
1934
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1935
+ #: nextend-social-login-pro/providers/paypal/paypal.php:125
1936
+ #: nextend-social-login-pro/providers/vk/vk.php:60
1937
  #, php-format
1938
  msgid ""
1939
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1941
  "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s "
1942
  "helyes."
1943
 
1944
+ #: nextend-facebook-connect/providers/facebook/facebook.php:333
1945
+ #: nextend-social-login-pro/providers/paypal/paypal.php:201
1946
+ #, php-format
1947
+ msgid "Required scope: %1$s"
1948
+ msgstr ""
1949
+
1950
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1951
+ #, fuzzy
1952
+ #| msgid "Buttons"
1953
+ msgid "Button skin"
1954
+ msgstr "Gombok"
1955
+
1956
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1957
+ msgid "Uniform"
1958
+ msgstr ""
1959
+
1960
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1961
+ msgid "Light"
1962
+ msgstr ""
1963
+
1964
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:20
1965
+ msgid "Dark"
1966
+ msgstr ""
1967
+
1968
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1969
  msgid "Click on the \"Credentials\" in the left hand menu"
1970
  msgstr ""
1975
  msgstr ""
1976
 
1977
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1978
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1979
  #, php-format
1980
  msgid ""
1981
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1983
  "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1984
 
1985
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1986
+ #, fuzzy
1987
+ #| msgid ""
1988
+ #| "If you don't have a project yet, you'll need to create one. You can do "
1989
+ #| "this by clicking on the blue \"Create project\" button on the right side"
1990
  msgid ""
1991
  "If you don't have a project yet, you'll need to create one. You can do this "
1992
+ "by clicking on the blue \"Create project\" button on the right side! ( If "
1993
+ "you already have a project, click on the name of your project in the "
1994
+ "dashboard instead, which will bring up a modal and click New Project. )"
1995
  msgstr ""
1996
  "Ha még nincs projected, újat kell készítened. Ezt megteheted a kék \"Create "
1997
  "project\" gombra kattintva a jobb oldalon."
1998
 
1999
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2000
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2001
+ #, fuzzy
2002
+ #| msgid "Click on the Create button"
2003
+ msgid "Click the Create button."
2004
+ msgstr "Kattints a \"Create\" gombra"
2005
 
2006
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2007
+ #, fuzzy
2008
+ #| msgid "Name your project and then click on the Create button"
2009
+ msgid "Name your project and then click on the Create button again"
2010
+ msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra"
2011
+
2012
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2013
  msgid "Once you have a project, you'll end up in the dashboard."
2014
  msgstr "Ha van már projekted át leszel irányítva az irányítópultra"
2015
 
2016
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2017
  msgid ""
2018
  "Click on the \"Credentials\" in the left hand menu to create new API "
2019
  "credentials"
2021
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
2022
  "adatokat készíts"
2023
 
2024
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2025
+ msgid "Select \"OAuth client ID\" from the dropdown."
 
 
2026
  msgstr ""
 
 
2027
 
2028
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2029
+ #, fuzzy
2030
+ #| msgid ""
2031
+ #| "Go to the OAuth consent screen tab and enter a product name and provide "
2032
+ #| "the Privacy Policy URL, then click on the save button."
2033
  msgid ""
2034
+ "If you're prompted to set a product name, do so. Provide the Privacy Policy "
2035
+ "URL as well then click on the save button"
 
2036
  msgstr ""
2037
+ "Menj az \"OAuth consent screen\" fülre. Írd be a termék nevét és írd be a "
2038
+ "linket az Adatvédelmi Irányelvek oldalad linkjét. Kattints a Save gombra."
 
2039
 
2040
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
2041
  msgid "Your application type should be \"Web application\""
2042
  msgstr "Az applikációd típusa legyen \"Web application\""
2043
 
2044
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2045
  msgid "Name your application"
2046
  msgstr "Adj nevet az alkalmazásodnak"
2047
 
2048
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2049
  msgid "Click on the Create button"
2050
  msgstr "Kattints a \"Create\" gombra"
2051
 
2052
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2053
  msgid ""
2054
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2055
  "the Credentials in the left hand menu and select your app by clicking on its "
2077
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
2078
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2079
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2080
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2081
  msgid "Client ID"
2082
  msgstr "Client ID"
2083
 
2087
  msgid "Client Secret"
2088
  msgstr "Client Secret"
2089
 
2090
+ #: nextend-facebook-connect/providers/google/google.php:89
2091
  msgid "Continue with <b>Google</b>"
2092
  msgstr "Folytatás a <b>Google-el</b>"
2093
 
2094
+ #: nextend-facebook-connect/providers/google/google.php:90
2095
  msgid "Link account with <b>Google</b>"
2096
  msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
2097
 
2098
+ #: nextend-facebook-connect/providers/google/google.php:91
2099
  msgid "Unlink account from <b>Google</b>"
2100
  msgstr "Szétkapcsolás <b>Google</b>-lel"
2101
 
2102
+ #: nextend-facebook-connect/providers/google/google.php:329
2103
+ #, fuzzy, php-format
2104
+ #| msgid "Required"
2105
+ msgid "Required API: %1$s"
2106
+ msgstr "Kötelező"
2107
+
2108
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2109
+ #, fuzzy
2110
+ #| msgid "Name your project and then click on the Create button"
2111
+ msgid "Find your App and click on the Details button"
2112
+ msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra"
2113
 
2114
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2115
+ msgid ""
2116
+ "The Edit button can be found on the App details tab. Click on it and select "
2117
+ "Edit details"
2118
  msgstr ""
2119
 
2120
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2121
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2122
+ #, fuzzy, php-format
2123
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2124
+ msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2125
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2126
 
2127
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2128
+ #, fuzzy, php-format
2129
+ #| msgid "Log in with your %s credentials if you are not logged in"
2130
+ msgid "Log in with your %s credentials if you are not logged in yet"
2131
+ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2132
 
2133
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2134
+ msgid ""
2135
+ "If you don't have a developer account yet, please apply one by filling all "
2136
+ "the required details! This is required for the next steps!"
2137
+ msgstr ""
2138
 
2139
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2140
  #, php-format
2141
  msgid ""
2142
+ "Once your developer account is complete, navigate back to %s if you aren't "
2143
+ "already there!"
2144
+ msgstr ""
2145
+
2146
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2147
+ #, fuzzy, php-format
2148
+ #| msgid ""
2149
+ #| "Fill the name and description fields. Then enter your site's URL to the "
2150
+ #| "Website field: <b>%s</b>"
2151
+ msgid ""
2152
+ "Fill the App name, Application description fields. Then enter your site's "
2153
+ "URL to the Website URL field: <b>%s</b>"
2154
  msgstr ""
2155
  "Írd be az appod nevét a \"name\" és a leírását a \"description\" mezőbe. "
2156
  "Aztán írd be az oldalad címét a Website mezőbe: <b>%s</b>"
2157
 
2158
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2159
+ msgid "Tick the checkbox next to Enable Sign in with Twitter!"
2160
+ msgstr ""
2161
 
2162
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2163
  msgid ""
2164
+ "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us how "
2165
+ "this app will be used” fields!"
2166
  msgstr ""
 
 
2167
 
2168
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2169
+ #, fuzzy
2170
+ #| msgid "Name your project and then click on the Create button"
2171
+ msgid "Read the Developer Terms and click the Create button again!"
2172
+ msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra"
2173
+
2174
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2175
+ msgid "Select the Permissions tab and click Edit."
2176
+ msgstr ""
2177
+
2178
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2179
  msgid ""
2180
+ "Tick the Request email address from users under the Additional permissions "
2181
+ "section and click Save."
2182
+ msgstr ""
2183
+
2184
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2185
+ #, fuzzy
2186
+ #| msgid ""
2187
+ #| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
2188
+ msgid "Go to the Keys and tokens tab and find the API key and API secret key"
2189
  msgstr ""
2190
  "Menj a \"Keys and Access Tokens\" fülre ahol megtalálod a \"Consumer Key\"-t "
2191
  "és \"Secret\"-et"
2199
  msgstr "Menj a \"Settings\" fülre."
2200
 
2201
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2202
+ msgid "API Key"
2203
+ msgstr ""
2204
 
2205
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2206
+ msgid "API secret key"
2207
+ msgstr ""
2208
+
2209
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2210
+ msgid "Profile image size"
2211
+ msgstr ""
2212
 
2213
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2214
+ msgid "Original"
2215
+ msgstr ""
2216
+
2217
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2218
  msgid "Continue with <b>Twitter</b>"
2219
  msgstr "Folytatás a <b>Twitterrel</b>"
2220
 
2221
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2222
  msgid "Link account with <b>Twitter</b>"
2223
  msgstr "Fiók összekapcsolása a <b>Twitter</b>-rel"
2224
 
2225
+ #: nextend-facebook-connect/providers/twitter/twitter.php:74
2226
  msgid "Unlink account from <b>Twitter</b>"
2227
  msgstr "Szétkapcsolás <b>Twitter</b>-rel"
2228
 
2247
  msgid "Show unlink buttons"
2248
  msgstr ""
2249
 
2250
+ #: nextend-social-login-pro/class-provider-extension.php:115
2251
  msgid "Social login is not allowed with this role!"
2252
  msgstr ""
2253
  "A közösségi fiókkal való belépés nem engedélyezett erre a felhasználói "
2254
  "szintre."
2255
 
 
2256
  #: nextend-social-login-pro/class-provider-extension.php:211
2257
+ #: nextend-social-login-pro/class-provider-extension.php:214
2258
+ #: nextend-social-login-pro/class-provider-extension.php:220
2259
+ #: nextend-social-login-pro/class-provider-extension.php:227
2260
+ #: nextend-social-login-pro/class-provider-extension.php:298
2261
+ #: nextend-social-login-pro/class-provider-extension.php:301
2262
+ #: nextend-social-login-pro/class-provider-extension.php:305
2263
  msgid "ERROR"
2264
  msgstr "HIBA"
2265
 
2266
+ #: nextend-social-login-pro/class-provider-extension.php:211
2267
  msgid "Please enter a username."
2268
  msgstr ""
2269
 
2270
+ #: nextend-social-login-pro/class-provider-extension.php:214
2271
  msgid ""
2272
  "This username is invalid because it uses illegal characters. Please enter a "
2273
  "valid username."
2274
  msgstr ""
2275
 
2276
+ #: nextend-social-login-pro/class-provider-extension.php:220
2277
  msgid "This username is already registered. Please choose another one."
2278
  msgstr ""
2279
 
2280
+ #: nextend-social-login-pro/class-provider-extension.php:227
2281
  msgid "Sorry, that username is not allowed."
2282
  msgstr ""
2283
 
2284
+ #: nextend-social-login-pro/class-provider-extension.php:245
2285
+ msgid "Username"
2286
+ msgstr ""
2287
+
2288
+ #: nextend-social-login-pro/class-provider-extension.php:298
2289
  msgid "Please enter an email address."
2290
  msgstr ""
2291
 
2292
+ #: nextend-social-login-pro/class-provider-extension.php:301
2293
  msgid "The email address isn&#8217;t correct."
2294
  msgstr ""
2295
 
2296
+ #: nextend-social-login-pro/class-provider-extension.php:305
2297
  msgid "This email is already registered, please choose another one."
2298
  msgstr ""
2299
 
2300
+ #: nextend-social-login-pro/class-provider-extension.php:325
2301
+ msgid "Registration confirmation will be emailed to you."
2302
+ msgstr ""
2303
+
2304
+ #: nextend-social-login-pro/class-provider-extension.php:376
2305
  msgid "<strong>ERROR</strong>: Please enter a password."
2306
  msgstr ""
2307
 
2308
+ #: nextend-social-login-pro/class-provider-extension.php:382
2309
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
2310
  msgstr ""
2311
 
2312
+ #: nextend-social-login-pro/class-provider-extension.php:388
2313
  msgid ""
2314
  "<strong>ERROR</strong>: Please enter the same password in both password "
2315
  "fields."
2316
  msgstr ""
2317
 
2318
+ #: nextend-social-login-pro/class-provider-extension.php:405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2319
  msgid "Password"
2320
  msgstr ""
2321
 
2322
+ #: nextend-social-login-pro/class-provider-extension.php:415
2323
  msgid "Strength indicator"
2324
  msgstr ""
2325
 
2326
+ #: nextend-social-login-pro/class-provider-extension.php:420
2327
  msgid "Confirm use of weak password"
2328
  msgstr ""
2329
 
2330
+ #: nextend-social-login-pro/class-provider-extension.php:426
2331
  msgid "Confirm password"
2332
  msgstr ""
2333
 
2334
+ #: nextend-social-login-pro/class-provider-extension.php:438
2335
  #, php-format
2336
  msgid ""
2337
  "This email is already registered, please login in to your account to link "
2356
  msgstr ""
2357
 
2358
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2359
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
2360
  #, fuzzy, php-format
2361
  #| msgid "Visit %s."
2362
  msgid "Visit %s"
2363
  msgstr "Látogass el ide: %s."
2364
 
2365
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2366
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2367
  msgid ""
2368
  "On the right side, under \"Manage\", hover over the gear icon and select "
2369
  "\"Web Settings\" option."
2370
  msgstr ""
2371
 
2372
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2373
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2374
  msgid "Click \"Edit\"."
2375
  msgstr ""
2376
 
2377
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
2378
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2379
  #, fuzzy, php-format
2380
  #| msgid ""
2381
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2384
  msgstr ""
2385
  "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: <b>%s</b>"
2386
 
2387
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2388
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2389
  #, fuzzy, php-format
2390
  #| msgid ""
2391
  #| "To allow your visitors to log in with their %1$s account, first you must "
2406
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
2407
  "alapján."
2408
 
2409
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2410
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2411
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2412
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2413
  #, fuzzy, php-format
2414
  #| msgid "Log in with your %s credentials if you are not logged in"
2415
  msgid "Log in with your %s credentials if you are not logged in."
2416
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2417
 
2418
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2419
  #, fuzzy
2420
  #| msgid ""
2421
  #| "If you don't have a project yet, you'll need to create one. You can do "
2428
  "Ha még nincs projected, újat kell készítened. Ezt megteheted a kék \"Create "
2429
  "project\" gombra kattintva a jobb oldalon."
2430
 
2431
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2432
  msgid ""
2433
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
2434
  "\"Consent Privacy Notice URL\"."
2435
  msgstr ""
2436
 
2437
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2438
  msgid "Once you filled all the required fields, click \"Save\"."
2439
  msgstr ""
2440
 
2441
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2442
  #, fuzzy, php-format
2443
  #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2444
  msgid ""
2447
  "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg ez "
2448
  "lesz az: <b>%s</b>"
2449
 
2450
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2451
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
2452
  msgid "When all fields are filled, click \"Save\"."
2453
  msgstr ""
2454
 
2455
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2456
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
2457
  msgstr ""
2458
 
2459
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2460
  msgid ""
2461
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
2462
  "page."
2463
  msgstr ""
2464
 
2465
  #: nextend-social-login-pro/providers/amazon/amazon.php:37
 
 
2466
  msgid "Continue with <b>Amazon</b>"
2467
+ msgstr "Folytatás az <b>Amazon</b>-nal"
2468
 
2469
  #: nextend-social-login-pro/providers/amazon/amazon.php:38
 
 
2470
  msgid "Link account with <b>Amazon</b>"
2471
+ msgstr "Fiók összekapcsolása az <b>Amazon</b>-nal"
2472
 
2473
  #: nextend-social-login-pro/providers/amazon/amazon.php:39
 
 
2474
  msgid "Unlink account from <b>Amazon</b>"
2475
+ msgstr "Szétkapcsolás <b>Amazon</b>-tól"
2476
+
2477
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2478
+ msgid "Click on the App"
2479
+ msgstr ""
2480
 
2481
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
2482
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
2525
  "Valószínűleg be kell kapcsolnod a \"r_emailaddress\"-t a \"Default "
2526
  "Application Permissions\" alatt"
2527
 
2528
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:62
2529
  msgid "Continue with <b>LinkedIn</b>"
2530
  msgstr "Folytatás a <b>LinkedInnel</b>"
2531
 
2532
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2533
  msgid "Link account with <b>LinkedIn</b>"
2534
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
2535
 
2536
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:64
2537
  msgid "Unlink account from <b>LinkedIn</b>"
2538
  msgstr "Szétkapcsolás <b>LinkedIn</b>-nel"
2539
 
2540
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
2541
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2542
+ msgid "Scroll down to \"REST API apps\"."
2543
+ msgstr ""
2544
+
2545
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2546
+ #, fuzzy, php-format
2547
+ #| msgid "Click on the Create button"
2548
+ msgid "Click on the name of your %s App."
2549
+ msgstr "Kattints a \"Create\" gombra"
2550
+
2551
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2552
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2553
+ msgid "Select the \"Live\" option on the top-right side. "
2554
+ msgstr ""
2555
+
2556
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13
2557
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2558
+ msgid ""
2559
+ "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" heading "
2560
+ "and click \"Show\"."
2561
+ msgstr ""
2562
+
2563
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14
2564
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
2565
+ #, fuzzy, php-format
2566
+ #| msgid ""
2567
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2568
+ #| "b>"
2569
+ msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2570
+ msgstr ""
2571
+ "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: <b>%s</b>"
2572
+
2573
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
2574
+ #, fuzzy
2575
+ #| msgid "Click on the \"Create New App\" button"
2576
+ msgid "Click the \"Create App\" button."
2577
+ msgstr "Kattints a \"Create New App\" gombra"
2578
+
2579
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
2580
+ msgid "Fill the \"App Name\" field and click \"Create App\" button."
2581
+ msgstr ""
2582
+
2583
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
2584
+ msgid ""
2585
+ "Scroll down to \"App feature options\" section and tick \"Log In with PayPal"
2586
+ "\"."
2587
+ msgstr ""
2588
+
2589
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
2590
+ msgid ""
2591
+ "Click \"Advanced Options\" which can be found at the end of text \"Log In "
2592
+ "with PayPal\"."
2593
+ msgstr ""
2594
+
2595
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
2596
+ msgid "Tick \"Full name\" and \"Email address\"."
2597
+ msgstr ""
2598
+
2599
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27
2600
+ msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
2601
+ msgstr ""
2602
+
2603
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29
2604
+ msgid ""
2605
+ "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary "
2606
+ "\"Client ID\" and \"Secret\"! ( Make sure you are in \"Live\" mode and not "
2607
+ "\"Sandbox\" )."
2608
+ msgstr ""
2609
+
2610
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
2611
+ msgid "Secret"
2612
+ msgstr "Secret"
2613
+
2614
+ #: nextend-social-login-pro/providers/paypal/paypal.php:99
2615
+ msgid "Continue with <b>PayPal</b>"
2616
+ msgstr "Folytatás a <b>PayPal</b>-al"
2617
+
2618
+ #: nextend-social-login-pro/providers/paypal/paypal.php:100
2619
+ msgid "Link account with <b>PayPal</b>"
2620
+ msgstr "Fiók összekapcsolása a <b>PayPal</b>-al"
2621
+
2622
+ #: nextend-social-login-pro/providers/paypal/paypal.php:101
2623
+ msgid "Unlink account from <b>PayPal</b>"
2624
+ msgstr "Szétkapcsolás <b>PayPal</b>-tól"
2625
+
2626
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
2627
  #, fuzzy
2628
  #| msgid "Click on the Create button"
2636
  msgstr "Menj a \"Settings\" fülre."
2637
 
2638
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12
2639
+ #, php-format
 
 
2640
  msgid ""
2641
  "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
2642
  msgstr ""
2721
  msgstr ""
2722
 
2723
  #: nextend-social-login-pro/providers/vk/vk.php:34
 
 
2724
  msgid "Continue with <b>VK</b>"
2725
+ msgstr "Folytatás a <b>VK</b>-val"
2726
 
2727
  #: nextend-social-login-pro/providers/vk/vk.php:35
 
 
2728
  msgid "Link account with <b>VK</b>"
2729
+ msgstr "Fiók összekapcsolása a <b>VK</b>-val"
2730
 
2731
  #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
2732
  msgid "Unlink account from <b>VK</b>"
2733
+ msgstr "Szétkapcsolás <b>VK</b>-tól"
2734
+
2735
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2736
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2737
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:11
2738
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:8
2739
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
2740
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
2741
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
2742
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
2743
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
2744
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
2745
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
2746
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
2747
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
2748
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
2749
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
2750
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
2751
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
2752
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
2753
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
2754
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
2755
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
2756
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
2757
  msgid "OR"
2758
  msgstr "VAGY"
2759
 
2760
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
2761
+ #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:1
2762
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2763
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2764
  msgid "Social accounts"
2765
  msgstr "Közösségi fiókok"
2766
 
2767
+ #, fuzzy
2768
+ #~| msgid ""
2769
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2770
+ #~| "b>"
2771
+ #~ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2772
+ #~ msgstr ""
2773
+ #~ "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: <b>%s</b>"
2774
+
2775
+ #, fuzzy
2776
+ #~| msgid "Click on \"Save\""
2777
+ #~ msgid "Click on \"Update\""
2778
+ #~ msgstr "Kattints a \"Save\" gombra"
2779
+
2780
+ #, fuzzy
2781
+ #~| msgid "Click on the \"Create New App\" button"
2782
+ #~ msgid "Click on the \"Create New Application\" button."
2783
+ #~ msgstr "Kattints a \"Create New App\" gombra"
2784
+
2785
+ #, fuzzy
2786
+ #~| msgid "Click on the \"Create New App\" button"
2787
+ #~ msgid "Click the \"Create\" button!"
2788
+ #~ msgstr "Kattints a \"Create New App\" gombra"
2789
+
2790
+ #, fuzzy
2791
+ #~ msgid ""
2792
+ #~ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2793
+ #~ "needed in the plugin's settings."
2794
+ #~ msgstr ""
2795
+ #~ "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
2796
+ #~ "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
2797
+
2798
+ #~ msgid "Continue with <b>WordPress.com</b>"
2799
+ #~ msgstr "Folytatás a <b>WordPress.com</b>-al"
2800
+
2801
+ #~ msgid "Link account with <b>WordPress.com</b>"
2802
+ #~ msgstr "Fiók összekapcsolása a <b>WordPress.com</b>-al"
2803
+
2804
+ #~ msgid "Unlink account from <b>WordPress.com</b>"
2805
+ #~ msgstr "Szétkapcsolás <b>WordPress.com</b>-tól"
2806
+
2807
+ #~ msgid ""
2808
+ #~ "Go back to the Credentials tab and locate the small box at the middle. "
2809
+ #~ "Click on the blue \"Create credentials\" button. Chose the \"OAuth client "
2810
+ #~ "ID\" from the dropdown list."
2811
+ #~ msgstr ""
2812
+ #~ "Menj vissza a \"Credentials\" fülre és keresd meg a kis dobozt középen. "
2813
+ #~ "Kattints a kék \"Create credentials\" gombra. Válaszd ki az \"OAuth "
2814
+ #~ "client ID\"-t a lenyíló listából."
2815
+
2816
+ #~ msgid "Accept the Twitter Developer Agreement"
2817
+ #~ msgstr "Fogadd el a Twitter Fejlesztői Megállapodást"
2818
+
2819
+ #~ msgid ""
2820
+ #~ "Create your application by clicking on the Create your Twitter "
2821
+ #~ "application button"
2822
+ #~ msgstr ""
2823
+ #~ "Hozd létre az alkalmazásodat a \"Create your Twitter application\" gombra "
2824
+ #~ "kattintva"
2825
+
2826
+ #~ msgid "Consumer Key"
2827
+ #~ msgstr "Consumer Key"
2828
+
2829
+ #~ msgid "Consumer Secret"
2830
+ #~ msgstr "Consumer Secret"
2831
+
2832
+ #~ msgid "Comment login button"
2833
+ #~ msgstr "Belépés gomb a kommenteknél"
2834
+
2835
+ #~ msgid "Comment button style"
2836
+ #~ msgstr "Gomb stílusa a kommenteknél"
2837
+
2838
+ #~ msgid "WooCommerce login form"
2839
+ #~ msgstr "WooCommerce belépési űrlap"
2840
+
2841
+ #~ msgid "Connect button before login form"
2842
+ #~ msgstr "Belépés gomb a belépési űrlap előtt"
2843
+
2844
+ #~ msgid "Connect button after login form"
2845
+ #~ msgstr "Belépés gomb a belépési űrlap után"
2846
+
2847
+ #~ msgid "Connect button before billing form"
2848
+ #~ msgstr "Belépés gomb a számlázási űrlap előtt"
2849
+
2850
+ #~ msgid "Connect button after billing form"
2851
+ #~ msgstr "Belépés gomb a számlázási űrlapon"
2852
+
2853
+ #~ msgid "Link buttons before account details"
2854
+ #~ msgstr "Összekapcsoló gombok a profil részletes beállításai előtt"
2855
+
2856
+ #~ msgid "WooCommerce button style"
2857
+ #~ msgstr "WooCommerce gomb stílusa"
2858
+
2859
  #~ msgid "Use custom"
2860
  #~ msgstr "Egyedi gomb használata"
2861
 
languages/nextend-facebook-connect-pt_BR.mo CHANGED
Binary file
languages/nextend-facebook-connect-pt_BR.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 2018-05-08 15:05+0200\n"
5
- "PO-Revision-Date: 2018-05-08 15:05+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.7\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -26,48 +26,158 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
- #: nextend-facebook-connect/admin/admin.php:187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  #, php-format
31
  msgid "%s needs json_decode function."
32
  msgstr "%s precisa da função json_decode."
33
 
34
- #: nextend-facebook-connect/admin/admin.php:187
35
  msgid "Please contact your server administrator and ask for solution!"
36
  msgstr ""
37
- "Por favor, entre em contato com o seu administrador do servidor e peça uma "
38
- "solução!"
39
 
40
- #: nextend-facebook-connect/admin/admin.php:214
41
- #: nextend-facebook-connect/admin/admin.php:256
42
  msgid "Settings saved."
43
  msgstr "Configurações salvas."
44
 
45
- #: nextend-facebook-connect/admin/admin.php:223
46
  msgid "The authorization was successful"
47
  msgstr "A autorização foi bem sucedida"
48
 
49
- #: nextend-facebook-connect/admin/admin.php:234
50
  msgid "Deauthorize completed."
51
  msgstr "Desautorização concluída."
52
 
53
- #: nextend-facebook-connect/admin/admin.php:374
54
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
55
  #: nextend-facebook-connect/admin/templates/providers.php:84
56
  #: nextend-facebook-connect/admin/templates/providers.php:96
57
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
58
  msgid "Settings"
59
  msgstr "Configurações"
60
 
61
- #: nextend-facebook-connect/admin/admin.php:448
62
- #: nextend-facebook-connect/includes/oauth2.php:131
63
- #: nextend-facebook-connect/includes/oauth2.php:273
64
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
65
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:155
66
  #, php-format
67
  msgid "Unexpected response: %s"
68
  msgstr "Resposta inesperada: %s"
69
 
70
- #: nextend-facebook-connect/admin/admin.php:506
71
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
72
  #, php-format
73
  msgid ""
@@ -77,15 +187,15 @@ msgstr ""
77
  "%s detectou que sua url de login mudou. Você deve atualizar as URIs de "
78
  "redirecionamento do Oauth nas aplicações sociais relacionados."
79
 
80
- #: nextend-facebook-connect/admin/admin.php:507
81
  msgid "Fix Error"
82
- msgstr "Forrigir Erro"
83
 
84
- #: nextend-facebook-connect/admin/admin.php:507
85
  msgid "Oauth Redirect URI"
86
  msgstr "URI de Redirecionamento do OAuth"
87
 
88
- #: nextend-facebook-connect/admin/admin.php:517
89
  #, php-format
90
  msgid ""
91
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -94,79 +204,136 @@ msgstr ""
94
  "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para "
95
  "mostrar botões de Login Social no formulário de login %2$s!"
96
 
97
- #: nextend-facebook-connect/admin/admin.php:518
98
  msgid "Dismiss and check Pro Addon"
99
  msgstr "Dispensar e verificar Addon Pro"
100
 
101
- #: nextend-facebook-connect/admin/admin.php:518
102
  msgid "Dismiss"
103
  msgstr "Dispensar"
104
 
105
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
  msgid "Login label"
107
  msgstr "Rótulo de Login"
108
 
109
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
110
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:90
111
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
112
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
113
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
 
114
  msgid "Reset to default"
115
  msgstr "Redefinir para o padrão"
116
 
117
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
118
  msgid "Link label"
119
  msgstr "Rótulo de Vincular"
120
 
121
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:96
122
  msgid "Unlink label"
123
  msgstr "Rótulo de Desvincular"
124
 
125
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
126
  msgid "Default button"
127
  msgstr "Botão padrão"
128
 
129
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:123
130
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
131
  msgid "Use custom button"
132
  msgstr "Usar botão personalizado"
133
 
134
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
135
  #, php-format
136
  msgid "Use the %s in your custom button's code to make the label show up."
137
  msgstr ""
138
  "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer."
139
 
140
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:138
141
  msgid "Icon button"
142
  msgstr "Ícone do botão"
143
 
144
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:169
145
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
146
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:90
147
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
148
- #: nextend-facebook-connect/admin/templates/settings/comment.php:56
149
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
150
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
151
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
152
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
153
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:86
 
 
154
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
155
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
156
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
157
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
158
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
159
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
160
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
 
161
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
162
  msgid "Save Changes"
163
  msgstr "Salvar Alterações"
164
 
165
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
166
  #: nextend-facebook-connect/admin/templates/providers.php:64
 
167
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
168
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
 
169
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
 
170
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
171
  msgid "Getting Started"
172
  msgstr "Iniciando"
@@ -177,7 +344,7 @@ msgstr "Botões"
177
 
178
  #: nextend-facebook-connect/admin/templates-provider/menu.php:21
179
  msgid "Sync data"
180
- msgstr ""
181
 
182
  #: nextend-facebook-connect/admin/templates-provider/menu.php:24
183
  msgid "Usage"
@@ -196,8 +363,19 @@ msgid "Fallback username prefix on register"
196
  msgstr "Prefixo do nome de usuário de retorno no registro"
197
 
198
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
199
- msgid "Used when username is invalid"
200
- msgstr "Usado quando o nome de usuário é inválido"
 
 
 
 
 
 
 
 
 
 
 
201
 
202
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
203
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
@@ -236,13 +414,11 @@ msgstr "Nunca, gerar automaticamente"
236
 
237
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
238
  msgid "When username is empty or invalid"
239
- msgstr ""
240
 
241
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
242
- #, fuzzy
243
- #| msgid "Ask Username on registration"
244
  msgid "Ask Password on registration"
245
- msgstr "Solicitar Nome de Usuário no registro"
246
 
247
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
248
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
@@ -251,9 +427,9 @@ msgstr "Conectar automaticamente a conta existente durante o registro"
251
 
252
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
253
  #: nextend-facebook-connect/admin/templates/providers.php:39
254
- #: nextend-facebook-connect/admin/templates/settings/general.php:55
255
- #: nextend-facebook-connect/admin/templates/settings/general.php:69
256
- #: nextend-facebook-connect/includes/provider-admin.php:207
257
  msgid "Disabled"
258
  msgstr "Desativado"
259
 
@@ -271,38 +447,39 @@ msgstr "Funções padrão para usuário que registrou com este fornecedor"
271
 
272
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
273
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
274
- #: nextend-facebook-connect/admin/templates/settings/comment.php:40
275
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
276
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
277
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
 
 
 
278
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
279
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
280
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
 
 
 
281
  #: nextend-facebook-connect/widget.php:40
282
  msgid "Default"
283
  msgstr "Padrão"
284
 
285
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
286
- #: nextend-social-login-pro/class-provider-extension.php:409
287
  msgid "Register"
288
  msgstr "Cadastrar"
289
 
290
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:47
291
  msgid "Login"
292
- msgstr ""
293
 
294
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:55
295
  msgid "Link"
296
- msgstr ""
297
 
298
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:73
299
  msgid "Store in meta key"
300
- msgstr ""
301
-
302
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:80
303
- #, php-format
304
- msgid "Required scope: %1$s"
305
- msgstr ""
306
 
307
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
308
  msgid "Shortcode"
@@ -324,6 +501,82 @@ msgstr "Botão de imagem"
324
  msgid "Image url"
325
  msgstr "URL da Imagem"
326
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
328
  msgid "Fix Oauth Redirect URIs"
329
  msgstr "Corrigir URIs de Redirecionamento Oauth"
@@ -336,22 +589,26 @@ msgstr "Todos URIs de Redirecionamento Oauth parecem corretos"
336
  msgid "Got it"
337
  msgstr "Entendi"
338
 
339
- #: nextend-facebook-connect/admin/templates/global-settings.php:26
340
  #: nextend-facebook-connect/admin/templates/menu.php:8
341
  msgid "Global Settings"
342
  msgstr "Configurações globais"
343
 
344
- #: nextend-facebook-connect/admin/templates/global-settings.php:29
345
  msgid "General"
346
  msgstr "Geral"
347
 
348
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
 
 
 
 
349
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
350
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
351
  msgid "Login Form"
352
  msgstr "Formulário de login"
353
 
354
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
355
  msgid "Comment"
356
  msgstr "Comentário"
357
 
@@ -363,10 +620,10 @@ msgstr "Docs"
363
  msgid "Support"
364
  msgstr "Suporte"
365
 
366
- #: nextend-facebook-connect/admin/templates/header.php:20
367
  #: nextend-facebook-connect/admin/templates/menu.php:12
368
  msgid "Pro Addon"
369
- msgstr "Addon Pro"
370
 
371
  #: nextend-facebook-connect/admin/templates/menu.php:6
372
  msgid "Providers"
@@ -399,7 +656,7 @@ msgstr ""
399
  "recursos do Pro, você precisa ativá-lo."
400
 
401
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
402
- #: nextend-facebook-connect/admin/templates/pro-addon.php:215
403
  msgid "Deauthorize Pro Addon"
404
  msgstr "Desautorizar o Addon Pro"
405
 
@@ -428,33 +685,11 @@ msgstr "Instale o Addon Pro"
428
  msgid "Activating..."
429
  msgstr "Ativando..."
430
 
431
- #: nextend-facebook-connect/admin/templates/pro-addon.php:126
432
- msgid "Authorize your Pro Addon"
433
- msgstr "Autorize seu Addon Pro"
434
-
435
- #: nextend-facebook-connect/admin/templates/pro-addon.php:127
436
- msgid ""
437
- "To be able to use the Pro features, you need to authorize Nextend Social "
438
- "Connect Pro Addon. You can do this by clicking on the Authorize button below "
439
- "then select the related purchase."
440
- msgstr ""
441
- "Para ser capaz de usar os recursos do Pro, você precisa autorizar o Addon "
442
- "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão "
443
- "autorizar abaixo e então selecione a compra relacionada."
444
-
445
- #: nextend-facebook-connect/admin/templates/pro-addon.php:132
446
- msgid "Authorize"
447
- msgstr "Autorizar"
448
-
449
- #: nextend-facebook-connect/admin/templates/pro-addon.php:189
450
- msgid "License key"
451
- msgstr "Chave de licença"
452
-
453
- #: nextend-facebook-connect/admin/templates/pro-addon.php:206
454
  msgid "Pro Addon is installed and activated"
455
  msgstr "Addon Pro está instalado e ativado"
456
 
457
- #: nextend-facebook-connect/admin/templates/pro-addon.php:208
458
  msgid ""
459
  "You installed and activated the Pro Addon. If you don’t want to use it "
460
  "anymore, you can deauthorize using the button below."
@@ -517,9 +752,9 @@ msgid "Not Verified"
517
  msgstr "Não Verificado"
518
 
519
  #: nextend-facebook-connect/admin/templates/providers.php:42
520
- #: nextend-facebook-connect/admin/templates/settings/general.php:58
521
- #: nextend-facebook-connect/admin/templates/settings/general.php:72
522
- #: nextend-facebook-connect/includes/provider-admin.php:210
523
  msgid "Enabled"
524
  msgstr "Ativado"
525
 
@@ -532,17 +767,17 @@ msgid "Upgrade Now"
532
  msgstr "Atualizar agora"
533
 
534
  #: nextend-facebook-connect/admin/templates/providers.php:72
535
- #: nextend-facebook-connect/includes/provider-admin.php:194
536
  msgid "Verify Settings"
537
  msgstr "Verificar Configurações"
538
 
539
  #: nextend-facebook-connect/admin/templates/providers.php:80
540
- #: nextend-facebook-connect/includes/provider-admin.php:239
541
  msgid "Enable"
542
  msgstr "Habilitar"
543
 
544
  #: nextend-facebook-connect/admin/templates/providers.php:92
545
- #: nextend-facebook-connect/includes/provider-admin.php:247
546
  msgid "Disable"
547
  msgstr "Desativar"
548
 
@@ -550,18 +785,54 @@ msgstr "Desativar"
550
  msgid "Import"
551
  msgstr "Importar"
552
 
553
- #: nextend-facebook-connect/admin/templates/providers.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
554
  msgid "Saving..."
555
  msgstr "Salvando..."
556
 
557
- #: nextend-facebook-connect/admin/templates/providers.php:123
558
  msgid "Saving failed"
559
  msgstr "O salvamento falhou"
560
 
561
- #: nextend-facebook-connect/admin/templates/providers.php:124
562
  msgid "Order Saved"
563
  msgstr "Pedido Salvo"
564
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
565
  #: nextend-facebook-connect/admin/templates/review.php:14
566
  msgid "Rate your experience!"
567
  msgstr "Avalie sua experiência!"
@@ -603,8 +874,10 @@ msgid "Ok, you deserve it"
603
  msgstr "Ok"
604
 
605
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
606
- msgid "BuddyPress register form"
607
- msgstr "Formulário de registo BuddyPress"
 
 
608
 
609
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
610
  msgid "No Connect button"
@@ -617,15 +890,19 @@ msgstr "Botão Conectar antes de registrar"
617
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
618
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
619
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
620
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
621
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
622
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
623
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
624
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
625
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
626
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
627
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
628
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
 
 
 
 
629
  msgid "Action:"
630
  msgstr "Ação:"
631
 
@@ -638,51 +915,55 @@ msgid "Connect button after register"
638
  msgstr "Botão Conectar após registrar"
639
 
640
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
641
- msgid "BuddyPress register button style"
642
- msgstr "Estilo de botão de registro BuddyPress"
643
 
644
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
645
- #: nextend-facebook-connect/admin/templates/settings/comment.php:46
646
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
647
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
648
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
 
 
 
649
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
650
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
651
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
652
  #: nextend-facebook-connect/widget.php:45
653
  msgid "Icon"
654
  msgstr "Ícone"
655
 
656
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
657
- #: nextend-facebook-connect/admin/templates/settings/comment.php:22
658
- msgid "Comment login button"
659
- msgstr "Botão de login de comentário"
660
 
661
- #: nextend-facebook-connect/admin/templates/settings/comment.php:25
 
662
  msgid "Show"
663
  msgstr "Mostrar"
664
 
665
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
666
  msgid "Hide"
667
  msgstr "Esconder"
668
 
669
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
670
  #, php-format
671
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
672
  msgstr ""
673
  "Você precisa ativar o ' %1$s > %2$s > %3$s ' para este recurso funcionar"
674
 
675
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
676
  msgid "Discussion"
677
  msgstr "Discussão"
678
 
679
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
680
  msgid "Users must be registered and logged in to comment"
681
  msgstr "Os utilizadores devem estar registrados e logados para comentar"
682
 
683
- #: nextend-facebook-connect/admin/templates/settings/comment.php:34
684
- msgid "Comment button style"
685
- msgstr "Estilo do botão de comentário"
 
686
 
687
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
688
  msgid "Target window"
@@ -709,90 +990,144 @@ msgid "Allow registration with Social login"
709
  msgstr "Permitir registro com Social login"
710
 
711
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
712
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
713
  msgid "Registration notification sent to"
714
  msgstr "Notificação de registro enviada para"
715
 
716
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
717
  msgid "WordPress default"
718
  msgstr "Por omissão do WordPress"
719
 
720
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
721
  msgid "Nobody"
722
  msgstr "Ninguém"
723
 
724
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
725
- msgid "User"
726
- msgstr "Usuário"
727
-
728
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
729
  msgid "Admin"
730
  msgstr "Admin"
731
 
732
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
733
  msgid "User and Admin"
734
  msgstr "Usuário e Admin"
735
 
736
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
737
- #: nextend-facebook-connect/admin/templates/settings/general.php:52
738
  msgid "Debug mode"
739
  msgstr "Modo de depuração"
740
 
741
- #: nextend-facebook-connect/admin/templates/settings/general.php:64
742
- msgid "Store Avatar"
 
 
 
 
 
 
 
 
 
 
 
 
743
  msgstr ""
 
 
 
 
 
 
744
 
745
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
746
- #, fuzzy
747
- #| msgid "Oauth Redirect URI"
 
 
 
 
 
 
 
 
 
 
 
 
748
  msgid "Default redirect url"
749
- msgstr "URI de Redirecionamento do OAuth"
750
 
751
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
752
- #: nextend-facebook-connect/admin/templates/settings/general.php:130
753
- #, fuzzy
754
- #| msgid "Social Login"
755
  msgid "for Login"
756
  msgstr "Login Social"
757
 
758
- #: nextend-facebook-connect/admin/templates/settings/general.php:107
759
- #: nextend-facebook-connect/admin/templates/settings/general.php:145
760
- #, fuzzy
761
- #| msgid "Register"
762
  msgid "for Register"
763
  msgstr "Cadastrar"
764
 
765
- #: nextend-facebook-connect/admin/templates/settings/general.php:117
766
- #, fuzzy
767
- #| msgid "Fixed redirect url for login"
768
  msgid "Fixed redirect url"
769
- msgstr "Url de redirecionamento corrigido para login"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
770
 
771
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
772
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
 
773
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
774
  msgid "Login form button style"
775
  msgstr "Estilo do botão do formulário de login"
776
 
777
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
778
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
 
779
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
 
780
  msgid "Login layout"
781
  msgstr "Layout de login"
782
 
783
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
784
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
785
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
 
 
 
786
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
787
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
 
 
 
788
  msgid "Below"
789
  msgstr "Abaixo"
790
 
791
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
792
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
793
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
 
 
 
794
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
795
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
 
 
 
796
  msgid "Below with separator"
797
  msgstr "Abaixo com separador"
798
 
@@ -803,16 +1138,28 @@ msgstr "Abaixo e flutuante"
803
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
804
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
805
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
 
 
 
806
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
807
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
 
 
 
808
  msgid "Above"
809
  msgstr "Acima"
810
 
811
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
812
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
813
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
 
 
 
814
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
815
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
 
 
 
816
  msgid "Above with separator"
817
  msgstr "Acima com separador"
818
 
@@ -842,7 +1189,7 @@ msgid "Hide login buttons"
842
  msgstr "Ocultar botões de login"
843
 
844
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
845
- #: nextend-social-login-pro/class-provider-extension.php:328
846
  msgid "Registration Form"
847
  msgstr "Formulário de Registo"
848
 
@@ -850,120 +1197,198 @@ msgstr "Formulário de Registo"
850
  msgid "Embedded login form"
851
  msgstr "Formulário Login incorporado"
852
 
853
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:68
854
- msgid "MemberPress account details"
855
- msgstr ""
 
 
 
 
856
 
857
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
858
  msgid "No link buttons"
859
- msgstr ""
860
 
861
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
862
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
863
  msgid "Link buttons after account details"
864
  msgstr "Botão Vincular após detalhes da conta"
865
 
866
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
867
- #, fuzzy
868
- #| msgid "Registration Form"
869
- msgid "Register Form"
870
- msgstr "Formulário de Registo"
 
 
 
 
 
 
 
 
 
 
 
871
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
872
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
873
- #, fuzzy
874
- #| msgid "Login form button style"
875
  msgid "Register form button style"
876
  msgstr "Estilo do botão do formulário de login"
877
 
 
878
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
879
- #, fuzzy
880
- #| msgid "Register"
881
  msgid "Register layout"
882
- msgstr "Cadastrar"
883
 
884
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
885
- msgid "WooCommerce login form"
886
- msgstr "Formulário de login do WooCommerce"
887
 
888
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
889
  msgid "No Connect button in login form"
890
  msgstr "Nenhum botão Conectar no formulário de login"
891
 
892
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
893
- msgid "Connect button before login form"
894
- msgstr "Botão Conectar antes de formulário de login"
895
-
896
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
897
- msgid "Connect button after login form"
898
- msgstr "Botão Conectar após o formulário de login"
899
-
900
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
901
- msgid "WooCommerce register form"
902
- msgstr "Formulário de registo do WooCommerce"
903
-
904
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
905
  msgid "No Connect button in register form"
906
  msgstr "Nenhum botão Conectar no formulário de login"
907
 
908
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
909
- msgid "Connect button before register form"
910
- msgstr "Botão Conectar antes de formulário de registro"
911
-
912
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
913
- msgid "Connect button after register form"
914
- msgstr "Botão Conectar após o formulário de registro"
915
-
916
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
917
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
918
- msgid "WooCommerce billing form"
919
- msgstr "Formulário de Cobrança do WooCommerce"
920
 
921
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
922
  msgid "No Connect button in billing form"
923
  msgstr "Nenhum botão Connectar no formulário de cobrança"
924
 
925
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
926
- msgid "Connect button before billing form"
927
- msgstr "Botão Conectar antes do formulário de cobrança"
928
 
929
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
930
- msgid "Connect button after billing form"
931
- msgstr "Botão Conectar após o formulário de cobrança"
 
932
 
933
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
934
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
935
- msgid "WooCommerce account details"
936
- msgstr "Detalhes da Conta WooCommerce"
937
 
938
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
939
- msgid "Link buttons before account details"
940
- msgstr "Botão Vincular antes de detalhes da conta"
941
-
942
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
943
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
944
- msgid "WooCommerce button style"
945
- msgstr "Estilo do botão WooCommerce"
946
 
947
- #: nextend-facebook-connect/includes/avatar.php:45
948
- msgid "Avatar"
 
 
949
  msgstr ""
 
 
950
 
951
- #: nextend-facebook-connect/includes/avatar.php:46
952
  msgid "Manage Avatar"
953
- msgstr ""
954
 
955
- #: nextend-facebook-connect/includes/avatar.php:47
956
  #, php-format
957
  msgid "Avatar <span class=\"count\">(%s)</span>"
958
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
959
- msgstr[0] ""
960
- msgstr[1] ""
 
 
 
 
 
 
961
 
962
- #: nextend-facebook-connect/includes/provider-admin.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
963
  msgid "Your configuration needs to be verified"
964
  msgstr "Sua configuração precisa ser verificada"
965
 
966
- #: nextend-facebook-connect/includes/provider-admin.php:189
967
  msgid ""
968
  "Before you can start letting your users register with your app it needs to "
969
  "be tested. This test makes sure that no users will have troubles with the "
@@ -977,15 +1402,15 @@ msgstr ""
977
  "erro no popup verifique os ID e segredo ou mesmo o app. Caso contrário suas "
978
  "configurações estão funcionando."
979
 
980
- #: nextend-facebook-connect/includes/provider-admin.php:195
981
  msgid "Please save your changes to verify settings."
982
  msgstr "Por favor salve suas alterações para verificar suas configurações."
983
 
984
- #: nextend-facebook-connect/includes/provider-admin.php:203
985
  msgid "Works Fine"
986
  msgstr "Funcionando bem"
987
 
988
- #: nextend-facebook-connect/includes/provider-admin.php:217
989
  #, php-format
990
  msgid ""
991
  "This provider is currently disabled, which means that users can’t register "
@@ -994,7 +1419,7 @@ msgstr ""
994
  "Este provedor está desativado no momento, o que significa que os usuários "
995
  "não podem registar-se ou iniciar sessão através de sua conta do %s."
996
 
997
- #: nextend-facebook-connect/includes/provider-admin.php:220
998
  #, php-format
999
  msgid ""
1000
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1004,7 +1429,7 @@ msgstr ""
1004
  "não quer deixar mais usuários se registrarem e se logarem com %s você pode "
1005
  "desativá-lo."
1006
 
1007
- #: nextend-facebook-connect/includes/provider-admin.php:223
1008
  #, php-format
1009
  msgid ""
1010
  "This provider is currently enabled, which means that users can register or "
@@ -1013,39 +1438,47 @@ msgstr ""
1013
  "Este provedor está ativado no momento, o que significa que os usuários podem "
1014
  "registar-se ou iniciar sessão através de sua conta do %s."
1015
 
1016
- #: nextend-facebook-connect/includes/provider-admin.php:231
1017
  msgid "Verify Settings Again"
1018
  msgstr "Verificar Configurações De Novo"
1019
 
1020
- #: nextend-facebook-connect/includes/provider-admin.php:232
1021
  msgid "Please save your changes before verifying settings."
1022
- msgstr ""
1023
 
1024
- #: nextend-facebook-connect/includes/provider.php:320
1025
- #: nextend-facebook-connect/includes/provider.php:618
1026
- #: nextend-facebook-connect/includes/provider.php:629
1027
  msgid "Authentication successful"
1028
  msgstr "Autenticação bem sucedida"
1029
 
1030
- #: nextend-facebook-connect/includes/provider.php:558
1031
- #: nextend-facebook-connect/includes/user.php:102
1032
  msgid "Authentication error"
1033
  msgstr "Erro de autenticação"
1034
 
1035
- #: nextend-facebook-connect/includes/provider.php:573
1036
  msgid "Unlink successful."
1037
  msgstr "Desvinculação bem sucedida."
1038
 
1039
- #: nextend-facebook-connect/includes/provider.php:758
1040
- #: nextend-facebook-connect/includes/provider.php:765
1041
  msgid "The test was successful"
1042
  msgstr "O teste foi bem sucedido"
1043
 
1044
- #: nextend-facebook-connect/includes/provider.php:811
1045
  msgid "Authentication failed"
1046
  msgstr "Falha na autenticação"
1047
 
1048
- #: nextend-facebook-connect/includes/user.php:66
 
 
 
 
 
 
 
 
1049
  #, php-format
1050
  msgid ""
1051
  "Your %1$s account is successfully linked with your account. Now you can sign "
@@ -1054,7 +1487,7 @@ msgstr ""
1054
  "Sua conta %1$s foi vinculada com sucesso com sua conta. Agora você pode "
1055
  "logar com o %2$s facilmente."
1056
 
1057
- #: nextend-facebook-connect/includes/user.php:69
1058
  #, php-format
1059
  msgid ""
1060
  "You have already linked a(n) %s account. Please unlink the current and then "
@@ -1063,16 +1496,20 @@ msgstr ""
1063
  "Você já vinculou uma conta %s. Por favor desvincule a atual e então você "
1064
  "poderá vincular outra conta %s."
1065
 
1066
- #: nextend-facebook-connect/includes/user.php:74
1067
  #, php-format
1068
  msgid "This %s account is already linked to other user."
1069
  msgstr "A conta %s já está vinculada a outro usuário."
1070
 
 
 
 
 
1071
  #. translators: %2$s: PHP version
1072
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1073
  #, php-format
1074
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1075
- msgstr ""
1076
 
1077
  #. translators: %2$s: WordPress version
1078
  #: nextend-facebook-connect/nextend-facebook-connect.php:41
@@ -1081,19 +1518,27 @@ msgid ""
1081
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1082
  "version, the plugin is currently NOT ACTIVE."
1083
  msgstr ""
 
 
1084
 
1085
- #: nextend-facebook-connect/nextend-social-login.php:25
1086
- #: nextend-facebook-connect/nextend-social-login.php:33
1087
  #, php-format
1088
  msgid "Please update %1$s to version %2$s or newer."
1089
  msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente."
1090
 
1091
- #: nextend-facebook-connect/nextend-social-login.php:25
1092
- #: nextend-facebook-connect/nextend-social-login.php:33
1093
  msgid "Update now!"
1094
  msgstr "Atualizar agora!"
1095
 
1096
- #: nextend-facebook-connect/nextend-social-login.php:379
 
 
 
 
 
 
1097
  #, php-format
1098
  msgid ""
1099
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
@@ -1102,7 +1547,7 @@ msgstr ""
1102
  "%s tomou o lugar do Nextend Google Connect. Você pode apagar o Nextend "
1103
  "Google Connect como ele não é mais necessário."
1104
 
1105
- #: nextend-facebook-connect/nextend-social-login.php:390
1106
  #, php-format
1107
  msgid ""
1108
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
@@ -1111,41 +1556,20 @@ msgstr ""
1111
  "%s tomou o lugar do Nextend Twitter Connect. Você pode apagar o Nextend "
1112
  "Twitter Connect como ele não é mais necessário."
1113
 
1114
- #: nextend-facebook-connect/nextend-social-login.php:507
1115
- msgid "You have logged in successfully."
1116
- msgstr "Você entrou com sucesso."
1117
-
1118
- #: nextend-facebook-connect/nextend-social-login.php:631
1119
- #: nextend-facebook-connect/nextend-social-login.php:919
1120
  msgid "Social Login"
1121
  msgstr "Login Social"
1122
 
1123
- #: nextend-facebook-connect/nextend-social-login.php:903
1124
  msgid "Social Accounts"
1125
  msgstr "Redes Sociais"
1126
 
1127
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1128
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1129
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1130
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1131
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1132
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1133
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1134
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21
1135
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1136
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1137
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1138
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
1139
- #, php-format
1140
- msgid "Navigate to %s"
1141
- msgstr "Navegar para %s"
1142
-
1143
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1144
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
1145
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1146
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1147
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1148
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1149
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1150
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1151
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
@@ -1164,7 +1588,7 @@ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1164
  msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\""
1165
 
1166
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1167
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1168
  #, php-format
1169
  msgid ""
1170
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
@@ -1173,7 +1597,7 @@ msgstr ""
1173
  "\": <b>%s</b>"
1174
 
1175
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1176
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1177
  msgid "Click on \"Save Changes\""
1178
  msgstr "Clique em \"Salvar Alterações\""
1179
 
@@ -1185,14 +1609,16 @@ msgid ""
1185
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1186
  "order to allow login with %1$s."
1187
  msgstr ""
 
 
1188
 
1189
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:12
1190
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:14
1191
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:12
1192
  msgid "How to get SSL for my WordPress site?"
1193
- msgstr ""
1194
 
1195
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:16
1196
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1197
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1198
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
@@ -1211,30 +1637,31 @@ msgstr ""
1211
  "dirija-se a “Configurações” e configure o “%2$s” e “%3$s” dados de acordo "
1212
  "com seu App do %1$s."
1213
 
1214
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:18
1215
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1216
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1217
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:18
1218
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
 
1219
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1220
  #, php-format
1221
  msgctxt "App creation"
1222
  msgid "Create %s"
1223
  msgstr "Criar %s"
1224
 
1225
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1226
  msgid "Click on the \"Add a New App\" button"
1227
  msgstr "Clique no botão \"Adicionar um Novo App\""
1228
 
1229
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1230
  msgid "Fill \"Display Name\" and \"Contact Email\""
1231
  msgstr "Preencha \"Nome de Exibição\" e \"Email de Contato\""
1232
 
1233
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1234
  msgid "Click on blue \"Create App ID\" button"
1235
  msgstr "Clique no botão azul \"Criar ID do App\""
1236
 
1237
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1238
  msgid ""
1239
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1240
  "button"
@@ -1242,31 +1669,33 @@ msgstr ""
1242
  "Mova seu mouse sobre Facebook Login e clique no botão “Configurar” que "
1243
  "aparecerá"
1244
 
1245
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1246
  msgid "Choose Web"
1247
  msgstr "Escolher Web"
1248
 
1249
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1250
  #, php-format
1251
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1252
  msgstr ""
1253
  "Preencha “URL do Site” com a url de sua página, provavelmente: <b>%s</b>"
1254
 
1255
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1256
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
 
1257
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
 
1258
  msgid "Click on \"Save\""
1259
  msgstr "Clique em \"Salvar\""
1260
 
1261
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1262
  msgid "In the left sidebar, click on \"Facebook Login\""
1263
  msgstr "Na barra lateral esquerda, clique em \"Facebook Login\""
1264
 
1265
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1266
  msgid "In the top of the left sidebar, click on \"Settings\""
1267
  msgstr "No topo da barra lateral esquerda, clique em \"Configurações\""
1268
 
1269
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1270
  msgid ""
1271
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1272
  "click on the \"Show\" button. These will be needed in plugin's settings."
@@ -1274,11 +1703,11 @@ msgstr ""
1274
  "Aqui voc6e pode ver seu “ID do APP” e seu “Segredo do App” se você clicar no "
1275
  "botão “Mostrar”. Isto será necessário nas configurações do plugin."
1276
 
1277
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1278
  msgid "Enter your domain name to the App Domains"
1279
  msgstr "Digite seu nome de domínio para os Domínios do App"
1280
 
1281
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1282
  msgid ""
1283
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1284
  "accessible privacy policy that explains what data you are collecting and how "
@@ -1288,14 +1717,14 @@ msgstr ""
1288
  "privacidade publicamente disponível e facilmente acessível que explique "
1289
  "quais dados você está coletando e como você utilizará estes dados."
1290
 
1291
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1292
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1293
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1294
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1295
  msgid "Save your changes."
1296
  msgstr "Salve suas alterações."
1297
 
1298
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1299
  msgid ""
1300
  "Your application is currently private, which means that only you can log in "
1301
  "with it. In the left sidebar choose \"App Review\" and make your App public"
@@ -1304,11 +1733,12 @@ msgstr ""
1304
  "logar com ela. No menu lateral esquerdo escolha “Revisar App” e torne seu "
1305
  "App público"
1306
 
1307
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1308
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
1309
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
1310
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
1311
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
 
1312
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1313
  #, php-format
1314
  msgid "I am done setting up my %s"
@@ -1460,6 +1890,8 @@ msgstr "ID do App"
1460
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1461
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1462
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
 
 
1463
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1464
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1465
  msgid "Required"
@@ -1470,6 +1902,7 @@ msgstr "Obrigatório"
1470
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1471
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1472
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
 
1473
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1474
  #, php-format
1475
  msgid ""
@@ -1495,18 +1928,41 @@ msgstr "Vincular conta com <b>Facebook</b>"
1495
  msgid "Unlink account from <b>Facebook</b>"
1496
  msgstr "Desvincular conta do <b>Facebook</b>"
1497
 
1498
- #: nextend-facebook-connect/providers/facebook/facebook.php:151
1499
- #: nextend-facebook-connect/providers/google/google.php:71
1500
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
1501
- #: nextend-social-login-pro/providers/amazon/amazon.php:71
1502
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1503
- #: nextend-social-login-pro/providers/vk/vk.php:68
 
1504
  #, php-format
1505
  msgid ""
1506
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1507
  msgstr ""
1508
  "O %1$s inserido não parece ser válido. Por favor insira um %2$s válido."
1509
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1510
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1511
  msgid "Click on the \"Credentials\" in the left hand menu"
1512
  msgstr "Clique em \"Credenciais\"no menu à esquerda"
@@ -1517,7 +1973,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
1517
  msgstr "Clique no ID de Cliente OAuth 2.0: %s"
1518
 
1519
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1520
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1521
  #, php-format
1522
  msgid ""
1523
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -1528,58 +1984,59 @@ msgstr ""
1528
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1529
  msgid ""
1530
  "If you don't have a project yet, you'll need to create one. You can do this "
1531
- "by clicking on the blue \"Create project\" button on the right side"
 
 
1532
  msgstr ""
1533
  "Se você não tem um projeto ainda, você precisará criar um. Você pode fazer "
1534
  "isso clicando no botão azul “Criar Projeto” no lado direito"
1535
 
1536
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1537
- msgid "Name your project and then click on the Create button"
1538
- msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
 
1539
 
1540
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
 
 
 
 
1541
  msgid "Once you have a project, you'll end up in the dashboard."
1542
  msgstr ""
1543
  "Uma vez que você tenha um projeto, você vai acabar no painel de controle."
1544
 
1545
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1546
  msgid ""
1547
  "Click on the \"Credentials\" in the left hand menu to create new API "
1548
  "credentials"
1549
  msgstr ""
1550
  "Clique em “Credenciais” no menu esquerdo para criar uma nova credencial API"
1551
 
1552
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1553
- msgid ""
1554
- "Go to the OAuth consent screen tab and enter a product name and provide the "
1555
- "Privacy Policy URL, then click on the save button."
1556
- msgstr ""
1557
- "Vá para a aba de tela de consentimento OAuth e insira um nome de produto e "
1558
- "forneça uma URL de Política de Privacidade, então clique no botão salvar."
1559
-
1560
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
 
 
 
 
1561
  msgid ""
1562
- "Go back to the Credentials tab and locate the small box at the middle. Click "
1563
- "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
1564
- "from the dropdown list."
1565
  msgstr ""
1566
- "Volte para o guia de Credenciais e localize a pequena caixa no meio. Clique "
1567
- "no botão azul ”Criar credenciais\". Escolha o \"ID de cliente OAuth\" da "
1568
- "lista suspensa."
1569
 
1570
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1571
  msgid "Your application type should be \"Web application\""
1572
  msgstr "Seu tipo de aplicação deve ser “Aplicação Web”"
1573
 
1574
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1575
  msgid "Name your application"
1576
  msgstr "Nomeie seu aplicativo"
1577
 
1578
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1579
  msgid "Click on the Create button"
1580
  msgstr "Clique no botão Criar"
1581
 
1582
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1583
  msgid ""
1584
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1585
  "the Credentials in the left hand menu and select your app by clicking on its "
@@ -1605,6 +2062,7 @@ msgstr "Clique em Credenciais no menu a esquerda, então selecione seu app."
1605
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
1606
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1607
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
 
1608
  msgid "Client ID"
1609
  msgstr "ID do Cliente"
1610
 
@@ -1614,66 +2072,111 @@ msgstr "ID do Cliente"
1614
  msgid "Client Secret"
1615
  msgstr "Chave do Cliente"
1616
 
1617
- #: nextend-facebook-connect/providers/google/google.php:38
1618
  msgid "Continue with <b>Google</b>"
1619
  msgstr "Continuar com <b>Google</b>"
1620
 
1621
- #: nextend-facebook-connect/providers/google/google.php:39
1622
  msgid "Link account with <b>Google</b>"
1623
  msgstr "Vincular conta com <b>Google</b>"
1624
 
1625
- #: nextend-facebook-connect/providers/google/google.php:40
1626
  msgid "Unlink account from <b>Google</b>"
1627
  msgstr "Desvincular conta do <b>Google</b>"
1628
 
 
 
 
 
 
1629
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1630
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1631
- msgid "Click on the App"
1632
- msgstr "Clicar no App"
 
1633
 
1634
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1635
- msgid "Click on the \"Settings\" tab"
1636
- msgstr "Clicar na aba \"Configurações\""
 
 
1637
 
1638
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
1639
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1640
- #, php-format
1641
- msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
 
1642
  msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
1643
 
1644
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1645
- msgid "Click on \"Update Settings\""
1646
- msgstr "Clicar em \"Atualizar Configurações\""
 
 
1647
 
1648
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1649
- msgid "Click on the \"Create New App\" button"
1650
- msgstr "Clique no botão \"Criar Novo App\""
 
 
 
 
1651
 
1652
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1653
- #, php-format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1654
  msgid ""
1655
- "Fill the name and description fields. Then enter your site's URL to the "
1656
- "Website field: <b>%s</b>"
1657
  msgstr ""
1658
- "Preencha os campos de nome e descrição. Entao entre com a URL de seu site no "
1659
  "campo Website: <b>%s</b>"
1660
 
1661
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1662
- msgid "Accept the Twitter Developer Agreement"
1663
- msgstr "Aceitar o Acordo de Desenvolvedor do Twitter"
1664
 
1665
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
 
 
1666
  msgid ""
1667
- "Create your application by clicking on the Create your Twitter application "
1668
- "button"
1669
- msgstr "Crie sua aplicação clicando no botão Criar sua aplicação Twitter"
1670
 
1671
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
 
 
 
 
 
 
 
1672
  msgid ""
1673
- "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
 
1674
  msgstr ""
1675
- "Vá para a aba Chaves e Tokens de Acesso e encontre a Chave de Consumidor e "
1676
- "Segredo"
 
 
 
 
1677
 
1678
  #: nextend-facebook-connect/providers/twitter/admin/import.php:9
1679
  msgid "Import Twitter configuration"
@@ -1684,22 +2187,30 @@ msgid "Go to the Settings tab."
1684
  msgstr "Vá para a aba Configurações."
1685
 
1686
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
1687
- msgid "Consumer Key"
1688
- msgstr "Chave do consumidor"
1689
 
1690
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
1691
- msgid "Consumer Secret"
1692
- msgstr "Senha Consumidor"
 
 
 
 
1693
 
1694
- #: nextend-facebook-connect/providers/twitter/twitter.php:38
 
 
 
 
1695
  msgid "Continue with <b>Twitter</b>"
1696
  msgstr "Continuar com <b>Twitter</b>"
1697
 
1698
- #: nextend-facebook-connect/providers/twitter/twitter.php:39
1699
  msgid "Link account with <b>Twitter</b>"
1700
  msgstr "Vincular conta com <b>Twitter</b>"
1701
 
1702
- #: nextend-facebook-connect/providers/twitter/twitter.php:40
1703
  msgid "Unlink account from <b>Twitter</b>"
1704
  msgstr "Desvincular conta do <b>Twitter</b>"
1705
 
@@ -1718,31 +2229,31 @@ msgstr "Estilo do botão:"
1718
 
1719
  #: nextend-facebook-connect/widget.php:64
1720
  msgid "Show link buttons"
1721
- msgstr ""
1722
 
1723
  #: nextend-facebook-connect/widget.php:73
1724
  msgid "Show unlink buttons"
1725
- msgstr ""
1726
 
1727
- #: nextend-social-login-pro/class-provider-extension.php:114
1728
  msgid "Social login is not allowed with this role!"
1729
  msgstr "O login Social não é permitido com esta função!"
1730
 
1731
- #: nextend-social-login-pro/class-provider-extension.php:209
1732
  #: nextend-social-login-pro/class-provider-extension.php:211
1733
- #: nextend-social-login-pro/class-provider-extension.php:216
1734
- #: nextend-social-login-pro/class-provider-extension.php:222
1735
- #: nextend-social-login-pro/class-provider-extension.php:235
1736
- #: nextend-social-login-pro/class-provider-extension.php:237
1737
- #: nextend-social-login-pro/class-provider-extension.php:240
 
1738
  msgid "ERROR"
1739
  msgstr "ERRO"
1740
 
1741
- #: nextend-social-login-pro/class-provider-extension.php:209
1742
  msgid "Please enter a username."
1743
  msgstr "Por favor coloque um nome de usuário."
1744
 
1745
- #: nextend-social-login-pro/class-provider-extension.php:211
1746
  msgid ""
1747
  "This username is invalid because it uses illegal characters. Please enter a "
1748
  "valid username."
@@ -1750,139 +2261,120 @@ msgstr ""
1750
  "Esse usuário é inválido porque usa caracteres inválidos. Por favor, insira "
1751
  "um usuário válido."
1752
 
1753
- #: nextend-social-login-pro/class-provider-extension.php:216
1754
  msgid "This username is already registered. Please choose another one."
1755
  msgstr "Este nome de usuário já está registrado. Por favor escolha outro."
1756
 
1757
- #: nextend-social-login-pro/class-provider-extension.php:222
1758
  msgid "Sorry, that username is not allowed."
1759
  msgstr "Desculpe, esse nome de utilizador não é permitido."
1760
 
1761
- #: nextend-social-login-pro/class-provider-extension.php:235
 
 
 
 
1762
  msgid "Please enter an email address."
1763
  msgstr "Por favor, digite um endereço de e-mail."
1764
 
1765
- #: nextend-social-login-pro/class-provider-extension.php:237
1766
  msgid "The email address isn&#8217;t correct."
1767
  msgstr "O endereço de email não está correto."
1768
 
1769
- #: nextend-social-login-pro/class-provider-extension.php:240
1770
  msgid "This email is already registered, please choose another one."
1771
  msgstr "Este e-mail já está registrado, por favor, escolha outro."
1772
 
1773
- #: nextend-social-login-pro/class-provider-extension.php:255
 
 
 
 
1774
  msgid "<strong>ERROR</strong>: Please enter a password."
1775
- msgstr ""
1776
 
1777
- #: nextend-social-login-pro/class-provider-extension.php:260
1778
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1779
- msgstr ""
1780
 
1781
- #: nextend-social-login-pro/class-provider-extension.php:265
1782
  msgid ""
1783
  "<strong>ERROR</strong>: Please enter the same password in both password "
1784
  "fields."
1785
- msgstr ""
1786
-
1787
- #: nextend-social-login-pro/class-provider-extension.php:328
1788
- msgid "Register For This Site!"
1789
- msgstr "Registrar Para Este Site!"
1790
 
1791
- #: nextend-social-login-pro/class-provider-extension.php:355
1792
- msgid "Username"
1793
- msgstr "Nome de usuário"
1794
-
1795
- #: nextend-social-login-pro/class-provider-extension.php:362
1796
- msgid "Email"
1797
- msgstr "E-mail"
1798
-
1799
- #: nextend-social-login-pro/class-provider-extension.php:367
1800
- msgid "Registration confirmation will be emailed to you."
1801
- msgstr "Uma confirmação do registro será enviado por email para você."
1802
-
1803
- #: nextend-social-login-pro/class-provider-extension.php:375
1804
  msgid "Password"
1805
- msgstr ""
1806
 
1807
- #: nextend-social-login-pro/class-provider-extension.php:385
1808
  msgid "Strength indicator"
1809
- msgstr ""
1810
 
1811
- #: nextend-social-login-pro/class-provider-extension.php:390
1812
  msgid "Confirm use of weak password"
1813
- msgstr ""
1814
 
1815
- #: nextend-social-login-pro/class-provider-extension.php:396
1816
  msgid "Confirm password"
1817
- msgstr ""
1818
 
1819
- #: nextend-social-login-pro/class-provider-extension.php:506
1820
- #, fuzzy, php-format
1821
- #| msgid ""
1822
- #| "This email is already registered, please login in to your account to link "
1823
- #| "with Facebook."
1824
  msgid ""
1825
  "This email is already registered, please login in to your account to link "
1826
  "with %1$s."
1827
  msgstr ""
1828
- "Este email já está registrado, por favor logue-se em sua conta para vincular "
1829
- "com o Facebook."
1830
 
1831
  #: nextend-social-login-pro/nextend-social-login-pro.php:51
1832
  #, php-format
1833
  msgid "Please install and activate %1$s to use the %2$s"
1834
- msgstr ""
1835
 
1836
  #: nextend-social-login-pro/nextend-social-login-pro.php:57
1837
  msgid "Activate"
1838
- msgstr ""
1839
 
1840
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
1841
  msgid "Network Activate"
1842
- msgstr ""
1843
 
1844
  #: nextend-social-login-pro/nextend-social-login-pro.php:77
1845
  msgid "Install now!"
1846
- msgstr ""
1847
 
1848
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
1849
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1850
- #, fuzzy, php-format
1851
- #| msgid "Visit %s."
1852
  msgid "Visit %s"
1853
- msgstr "Visita %s."
1854
 
1855
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
1856
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
1857
  msgid ""
1858
  "On the right side, under \"Manage\", hover over the gear icon and select "
1859
  "\"Web Settings\" option."
1860
  msgstr ""
 
 
1861
 
1862
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
1863
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
1864
  msgid "Click \"Edit\"."
1865
- msgstr ""
1866
 
1867
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
1868
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
1869
- #, fuzzy, php-format
1870
- #| msgid ""
1871
- #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
1872
- #| "b>"
1873
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1874
  msgstr ""
1875
- "Adicionar o seguinte URL no campo URLs de Redirecionamento Autorizados”: <b>"
1876
- "%s</b>"
1877
 
1878
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:16
1879
- #, fuzzy, php-format
1880
- #| msgid ""
1881
- #| "To allow your visitors to log in with their %1$s account, first you must "
1882
- #| "create a %1$s App. The following guide will help you through the %1$s App "
1883
- #| "creation process. After you have created your %1$s App, head over to "
1884
- #| "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to "
1885
- #| "your %1$s App."
1886
  msgid ""
1887
  "To allow your visitors to log in with their %1$s account, first you must "
1888
  "create an %1$s App. The following guide will help you through the %1$s App "
@@ -1890,81 +2382,82 @@ msgid ""
1890
  "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your "
1891
  "%1$s App."
1892
  msgstr ""
1893
- "Para permitir que seus visitantes se loguem com sua conta %1$s, primeiro "
1894
- "você deve criar um App do %1$s. O guia a seguir irá ajudá-lo através do "
1895
- "processo de criação do App do %1$s. Após você ter criado seu App do %1$s, "
1896
- "dirija-se a “Configurações e configure o “%2$s e “%3$s dados de acordo "
1897
- "com seu App do %1$s."
1898
 
1899
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
 
 
1900
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
1901
- #, fuzzy, php-format
1902
- #| msgid "Log in with your %s credentials if you are not logged in"
1903
  msgid "Log in with your %s credentials if you are not logged in."
1904
- msgstr "Logue com suas credenciais %s se você não estiver logado"
1905
 
1906
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
1907
- #, fuzzy
1908
- #| msgid ""
1909
- #| "If you don't have a project yet, you'll need to create one. You can do "
1910
- #| "this by clicking on the blue \"Create project\" button on the right side"
1911
  msgid ""
1912
  "If you don't have a Security Profile yet, you'll need to create one. You can "
1913
  "do this by clicking on the orange \"Create a New Security Profile\" button "
1914
  "on the left side."
1915
  msgstr ""
1916
- "Se você não tem um projeto ainda, você precisará criar um. Você pode fazer "
1917
- "isso clicando no botão azul Criar Projeto” no lado direito"
 
1918
 
1919
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
1920
  msgid ""
1921
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
1922
  "\"Consent Privacy Notice URL\"."
1923
  msgstr ""
 
 
1924
 
1925
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1926
  msgid "Once you filled all the required fields, click \"Save\"."
1927
  msgstr ""
 
1928
 
1929
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
1930
- #, fuzzy, php-format
1931
- #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1932
  msgid ""
1933
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
1934
  msgstr ""
1935
  "Preencha “URL do Site” com a url de sua página, provavelmente: <b>%s</b>"
1936
 
1937
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
 
1938
  msgid "When all fields are filled, click \"Save\"."
1939
- msgstr ""
1940
 
1941
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
1942
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
1943
  msgstr ""
 
1944
 
1945
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
1946
  msgid ""
1947
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
1948
  "page."
1949
  msgstr ""
 
1950
 
1951
  #: nextend-social-login-pro/providers/amazon/amazon.php:37
1952
- #, fuzzy
1953
- #| msgid "Continue with <b>Facebook</b>"
1954
  msgid "Continue with <b>Amazon</b>"
1955
- msgstr "Continuar com <b>Facebook</b>"
1956
 
1957
  #: nextend-social-login-pro/providers/amazon/amazon.php:38
1958
- #, fuzzy
1959
- #| msgid "Link account with <b>Facebook</b>"
1960
  msgid "Link account with <b>Amazon</b>"
1961
- msgstr "Vincular conta com <b>Facebook</b>"
1962
 
1963
  #: nextend-social-login-pro/providers/amazon/amazon.php:39
1964
- #, fuzzy
1965
- #| msgid "Unlink account from <b>Facebook</b>"
1966
  msgid "Unlink account from <b>Amazon</b>"
1967
- msgstr "Desvincular conta do <b>Facebook</b>"
 
 
 
 
1968
 
1969
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
1970
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
@@ -2012,161 +2505,377 @@ msgstr ""
2012
  "Você provavelmente quer habilitar o “r_emailaddress” abaixo das Permissões "
2013
  "de Aplicação Padrão"
2014
 
2015
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
2016
  msgid "Continue with <b>LinkedIn</b>"
2017
  msgstr "Continuar com <b>LinkedIn</b>"
2018
 
2019
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
2020
  msgid "Link account with <b>LinkedIn</b>"
2021
  msgstr "Vincular conta com <b>LinkedIn</b>"
2022
 
2023
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
2024
  msgid "Unlink account from <b>LinkedIn</b>"
2025
  msgstr "Desvincular conta do <b>LinkedIn</b>"
2026
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2027
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
2028
- #, fuzzy
2029
- #| msgid "Click on the Create button"
2030
  msgid "Click on the Manage button at the App"
2031
- msgstr "Clique no botão Criar"
2032
 
2033
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
2034
- #, fuzzy
2035
- #| msgid "Go to the Settings tab."
2036
  msgid "Go to the Settings menu"
2037
- msgstr "Vá para a aba Configurações."
2038
 
2039
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12
2040
- #, fuzzy, php-format
2041
- #| msgid ""
2042
- #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2043
  msgid ""
2044
  "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
2045
  msgstr ""
2046
- "Adicionar o seguinte URL no campo \"URIs de redirecionamento Autorizados\": "
2047
- "<b>%s</b>"
2048
 
2049
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
2050
- #, fuzzy
2051
- #| msgid "Locate the yellow \"Create application\" button and click on it."
2052
  msgid "Locate the blue \"Create application\" button and click on it."
2053
- msgstr "Localize o botão amarelo “Criar Aplicação” e clique nele."
2054
 
2055
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
2056
  msgid "Enter the title of your app and select \"Websie\"."
2057
- msgstr ""
2058
 
2059
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
2060
- #, fuzzy, php-format
2061
- #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2062
  msgid ""
2063
  "Fill \"Site address\" with the url of your homepage, probably: <b>%s</b>"
2064
  msgstr ""
2065
- "Preencha “URL do Site” com a url de sua página, provavelmente: <b>%s</b>"
 
2066
 
2067
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
2068
- #, fuzzy, php-format
2069
- #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2070
  msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2071
  msgstr ""
2072
- "Preencha “URL do Site” com a url de sua página, provavelmente: <b>%s</b>"
2073
 
2074
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
2075
  msgid "When all fields are filled, create you app."
2076
- msgstr ""
2077
 
2078
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
2079
  msgid ""
2080
  "You'll be sent a confirmation code via SMS which you need to type to be able "
2081
  "to create the app."
2082
  msgstr ""
 
 
2083
 
2084
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
2085
  msgid "Fill the form for your app and upload an app icon then hit Save."
2086
  msgstr ""
 
 
2087
 
2088
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
2089
- #, fuzzy
2090
- #| msgid "Click on the \"Credentials\" in the left hand menu"
2091
  msgid "Pick Settings at the left-hand menu "
2092
- msgstr "Clique em \"Credenciais\"no menu à esquerda"
2093
 
2094
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
2095
- #, fuzzy, php-format
2096
- #| msgid ""
2097
- #| "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2098
  msgid ""
2099
  "Add the following URL to the \"Authorized redirect URI\" field <b>%s</b> "
2100
  msgstr ""
2101
- "Adicionar o seguinte URL no campo \"URIs de redirecionamento Autorizados\": "
2102
- "<b>%s</b>"
2103
 
2104
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26
2105
- #, fuzzy
2106
- #| msgid "Select your app."
2107
  msgid "Save your app"
2108
- msgstr "Selecione seu app."
2109
 
2110
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:27
2111
  msgid ""
2112
  "Find the necessary Application ID and Secure key at the top of the Settings "
2113
  "page where you just hit the save button."
2114
  msgstr ""
 
 
2115
 
2116
  #: nextend-social-login-pro/providers/vk/admin/settings.php:26
2117
  msgid "Application ID"
2118
- msgstr ""
2119
 
2120
  #: nextend-social-login-pro/providers/vk/admin/settings.php:38
2121
  msgid "Secure key"
2122
- msgstr ""
2123
 
2124
  #: nextend-social-login-pro/providers/vk/vk.php:34
2125
- #, fuzzy
2126
- #| msgid "Continue with <b>Google</b>"
2127
  msgid "Continue with <b>VK</b>"
2128
- msgstr "Continuar com <b>Google</b>"
2129
 
2130
  #: nextend-social-login-pro/providers/vk/vk.php:35
2131
- #, fuzzy
2132
- #| msgid "Link account with <b>Google</b>"
2133
  msgid "Link account with <b>VK</b>"
2134
- msgstr "Vincular conta com <b>Google</b>"
2135
 
2136
  #: nextend-social-login-pro/providers/vk/vk.php:36
2137
- #, fuzzy
2138
- #| msgid "Unlink account from <b>Google</b>"
2139
  msgid "Unlink account from <b>VK</b>"
2140
- msgstr "Desvincular conta do <b>Google</b>"
2141
-
2142
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:8
2143
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:8
2144
- #: nextend-social-login-pro/template-parts/login/above-separator.php:10
2145
- #: nextend-social-login-pro/template-parts/login/below-separator.php:14
2146
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:8
2147
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:8
2148
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:8
2149
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:8
2150
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:8
2151
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:8
 
 
 
 
 
 
 
 
 
 
 
 
2152
  msgid "OR"
2153
  msgstr "OU"
2154
 
2155
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
 
2156
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2157
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2158
  msgid "Social accounts"
2159
  msgstr "Contas redes sociais"
2160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2161
  #~ msgid "Use custom"
2162
  #~ msgstr "Usar personalizado"
2163
 
2164
  #~ msgid "Fixed redirect url for register"
2165
  #~ msgstr "Url de redirecionamento corrigido para registo"
2166
 
2167
- #~ msgid "Login form"
2168
- #~ msgstr "Formulário de login"
2169
-
2170
  #~ msgid "Registration form"
2171
  #~ msgstr "Formulário de registro"
2172
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2018-09-04 15:28+0200\n"
5
+ "PO-Revision-Date: 2018-09-04 15:28+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.1.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
+ #: nextend-facebook-connect/NSL/GDPR.php:32
30
+ msgid "What personal data we collect and why we collect it"
31
+ msgstr "Quais dados pessoais coletamos e por que os coletamos"
32
+
33
+ #: nextend-facebook-connect/NSL/GDPR.php:33
34
+ #, php-format
35
+ msgid ""
36
+ "%1$s collects data when a visitor register, login or link the account with "
37
+ "with any of the enabled social provider. It collects the following data: "
38
+ "email address, name, social provider identifier and access token. Also it "
39
+ "can collect profile picture and more fields with the Pro Addon's sync data "
40
+ "feature."
41
+ msgstr ""
42
+ "%1$s coleta dados quando um visitante registra, faz login ou vincula a conta "
43
+ "com qualquer um dos provedores sociais ativados. Coleta os seguintes dados: "
44
+ "endereço de e-mail, nome, identificador de provedor social e token de "
45
+ "acesso. Também pode coletar fotos de perfil e mais campos com o recurso de "
46
+ "dados de sincronização do complemento pro."
47
+
48
+ #: nextend-facebook-connect/NSL/GDPR.php:35
49
+ msgid "Who we share your data with"
50
+ msgstr "Com quem compartilhamos seus dados"
51
+
52
+ #: nextend-facebook-connect/NSL/GDPR.php:36
53
+ #, php-format
54
+ msgid ""
55
+ "%1$s stores the personal data on your site and does not share it with anyone "
56
+ "except the access token which used for the authenticated communication with "
57
+ "the social providers."
58
+ msgstr ""
59
+ "%1$s Armazena os dados pessoais em seu site e não os compartilha com "
60
+ "ninguém, exceto o token de acesso usado para a comunicação autenticada com "
61
+ "os provedores sociais."
62
+
63
+ #: nextend-facebook-connect/NSL/GDPR.php:38
64
+ msgid "Does the plugin share personal data with third parties"
65
+ msgstr "O plugin compartilha dados pessoais com terceiros?"
66
+
67
+ #: nextend-facebook-connect/NSL/GDPR.php:39
68
+ #, php-format
69
+ msgid ""
70
+ "%1$s use the access token what the social provider gave to communicate with "
71
+ "the providers to verify account and securely access personal data."
72
+ msgstr ""
73
+ "%1$s Usa o token de acesso que o provedor social deu para se comunicar com "
74
+ "os provedores para verificar a conta e acessar com segurança os dados "
75
+ "pessoais."
76
+
77
+ #: nextend-facebook-connect/NSL/GDPR.php:41
78
+ msgid "How long we retain your data"
79
+ msgstr "Por quanto tempo retemos seus dados"
80
+
81
+ #: nextend-facebook-connect/NSL/GDPR.php:42
82
+ #, php-format
83
+ msgid ""
84
+ "%1$s removes the collected personal data when the user deleted from "
85
+ "WordPress."
86
+ msgstr ""
87
+ "%1$s Remove os dados pessoais coletados quando o usuário é excluído do "
88
+ "WordPress."
89
+
90
+ #: nextend-facebook-connect/NSL/GDPR.php:44
91
+ msgid "Does the plugin use personal data collected by others?"
92
+ msgstr "O plugin usa dados pessoais coletados por outras pessoas?"
93
+
94
+ #: nextend-facebook-connect/NSL/GDPR.php:45
95
+ #, php-format
96
+ msgid ""
97
+ "%1$s use the personal data collected by the social providers to create "
98
+ "account on your site when the visitor authorize it."
99
+ msgstr ""
100
+ "%1$s Usa os dados pessoais coletados pelos provedores sociais para criar uma "
101
+ "conta em seu site quando o visitante autorizá-lo."
102
+
103
+ #: nextend-facebook-connect/NSL/GDPR.php:47
104
+ msgid "Does the plugin store things in the browser?"
105
+ msgstr "O plugin armazena coisas no navegador?"
106
+
107
+ #: nextend-facebook-connect/NSL/GDPR.php:48
108
+ #, php-format
109
+ msgid ""
110
+ "Yes, %1$s must create a cookie for visitors who use the social login "
111
+ "authorization flow. This cookie required for every provider to secure the "
112
+ "communication and to redirect the user back to the last location."
113
+ msgstr ""
114
+ "Sim, %1$s deve criar um cookie para visitantes que usam o fluxo de "
115
+ "autorização de login social. Esse cookie exigia que cada provedor protegesse "
116
+ "a comunicação e redirecionasse o usuário de volta ao último local."
117
+
118
+ #: nextend-facebook-connect/NSL/GDPR.php:50
119
+ msgid "Does the plugin collect telemetry data, directly or indirectly?"
120
+ msgstr "O plugin coleta dados de telemetria, direta ou indiretamente?"
121
+
122
+ #: nextend-facebook-connect/NSL/GDPR.php:51
123
+ #: nextend-facebook-connect/NSL/GDPR.php:54
124
+ msgid "No"
125
+ msgstr "Não"
126
+
127
+ #: nextend-facebook-connect/NSL/GDPR.php:53
128
+ msgid ""
129
+ "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
130
+ "third party?"
131
+ msgstr ""
132
+ "O plugin carrega JavaScript, rastreia pixels ou incorpora iframes de "
133
+ "terceiros?"
134
+
135
+ #: nextend-facebook-connect/NSL/GDPR.php:97
136
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:65
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:277
152
  msgid "Settings saved."
153
  msgstr "Configurações salvas."
154
 
155
+ #: nextend-facebook-connect/admin/admin.php:244
156
  msgid "The authorization was successful"
157
  msgstr "A autorização foi bem sucedida"
158
 
159
+ #: nextend-facebook-connect/admin/admin.php:255
160
  msgid "Deauthorize completed."
161
  msgstr "Desautorização concluída."
162
 
163
+ #: nextend-facebook-connect/admin/admin.php:429
164
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
165
  #: nextend-facebook-connect/admin/templates/providers.php:84
166
  #: nextend-facebook-connect/admin/templates/providers.php:96
167
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
168
  msgid "Settings"
169
  msgstr "Configurações"
170
 
171
+ #: nextend-facebook-connect/admin/admin.php:503
172
+ #: nextend-facebook-connect/includes/oauth2.php:139
173
+ #: nextend-facebook-connect/includes/oauth2.php:284
174
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
175
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:163
176
  #, php-format
177
  msgid "Unexpected response: %s"
178
  msgstr "Resposta inesperada: %s"
179
 
180
+ #: nextend-facebook-connect/admin/admin.php:561
181
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
182
  #, php-format
183
  msgid ""
187
  "%s detectou que sua url de login mudou. Você deve atualizar as URIs de "
188
  "redirecionamento do Oauth nas aplicações sociais relacionados."
189
 
190
+ #: nextend-facebook-connect/admin/admin.php:562
191
  msgid "Fix Error"
192
+ msgstr "Corrigir erro"
193
 
194
+ #: nextend-facebook-connect/admin/admin.php:562
195
  msgid "Oauth Redirect URI"
196
  msgstr "URI de Redirecionamento do OAuth"
197
 
198
+ #: nextend-facebook-connect/admin/admin.php:572
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
204
  "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para "
205
  "mostrar botões de Login Social no formulário de login %2$s!"
206
 
207
+ #: nextend-facebook-connect/admin/admin.php:573
208
  msgid "Dismiss and check Pro Addon"
209
  msgstr "Dispensar e verificar Addon Pro"
210
 
211
+ #: nextend-facebook-connect/admin/admin.php:573
212
  msgid "Dismiss"
213
  msgstr "Dispensar"
214
 
215
+ #: nextend-facebook-connect/admin/admin.php:579
216
+ #, php-format
217
+ msgid ""
218
+ "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
219
+ "register flow</b>\" and \"<b>OAuth redirect uri proxy page</b>\" in %1$s to "
220
+ "work properly."
221
+ msgstr ""
222
+ "%1$s detectou que %2$s instalado em seu site. Você deve definir \"<b>uma "
223
+ "página para fluxo de registro</b>\" e \"<b>página do proxy uri do "
224
+ "redirecionamento OAuth</b>\" em %1$s para funcionar corretamente."
225
+
226
+ #: nextend-facebook-connect/admin/admin.php:580
227
+ msgid "Fix now"
228
+ msgstr "Corrigir erro"
229
+
230
+ #: nextend-facebook-connect/admin/admin.php:604
231
+ msgid "Authorize your Pro Addon"
232
+ msgstr "Autorize seu Addon Pro"
233
+
234
+ #: nextend-facebook-connect/admin/admin.php:605
235
+ msgid ""
236
+ "To be able to use the Pro features, you need to authorize Nextend Social "
237
+ "Connect Pro Addon. You can do this by clicking on the Authorize button below "
238
+ "then select the related purchase."
239
+ msgstr ""
240
+ "Para ser capaz de usar os recursos do Pro, você precisa autorizar o Addon "
241
+ "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão "
242
+ "autorizar abaixo e então selecione a compra relacionada."
243
+
244
+ #: nextend-facebook-connect/admin/admin.php:610
245
+ msgid "Authorize"
246
+ msgstr "Autorizar"
247
+
248
+ #: nextend-facebook-connect/admin/admin.php:667
249
+ msgid "License key"
250
+ msgstr "Chave de licença"
251
+
252
+ #: nextend-facebook-connect/admin/admin.php:682
253
+ msgid "OAuth proxy page"
254
+ msgstr "Página do proxy OAuth"
255
+
256
+ #: nextend-facebook-connect/admin/admin.php:685
257
+ msgid "Register flow page"
258
+ msgstr "Registrar página de fluxo"
259
+
260
+ #: nextend-facebook-connect/admin/interim.php:12
261
+ #: nextend-facebook-connect/admin/interim.php:23
262
+ msgid "You have logged in successfully."
263
+ msgstr "Você entrou com sucesso."
264
+
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:81
266
  msgid "Login label"
267
  msgstr "Rótulo de Login"
268
 
269
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
270
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:97
271
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
272
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
273
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
274
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
275
  msgid "Reset to default"
276
  msgstr "Redefinir para o padrão"
277
 
278
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
279
  msgid "Link label"
280
  msgstr "Rótulo de Vincular"
281
 
282
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:103
283
  msgid "Unlink label"
284
  msgstr "Rótulo de Desvincular"
285
 
286
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
287
  msgid "Default button"
288
  msgstr "Botão padrão"
289
 
290
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
291
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
292
  msgid "Use custom button"
293
  msgstr "Usar botão personalizado"
294
 
295
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
296
  #, php-format
297
  msgid "Use the %s in your custom button's code to make the label show up."
298
  msgstr ""
299
  "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer."
300
 
301
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:145
302
  msgid "Icon button"
303
  msgstr "Ícone do botão"
304
 
305
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:176
306
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
307
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:93
308
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
309
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:54
310
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
311
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:79
312
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
313
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
314
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:153
315
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:108
316
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:168
317
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
318
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:232
319
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
320
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
321
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
322
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
323
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
324
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
325
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
326
  msgid "Save Changes"
327
  msgstr "Salvar Alterações"
328
 
329
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
330
  #: nextend-facebook-connect/admin/templates/providers.php:64
331
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:15
332
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
333
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
334
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
335
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
336
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
337
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
338
  msgid "Getting Started"
339
  msgstr "Iniciando"
344
 
345
  #: nextend-facebook-connect/admin/templates-provider/menu.php:21
346
  msgid "Sync data"
347
+ msgstr "Sincronizar dados"
348
 
349
  #: nextend-facebook-connect/admin/templates-provider/menu.php:24
350
  msgid "Usage"
363
  msgstr "Prefixo do nome de usuário de retorno no registro"
364
 
365
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
366
+ msgid "Used when username is invalid or not stored"
367
+ msgstr "Usado quando o nome de usuário é inválido ou não é armazenado"
368
+
369
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:29
370
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
371
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
372
+ msgid "Terms and conditions"
373
+ msgstr "Termos e Condições"
374
+
375
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
376
+ #, php-format
377
+ msgid "Override global \"%1$s\""
378
+ msgstr "Substituir global \"%1$s\""
379
 
380
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
381
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
414
 
415
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
416
  msgid "When username is empty or invalid"
417
+ msgstr "Quando o nome de usuário estiver vazio ou é inválido"
418
 
419
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
 
 
420
  msgid "Ask Password on registration"
421
+ msgstr "Pedir senha no registro"
422
 
423
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
424
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
427
 
428
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
429
  #: nextend-facebook-connect/admin/templates/providers.php:39
430
+ #: nextend-facebook-connect/admin/templates/settings/general.php:53
431
+ #: nextend-facebook-connect/admin/templates/settings/general.php:189
432
+ #: nextend-facebook-connect/includes/provider-admin.php:215
433
  msgid "Disabled"
434
  msgstr "Desativado"
435
 
447
 
448
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
449
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
450
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:38
451
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
452
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
453
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
454
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
455
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
456
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
457
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
458
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
459
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
460
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
461
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
462
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
463
  #: nextend-facebook-connect/widget.php:40
464
  msgid "Default"
465
  msgstr "Padrão"
466
 
467
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
468
+ #: nextend-facebook-connect/includes/userData.php:172
469
  msgid "Register"
470
  msgstr "Cadastrar"
471
 
472
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:47
473
  msgid "Login"
474
+ msgstr "Log in"
475
 
476
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:55
477
  msgid "Link"
478
+ msgstr "Link"
479
 
480
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:73
481
  msgid "Store in meta key"
482
+ msgstr "Armazenar na chave meta"
 
 
 
 
 
483
 
484
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
485
  msgid "Shortcode"
501
  msgid "Image url"
502
  msgstr "URL da Imagem"
503
 
504
+ #: nextend-facebook-connect/admin/templates/debug.php:7
505
+ #: nextend-facebook-connect/admin/templates/header.php:20
506
+ msgid "Debug"
507
+ msgstr "Depuração"
508
+
509
+ #: nextend-facebook-connect/admin/templates/debug.php:40
510
+ msgid "Test network connection with providers"
511
+ msgstr "Teste a conexão da rede com provedores"
512
+
513
+ #: nextend-facebook-connect/admin/templates/debug.php:47
514
+ msgid "You don't have cURL support, please enable it in php.ini!"
515
+ msgstr "Você não tem suporte a cURL, habilite-o em php.ini!"
516
+
517
+ #: nextend-facebook-connect/admin/templates/debug.php:57
518
+ #, php-format
519
+ msgid "Test %1$s connection"
520
+ msgstr "Teste %1$s conexão"
521
+
522
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:7
523
+ msgid "Pro Addon - Authorized domain has been changed"
524
+ msgstr "Complemento pro - O domínio autorizado foi alterado"
525
+
526
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:15
527
+ msgid ""
528
+ "<b>You must authorize your new domain</b> to receive <b>updates and support</"
529
+ "b> in the future."
530
+ msgstr ""
531
+ "<b>Você deve autorizar seu novo domínio</b>para receber <b>atualizações e "
532
+ "suporte</b> no futuro."
533
+
534
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:21
535
+ msgid "You can authorize your new domain by completing the following steps:"
536
+ msgstr "Você pode autorizar seu novo domínio concluindo as seguintes etapas:"
537
+
538
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:25
539
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
540
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
541
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
542
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
543
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
544
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
545
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
546
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
547
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
548
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
549
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
550
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
551
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
552
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
553
+ #, php-format
554
+ msgid "Navigate to %s"
555
+ msgstr "Navegar para %s"
556
+
557
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:26
558
+ msgid "Log in with your credentials if you are not logged in"
559
+ msgstr "Faça o login com suas credenciais se você não estiver logado"
560
+
561
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:27
562
+ #, php-format
563
+ msgid "Find your old domain name: <b>%s</b>"
564
+ msgstr "Encontre o seu nome de domínio antigo: <b>%s</b>"
565
+
566
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:28
567
+ #, php-format
568
+ msgid "Click on the %1$s next to your domain name."
569
+ msgstr "Clique no %1$s ao lado do seu nome de domínio."
570
+
571
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:29
572
+ #, php-format
573
+ msgid "Authorize your %1$s by clicking on the following button."
574
+ msgstr "Autorize seu %1$s clicando no seguinte botão."
575
+
576
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:34
577
+ msgid "The authorized domain name of your site is fine!"
578
+ msgstr "O nome de domínio autorizado do seu site é bom!"
579
+
580
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
581
  msgid "Fix Oauth Redirect URIs"
582
  msgstr "Corrigir URIs de Redirecionamento Oauth"
589
  msgid "Got it"
590
  msgstr "Entendi"
591
 
592
+ #: nextend-facebook-connect/admin/templates/global-settings.php:28
593
  #: nextend-facebook-connect/admin/templates/menu.php:8
594
  msgid "Global Settings"
595
  msgstr "Configurações globais"
596
 
597
+ #: nextend-facebook-connect/admin/templates/global-settings.php:31
598
  msgid "General"
599
  msgstr "Geral"
600
 
601
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
602
+ msgid "Privacy"
603
+ msgstr "Privacidade"
604
+
605
+ #: nextend-facebook-connect/admin/templates/global-settings.php:35
606
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
607
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
608
  msgid "Login Form"
609
  msgstr "Formulário de login"
610
 
611
+ #: nextend-facebook-connect/admin/templates/global-settings.php:39
612
  msgid "Comment"
613
  msgstr "Comentário"
614
 
620
  msgid "Support"
621
  msgstr "Suporte"
622
 
623
+ #: nextend-facebook-connect/admin/templates/header.php:23
624
  #: nextend-facebook-connect/admin/templates/menu.php:12
625
  msgid "Pro Addon"
626
+ msgstr "Complemento pro"
627
 
628
  #: nextend-facebook-connect/admin/templates/menu.php:6
629
  msgid "Providers"
656
  "recursos do Pro, você precisa ativá-lo."
657
 
658
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
659
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
660
  msgid "Deauthorize Pro Addon"
661
  msgstr "Desautorizar o Addon Pro"
662
 
685
  msgid "Activating..."
686
  msgstr "Ativando..."
687
 
688
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
689
  msgid "Pro Addon is installed and activated"
690
  msgstr "Addon Pro está instalado e ativado"
691
 
692
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:120
693
  msgid ""
694
  "You installed and activated the Pro Addon. If you don’t want to use it "
695
  "anymore, you can deauthorize using the button below."
752
  msgstr "Não Verificado"
753
 
754
  #: nextend-facebook-connect/admin/templates/providers.php:42
755
+ #: nextend-facebook-connect/admin/templates/settings/general.php:56
756
+ #: nextend-facebook-connect/admin/templates/settings/general.php:192
757
+ #: nextend-facebook-connect/includes/provider-admin.php:218
758
  msgid "Enabled"
759
  msgstr "Ativado"
760
 
767
  msgstr "Atualizar agora"
768
 
769
  #: nextend-facebook-connect/admin/templates/providers.php:72
770
+ #: nextend-facebook-connect/includes/provider-admin.php:202
771
  msgid "Verify Settings"
772
  msgstr "Verificar Configurações"
773
 
774
  #: nextend-facebook-connect/admin/templates/providers.php:80
775
+ #: nextend-facebook-connect/includes/provider-admin.php:247
776
  msgid "Enable"
777
  msgstr "Habilitar"
778
 
779
  #: nextend-facebook-connect/admin/templates/providers.php:92
780
+ #: nextend-facebook-connect/includes/provider-admin.php:255
781
  msgid "Disable"
782
  msgstr "Desativar"
783
 
785
  msgid "Import"
786
  msgstr "Importar"
787
 
788
+ #: nextend-facebook-connect/admin/templates/providers.php:124
789
+ msgid "Stay Updated"
790
+ msgstr "Ficar atualizado"
791
+
792
+ #: nextend-facebook-connect/admin/templates/providers.php:125
793
+ msgid ""
794
+ "Receive info on the latest plugin updates and social provider related "
795
+ "changes."
796
+ msgstr ""
797
+ "Receba informações sobre as atualizações mais recentes do plugin e as "
798
+ "alterações relacionadas ao provedor social."
799
+
800
+ #: nextend-facebook-connect/admin/templates/providers.php:126
801
+ msgid "Enter your email address"
802
+ msgstr "Digite seu endereço de e-mail"
803
+
804
+ #: nextend-facebook-connect/admin/templates/providers.php:130
805
+ msgid "Subscribe"
806
+ msgstr "Assinante"
807
+
808
+ #: nextend-facebook-connect/admin/templates/providers.php:146
809
  msgid "Saving..."
810
  msgstr "Salvando..."
811
 
812
+ #: nextend-facebook-connect/admin/templates/providers.php:147
813
  msgid "Saving failed"
814
  msgstr "O salvamento falhou"
815
 
816
+ #: nextend-facebook-connect/admin/templates/providers.php:148
817
  msgid "Order Saved"
818
  msgstr "Pedido Salvo"
819
 
820
+ #: nextend-facebook-connect/admin/templates/providers.php:217
821
+ msgid "Successfully subscribed!"
822
+ msgstr "Inscrito com sucesso!"
823
+
824
+ #: nextend-facebook-connect/admin/templates/providers.php:217
825
+ msgid ""
826
+ "We'll be bringing you all the latest news and updates about Social Login - "
827
+ "right to your inbox."
828
+ msgstr ""
829
+ "Apresentaremos todas as últimas novidades e atualizações sobre o Login "
830
+ "Social, diretamente na sua caixa de entrada."
831
+
832
+ #: nextend-facebook-connect/admin/templates/providers.php:224
833
+ msgid "The entered email address is invalid!"
834
+ msgstr "O endereço de e-mail inserido é inválido!"
835
+
836
  #: nextend-facebook-connect/admin/templates/review.php:14
837
  msgid "Rate your experience!"
838
  msgstr "Avalie sua experiência!"
874
  msgstr "Ok"
875
 
876
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
877
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84
878
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96
879
+ msgid "Register form"
880
+ msgstr "Formulário de registo"
881
 
882
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
883
  msgid "No Connect button"
890
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
891
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
892
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
893
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78
894
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144
895
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
896
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93
897
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159
898
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
899
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
900
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
901
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
902
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163
903
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
904
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:218
905
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
906
  msgid "Action:"
907
  msgstr "Ação:"
908
 
915
  msgstr "Botão Conectar após registrar"
916
 
917
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
918
+ msgid "Register button style"
919
+ msgstr "Estilo do botão do formulário de login"
920
 
921
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
922
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:44
923
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
924
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
925
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
926
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96
927
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
928
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
929
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
930
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
931
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
932
  #: nextend-facebook-connect/widget.php:45
933
  msgid "Icon"
934
  msgstr "Ícone"
935
 
936
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
937
+ msgid "Login button"
938
+ msgstr "Botão de login"
 
939
 
940
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:23
941
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
942
  msgid "Show"
943
  msgstr "Mostrar"
944
 
945
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:26
946
  msgid "Hide"
947
  msgstr "Esconder"
948
 
949
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
950
  #, php-format
951
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
952
  msgstr ""
953
  "Você precisa ativar o ' %1$s > %2$s > %3$s ' para este recurso funcionar"
954
 
955
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
956
  msgid "Discussion"
957
  msgstr "Discussão"
958
 
959
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
960
  msgid "Users must be registered and logged in to comment"
961
  msgstr "Os utilizadores devem estar registrados e logados para comentar"
962
 
963
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:32
964
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
965
+ msgid "Button style"
966
+ msgstr "Estilo do botão:"
967
 
968
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
969
  msgid "Target window"
990
  msgstr "Permitir registro com Social login"
991
 
992
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
 
993
  msgid "Registration notification sent to"
994
  msgstr "Notificação de registro enviada para"
995
 
996
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:59
997
  msgid "WordPress default"
998
  msgstr "Por omissão do WordPress"
999
 
1000
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:62
1001
  msgid "Nobody"
1002
  msgstr "Ninguém"
1003
 
1004
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:68
 
 
 
 
1005
  msgid "Admin"
1006
  msgstr "Admin"
1007
 
1008
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:71
1009
  msgid "User and Admin"
1010
  msgstr "Usuário e Admin"
1011
 
1012
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
 
1013
  msgid "Debug mode"
1014
  msgstr "Modo de depuração"
1015
 
1016
+ #: nextend-facebook-connect/admin/templates/settings/general.php:61
1017
+ msgid "Page for register flow"
1018
+ msgstr "Página para fluxo de registro"
1019
+
1020
+ #: nextend-facebook-connect/admin/templates/settings/general.php:65
1021
+ #: nextend-facebook-connect/admin/templates/settings/general.php:76
1022
+ msgid "None"
1023
+ msgstr "Nenhum"
1024
+
1025
+ #: nextend-facebook-connect/admin/templates/settings/general.php:68
1026
+ #, php-format
1027
+ msgid ""
1028
+ "First create a new page for register flow and insert the following "
1029
+ "shortcode: %1$s then select this page above"
1030
  msgstr ""
1031
+ "Primeiro crie uma nova página para o fluxo de registro e insira o seguinte "
1032
+ "shortcode: %1$s em seguida, selecione esta página acima"
1033
+
1034
+ #: nextend-facebook-connect/admin/templates/settings/general.php:72
1035
+ msgid "OAuth redirect uri proxy page"
1036
+ msgstr "Página do proxy uri do redirecionamento OAuth"
1037
 
1038
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
1039
+ msgid ""
1040
+ "If your wp-login.php is not available to handle the OAuth flow create a new "
1041
+ "page and select it here. Otherwise don't select any page."
1042
+ msgstr ""
1043
+
1044
+ #: nextend-facebook-connect/admin/templates/settings/general.php:85
1045
+ msgid "Prevent external redirect overrides"
1046
+ msgstr "Evitar substituições de redirecionamento externo"
1047
+
1048
+ #: nextend-facebook-connect/admin/templates/settings/general.php:91
1049
+ msgid "Disable external redirects"
1050
+ msgstr "Desativar redirecionamentos externos"
1051
+
1052
+ #: nextend-facebook-connect/admin/templates/settings/general.php:98
1053
  msgid "Default redirect url"
1054
+ msgstr "URL de redirecionamento padrão"
1055
 
1056
+ #: nextend-facebook-connect/admin/templates/settings/general.php:111
1057
+ #: nextend-facebook-connect/admin/templates/settings/general.php:149
 
 
1058
  msgid "for Login"
1059
  msgstr "Login Social"
1060
 
1061
+ #: nextend-facebook-connect/admin/templates/settings/general.php:126
1062
+ #: nextend-facebook-connect/admin/templates/settings/general.php:164
 
 
1063
  msgid "for Register"
1064
  msgstr "Cadastrar"
1065
 
1066
+ #: nextend-facebook-connect/admin/templates/settings/general.php:136
 
 
1067
  msgid "Fixed redirect url"
1068
+ msgstr "URL de redirecionamento fixo"
1069
+
1070
+ #: nextend-facebook-connect/admin/templates/settings/general.php:173
1071
+ msgid "Blacklisted redirects"
1072
+ msgstr "Redirecionamentos de Blacklisted"
1073
+
1074
+ #: nextend-facebook-connect/admin/templates/settings/general.php:179
1075
+ msgid "If you want to blacklist redirect url params. One pattern per line."
1076
+ msgstr ""
1077
+ "Se você deseja redirecionar os parâmetros de url da blacklist. Um padrão por "
1078
+ "linha."
1079
+
1080
+ #: nextend-facebook-connect/admin/templates/settings/general.php:184
1081
+ #, fuzzy
1082
+ #| msgid "Show login buttons"
1083
+ msgid "Support login restrictions"
1084
+ msgstr "Mostrar botões de login"
1085
+
1086
+ #: nextend-facebook-connect/admin/templates/settings/general.php:194
1087
+ #, php-format
1088
+ msgid "Please visit to our %1$s to check what plugins are supported!"
1089
+ msgstr ""
1090
 
1091
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
1092
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1093
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1094
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1095
  msgid "Login form button style"
1096
  msgstr "Estilo do botão do formulário de login"
1097
 
1098
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
1099
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
1100
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52
1101
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
1102
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
1103
  msgid "Login layout"
1104
  msgstr "Layout de login"
1105
 
1106
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
1107
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
1108
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
1109
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109
1110
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1111
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124
1112
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1113
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
1114
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
1115
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
1116
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
1117
  msgid "Below"
1118
  msgstr "Abaixo"
1119
 
1120
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
1121
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
1122
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
1123
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115
1124
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1125
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
1126
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1127
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
1128
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1129
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1130
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192
1131
  msgid "Below with separator"
1132
  msgstr "Abaixo com separador"
1133
 
1138
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
1139
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
1140
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
1141
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121
1142
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1143
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1144
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1145
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1146
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1147
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1148
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198
1149
  msgid "Above"
1150
  msgstr "Acima"
1151
 
1152
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
1153
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
1154
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
1155
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127
1156
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1157
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1158
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1159
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1160
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1161
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1162
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204
1163
  msgid "Above with separator"
1164
  msgstr "Acima com separador"
1165
 
1189
  msgstr "Ocultar botões de login"
1190
 
1191
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1192
+ #: nextend-facebook-connect/includes/userData.php:122
1193
  msgid "Registration Form"
1194
  msgstr "Formulário de Registo"
1195
 
1197
  msgid "Embedded login form"
1198
  msgstr "Formulário Login incorporado"
1199
 
1200
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69
1201
+ msgid "Sign Up form"
1202
+ msgstr "Formulário de inscrição"
1203
+
1204
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74
1205
+ msgid "No Connect button in Sign Up form"
1206
+ msgstr "Nenhum botão conectar no formulário de inscrição"
1207
 
1208
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
1209
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1210
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92
1211
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46
1212
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51
1213
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104
1214
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
1215
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162
1216
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167
1217
+ msgid "Connect button on"
1218
+ msgstr "Conectar botão em"
1219
+
1220
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84
1221
+ msgid "Sign Up form button style"
1222
+ msgstr "Estilo do botão do formulário de login"
1223
+
1224
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103
1225
+ msgid "Sign Up layout"
1226
+ msgstr "Inscreva-se layout"
1227
+
1228
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135
1229
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150
1230
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212
1231
+ msgid "Account details"
1232
+ msgstr "Detalhes da Conta"
1233
+
1234
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140
1235
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155
1236
  msgid "No link buttons"
1237
+ msgstr "Sem link nos botões"
1238
 
1239
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143
1240
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158
1241
  msgid "Link buttons after account details"
1242
  msgstr "Botão Vincular após detalhes da conta"
1243
 
1244
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1245
+ #: nextend-facebook-connect/nextend-social-login.php:155
1246
+ msgid ""
1247
+ "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1248
+ "\"_blank\">Privacy Policy</a>"
1249
+ msgstr ""
1250
+ "Ao clicar em registrar, você aceita nossa <a href=\"#privacy_policy_url\" "
1251
+ "target=\"_blank\">política de privacidade</a>"
1252
+
1253
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1254
+ msgid "Store"
1255
+ msgstr "Loja"
1256
+
1257
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1258
+ msgid "First and last name"
1259
+ msgstr "Primeiro e último nome"
1260
 
1261
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1262
+ msgid "When not enabled, username will be randomly generated."
1263
+ msgstr "Quando não ativado, o nome de usuário será gerado aleatoriamente."
1264
+
1265
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1266
+ #: nextend-social-login-pro/class-provider-extension.php:320
1267
+ msgid "Email"
1268
+ msgstr "E-mail"
1269
+
1270
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1271
+ msgid "When not enabled, email will be empty."
1272
+ msgstr "Quando não estiver ativado, o e-mail estará vazio."
1273
+
1274
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1275
+ #: nextend-facebook-connect/includes/avatar.php:46
1276
+ msgid "Avatar"
1277
+ msgstr "Avatar"
1278
+
1279
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1280
+ #: nextend-facebook-connect/includes/provider.php:985
1281
+ msgid "Access token"
1282
+ msgstr "Token de acesso"
1283
+
1284
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1285
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38
1286
+ msgid "Login form"
1287
+ msgstr "Formulário de login"
1288
+
1289
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1290
+ msgid "No Connect button in Login form"
1291
+ msgstr "Nenhum botão conectar no formulário de Login"
1292
+
1293
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89
1294
+ msgid "No Connect button in Register form"
1295
+ msgstr "Nenhum botão Conectar no formulário de login"
1296
+
1297
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
1298
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
 
 
1299
  msgid "Register form button style"
1300
  msgstr "Estilo do botão do formulário de login"
1301
 
1302
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118
1303
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
1304
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
 
1305
  msgid "Register layout"
1306
+ msgstr "Cadastrar layout"
1307
 
1308
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1309
+ msgid "Register Form"
1310
+ msgstr "Formulário de registo"
1311
 
1312
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43
1313
  msgid "No Connect button in login form"
1314
  msgstr "Nenhum botão Conectar no formulário de login"
1315
 
1316
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
 
 
 
 
 
 
 
 
 
 
 
 
1317
  msgid "No Connect button in register form"
1318
  msgstr "Nenhum botão Conectar no formulário de login"
1319
 
1320
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154
1321
+ msgid "Billing form"
1322
+ msgstr "Formulário de faturamento"
 
 
 
 
 
 
 
 
 
1323
 
1324
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159
1325
  msgid "No Connect button in billing form"
1326
  msgstr "Nenhum botão Connectar no formulário de cobrança"
1327
 
1328
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
1329
+ msgid "Billing layout"
1330
+ msgstr "Layout de cobrança"
1331
 
1332
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1333
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:222
1334
+ msgid "Link buttons on"
1335
+ msgstr "Link de botões em"
1336
 
1337
+ #: nextend-facebook-connect/admin/templates/test-connection.php:41
1338
+ #, php-format
1339
+ msgid "Network connection successful: %1$s"
1340
+ msgstr "Conexão de rede bem sucedida: %1$s"
1341
 
1342
+ #: nextend-facebook-connect/admin/templates/test-connection.php:47
1343
+ #, php-format
1344
+ msgid "Network connection failed: %1$s"
1345
+ msgstr "Falha na conexão de rede: %1$s"
 
 
 
 
1346
 
1347
+ #: nextend-facebook-connect/admin/templates/test-connection.php:50
1348
+ msgid ""
1349
+ "Please contact with your hosting provider to resolve the network issue "
1350
+ "between your server and the provider."
1351
  msgstr ""
1352
+ "Entre em contato com o seu provedor de hospedagem para resolver o problema "
1353
+ "de rede entre o seu servidor e o provedor."
1354
 
1355
+ #: nextend-facebook-connect/includes/avatar.php:47
1356
  msgid "Manage Avatar"
1357
+ msgstr "Gerenciar avatar"
1358
 
1359
+ #: nextend-facebook-connect/includes/avatar.php:48
1360
  #, php-format
1361
  msgid "Avatar <span class=\"count\">(%s)</span>"
1362
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1363
+ msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1364
+ msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1365
+
1366
+ #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1367
+ #: nextend-facebook-connect/includes/compat-wp-login.php:42
1368
+ #, php-format
1369
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1370
+ msgstr "%1$s &lsaquo; %2$s &#8212; WordPress"
1371
 
1372
+ #: nextend-facebook-connect/includes/compat-wp-login.php:97
1373
+ msgid "https://wordpress.org/"
1374
+ msgstr "https://wordpress.org/"
1375
+
1376
+ #: nextend-facebook-connect/includes/compat-wp-login.php:98
1377
+ msgid "Powered by WordPress"
1378
+ msgstr "Alimentado por WordPress"
1379
+
1380
+ #. translators: %s: site title
1381
+ #: nextend-facebook-connect/includes/compat-wp-login.php:234
1382
+ #, php-format
1383
+ msgctxt "site"
1384
+ msgid "&larr; Back to %s"
1385
+ msgstr "&larr; voltar para %s"
1386
+
1387
+ #: nextend-facebook-connect/includes/provider-admin.php:196
1388
  msgid "Your configuration needs to be verified"
1389
  msgstr "Sua configuração precisa ser verificada"
1390
 
1391
+ #: nextend-facebook-connect/includes/provider-admin.php:197
1392
  msgid ""
1393
  "Before you can start letting your users register with your app it needs to "
1394
  "be tested. This test makes sure that no users will have troubles with the "
1402
  "erro no popup verifique os ID e segredo ou mesmo o app. Caso contrário suas "
1403
  "configurações estão funcionando."
1404
 
1405
+ #: nextend-facebook-connect/includes/provider-admin.php:203
1406
  msgid "Please save your changes to verify settings."
1407
  msgstr "Por favor salve suas alterações para verificar suas configurações."
1408
 
1409
+ #: nextend-facebook-connect/includes/provider-admin.php:211
1410
  msgid "Works Fine"
1411
  msgstr "Funcionando bem"
1412
 
1413
+ #: nextend-facebook-connect/includes/provider-admin.php:225
1414
  #, php-format
1415
  msgid ""
1416
  "This provider is currently disabled, which means that users can’t register "
1419
  "Este provedor está desativado no momento, o que significa que os usuários "
1420
  "não podem registar-se ou iniciar sessão através de sua conta do %s."
1421
 
1422
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1423
  #, php-format
1424
  msgid ""
1425
  "This provider works fine, but you can test it again. If you don’t want to "
1429
  "não quer deixar mais usuários se registrarem e se logarem com %s você pode "
1430
  "desativá-lo."
1431
 
1432
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1433
  #, php-format
1434
  msgid ""
1435
  "This provider is currently enabled, which means that users can register or "
1438
  "Este provedor está ativado no momento, o que significa que os usuários podem "
1439
  "registar-se ou iniciar sessão através de sua conta do %s."
1440
 
1441
+ #: nextend-facebook-connect/includes/provider-admin.php:239
1442
  msgid "Verify Settings Again"
1443
  msgstr "Verificar Configurações De Novo"
1444
 
1445
+ #: nextend-facebook-connect/includes/provider-admin.php:240
1446
  msgid "Please save your changes before verifying settings."
1447
+ msgstr "Salve suas alterações antes de verificar as configurações."
1448
 
1449
+ #: nextend-facebook-connect/includes/provider.php:347
1450
+ #: nextend-facebook-connect/includes/provider.php:643
1451
+ #: nextend-facebook-connect/includes/provider.php:648
1452
  msgid "Authentication successful"
1453
  msgstr "Autenticação bem sucedida"
1454
 
1455
+ #: nextend-facebook-connect/includes/provider.php:587
1456
+ #: nextend-facebook-connect/includes/user.php:109
1457
  msgid "Authentication error"
1458
  msgstr "Erro de autenticação"
1459
 
1460
+ #: nextend-facebook-connect/includes/provider.php:602
1461
  msgid "Unlink successful."
1462
  msgstr "Desvinculação bem sucedida."
1463
 
1464
+ #: nextend-facebook-connect/includes/provider.php:799
1465
+ #: nextend-facebook-connect/includes/provider.php:806
1466
  msgid "The test was successful"
1467
  msgstr "O teste foi bem sucedido"
1468
 
1469
+ #: nextend-facebook-connect/includes/provider.php:852
1470
  msgid "Authentication failed"
1471
  msgstr "Falha na autenticação"
1472
 
1473
+ #: nextend-facebook-connect/includes/provider.php:977
1474
+ msgid "Identifier"
1475
+ msgstr "Identificador"
1476
+
1477
+ #: nextend-facebook-connect/includes/provider.php:993
1478
+ msgid "Profile picture"
1479
+ msgstr "Foto do perfil"
1480
+
1481
+ #: nextend-facebook-connect/includes/user.php:69
1482
  #, php-format
1483
  msgid ""
1484
  "Your %1$s account is successfully linked with your account. Now you can sign "
1487
  "Sua conta %1$s foi vinculada com sucesso com sua conta. Agora você pode "
1488
  "logar com o %2$s facilmente."
1489
 
1490
+ #: nextend-facebook-connect/includes/user.php:72
1491
  #, php-format
1492
  msgid ""
1493
  "You have already linked a(n) %s account. Please unlink the current and then "
1496
  "Você já vinculou uma conta %s. Por favor desvincule a atual e então você "
1497
  "poderá vincular outra conta %s."
1498
 
1499
+ #: nextend-facebook-connect/includes/user.php:77
1500
  #, php-format
1501
  msgid "This %s account is already linked to other user."
1502
  msgstr "A conta %s já está vinculada a outro usuário."
1503
 
1504
+ #: nextend-facebook-connect/includes/userData.php:122
1505
+ msgid "Register For This Site!"
1506
+ msgstr "Registrar Para Este Site!"
1507
+
1508
  #. translators: %2$s: PHP version
1509
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1510
  #, php-format
1511
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1512
+ msgstr "%1$s requer a versão do PHP %2$s+, O plugin atualmente não está ativo."
1513
 
1514
  #. translators: %2$s: WordPress version
1515
  #: nextend-facebook-connect/nextend-facebook-connect.php:41
1518
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1519
  "version, the plugin is currently NOT ACTIVE."
1520
  msgstr ""
1521
+ "%1$s requer versão do WordPress %2$s+. Como você está usando uma versão "
1522
+ "anterior, o plugin não está ativo no momento."
1523
 
1524
+ #: nextend-facebook-connect/nextend-social-login.php:77
1525
+ #: nextend-facebook-connect/nextend-social-login.php:84
1526
  #, php-format
1527
  msgid "Please update %1$s to version %2$s or newer."
1528
  msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente."
1529
 
1530
+ #: nextend-facebook-connect/nextend-social-login.php:77
1531
+ #: nextend-facebook-connect/nextend-social-login.php:84
1532
  msgid "Update now!"
1533
  msgstr "Atualizar agora!"
1534
 
1535
+ #: nextend-facebook-connect/nextend-social-login.php:91
1536
+ #, php-format
1537
+ msgid "Your domain name changed so you must authorize %1$s again."
1538
+ msgstr ""
1539
+ "Seu nome de domínio foi alterado, então você deve autorizar %1$s novamente."
1540
+
1541
+ #: nextend-facebook-connect/nextend-social-login.php:485
1542
  #, php-format
1543
  msgid ""
1544
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1547
  "%s tomou o lugar do Nextend Google Connect. Você pode apagar o Nextend "
1548
  "Google Connect como ele não é mais necessário."
1549
 
1550
+ #: nextend-facebook-connect/nextend-social-login.php:496
1551
  #, php-format
1552
  msgid ""
1553
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1556
  "%s tomou o lugar do Nextend Twitter Connect. Você pode apagar o Nextend "
1557
  "Twitter Connect como ele não é mais necessário."
1558
 
1559
+ #: nextend-facebook-connect/nextend-social-login.php:760
1560
+ #: nextend-facebook-connect/nextend-social-login.php:1106
 
 
 
 
1561
  msgid "Social Login"
1562
  msgstr "Login Social"
1563
 
1564
+ #: nextend-facebook-connect/nextend-social-login.php:1087
1565
  msgid "Social Accounts"
1566
  msgstr "Redes Sociais"
1567
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1568
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1569
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1570
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1571
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1572
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
 
1573
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1574
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1575
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1588
  msgstr "Na barra lateral esquerda, clique em \"Facebook Login/Settings\""
1589
 
1590
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1591
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1592
  #, php-format
1593
  msgid ""
1594
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1597
  "\": <b>%s</b>"
1598
 
1599
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1600
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1601
  msgid "Click on \"Save Changes\""
1602
  msgstr "Clique em \"Salvar Alterações\""
1603
 
1609
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1610
  "order to allow login with %1$s."
1611
  msgstr ""
1612
+ "%1$s permite apenas redirecionamentos OAuth de HTTPS. Você deve mover seu "
1613
+ "site para HTTPS para permitir o login com %1$s."
1614
 
1615
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:12
1616
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:14
1617
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:12
1618
  msgid "How to get SSL for my WordPress site?"
1619
+ msgstr "Como obter SSL para o meu site WordPress?"
1620
 
1621
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
1622
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1623
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1624
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1637
  "dirija-se a “Configurações” e configure o “%2$s” e “%3$s” dados de acordo "
1638
  "com seu App do %1$s."
1639
 
1640
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1641
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1642
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1643
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1644
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1645
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1646
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1647
  #, php-format
1648
  msgctxt "App creation"
1649
  msgid "Create %s"
1650
  msgstr "Criar %s"
1651
 
1652
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1653
  msgid "Click on the \"Add a New App\" button"
1654
  msgstr "Clique no botão \"Adicionar um Novo App\""
1655
 
1656
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1657
  msgid "Fill \"Display Name\" and \"Contact Email\""
1658
  msgstr "Preencha \"Nome de Exibição\" e \"Email de Contato\""
1659
 
1660
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1661
  msgid "Click on blue \"Create App ID\" button"
1662
  msgstr "Clique no botão azul \"Criar ID do App\""
1663
 
1664
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1665
  msgid ""
1666
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1667
  "button"
1669
  "Mova seu mouse sobre Facebook Login e clique no botão “Configurar” que "
1670
  "aparecerá"
1671
 
1672
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1673
  msgid "Choose Web"
1674
  msgstr "Escolher Web"
1675
 
1676
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1677
  #, php-format
1678
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1679
  msgstr ""
1680
  "Preencha “URL do Site” com a url de sua página, provavelmente: <b>%s</b>"
1681
 
1682
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1683
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
1684
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1685
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
1686
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
1687
  msgid "Click on \"Save\""
1688
  msgstr "Clique em \"Salvar\""
1689
 
1690
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1691
  msgid "In the left sidebar, click on \"Facebook Login\""
1692
  msgstr "Na barra lateral esquerda, clique em \"Facebook Login\""
1693
 
1694
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1695
  msgid "In the top of the left sidebar, click on \"Settings\""
1696
  msgstr "No topo da barra lateral esquerda, clique em \"Configurações\""
1697
 
1698
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1699
  msgid ""
1700
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1701
  "click on the \"Show\" button. These will be needed in plugin's settings."
1703
  "Aqui voc6e pode ver seu “ID do APP” e seu “Segredo do App” se você clicar no "
1704
  "botão “Mostrar”. Isto será necessário nas configurações do plugin."
1705
 
1706
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1707
  msgid "Enter your domain name to the App Domains"
1708
  msgstr "Digite seu nome de domínio para os Domínios do App"
1709
 
1710
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1711
  msgid ""
1712
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1713
  "accessible privacy policy that explains what data you are collecting and how "
1717
  "privacidade publicamente disponível e facilmente acessível que explique "
1718
  "quais dados você está coletando e como você utilizará estes dados."
1719
 
1720
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1721
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1722
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1723
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1724
  msgid "Save your changes."
1725
  msgstr "Salve suas alterações."
1726
 
1727
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1728
  msgid ""
1729
  "Your application is currently private, which means that only you can log in "
1730
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1733
  "logar com ela. No menu lateral esquerdo escolha “Revisar App” e torne seu "
1734
  "App público"
1735
 
1736
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1737
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
1738
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1739
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1740
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1741
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1742
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1743
  #, php-format
1744
  msgid "I am done setting up my %s"
1890
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1891
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1892
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1893
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1894
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1895
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1896
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1897
  msgid "Required"
1902
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1903
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1904
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1905
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1906
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1907
  #, php-format
1908
  msgid ""
1928
  msgid "Unlink account from <b>Facebook</b>"
1929
  msgstr "Desvincular conta do <b>Facebook</b>"
1930
 
1931
+ #: nextend-facebook-connect/providers/facebook/facebook.php:154
1932
+ #: nextend-facebook-connect/providers/google/google.php:144
1933
+ #: nextend-facebook-connect/providers/twitter/twitter.php:105
1934
+ #: nextend-social-login-pro/providers/amazon/amazon.php:63
1935
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1936
+ #: nextend-social-login-pro/providers/paypal/paypal.php:125
1937
+ #: nextend-social-login-pro/providers/vk/vk.php:60
1938
  #, php-format
1939
  msgid ""
1940
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1941
  msgstr ""
1942
  "O %1$s inserido não parece ser válido. Por favor insira um %2$s válido."
1943
 
1944
+ #: nextend-facebook-connect/providers/facebook/facebook.php:333
1945
+ #: nextend-social-login-pro/providers/paypal/paypal.php:201
1946
+ #, php-format
1947
+ msgid "Required scope: %1$s"
1948
+ msgstr "Escopo requerido: %1$s"
1949
+
1950
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1951
+ msgid "Button skin"
1952
+ msgstr "Skin de botão"
1953
+
1954
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1955
+ msgid "Uniform"
1956
+ msgstr "Uniforme"
1957
+
1958
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1959
+ msgid "Light"
1960
+ msgstr "Claro"
1961
+
1962
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:20
1963
+ msgid "Dark"
1964
+ msgstr "Escuro"
1965
+
1966
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1967
  msgid "Click on the \"Credentials\" in the left hand menu"
1968
  msgstr "Clique em \"Credenciais\"no menu à esquerda"
1973
  msgstr "Clique no ID de Cliente OAuth 2.0: %s"
1974
 
1975
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1976
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1977
  #, php-format
1978
  msgid ""
1979
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1984
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1985
  msgid ""
1986
  "If you don't have a project yet, you'll need to create one. You can do this "
1987
+ "by clicking on the blue \"Create project\" button on the right side! ( If "
1988
+ "you already have a project, click on the name of your project in the "
1989
+ "dashboard instead, which will bring up a modal and click New Project. )"
1990
  msgstr ""
1991
  "Se você não tem um projeto ainda, você precisará criar um. Você pode fazer "
1992
  "isso clicando no botão azul “Criar Projeto” no lado direito"
1993
 
1994
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1995
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
1996
+ msgid "Click the Create button."
1997
+ msgstr "Clique no botão Criar."
1998
 
1999
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2000
+ msgid "Name your project and then click on the Create button again"
2001
+ msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2002
+
2003
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2004
  msgid "Once you have a project, you'll end up in the dashboard."
2005
  msgstr ""
2006
  "Uma vez que você tenha um projeto, você vai acabar no painel de controle."
2007
 
2008
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2009
  msgid ""
2010
  "Click on the \"Credentials\" in the left hand menu to create new API "
2011
  "credentials"
2012
  msgstr ""
2013
  "Clique em “Credenciais” no menu esquerdo para criar uma nova credencial API"
2014
 
 
 
 
 
 
 
 
 
2015
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2016
+ msgid "Select \"OAuth client ID\" from the dropdown."
2017
+ msgstr "Selecione \"OAuth client ID\" no menu suspenso."
2018
+
2019
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2020
  msgid ""
2021
+ "If you're prompted to set a product name, do so. Provide the Privacy Policy "
2022
+ "URL as well then click on the save button"
 
2023
  msgstr ""
2024
+ " para a aba de tela de consentimento OAuth e insira um nome de produto e "
2025
+ "forneça uma URL de Política de Privacidade, então clique no botão salvar"
 
2026
 
2027
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
2028
  msgid "Your application type should be \"Web application\""
2029
  msgstr "Seu tipo de aplicação deve ser “Aplicação Web”"
2030
 
2031
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2032
  msgid "Name your application"
2033
  msgstr "Nomeie seu aplicativo"
2034
 
2035
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2036
  msgid "Click on the Create button"
2037
  msgstr "Clique no botão Criar"
2038
 
2039
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2040
  msgid ""
2041
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2042
  "the Credentials in the left hand menu and select your app by clicking on its "
2062
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
2063
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2064
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2065
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2066
  msgid "Client ID"
2067
  msgstr "ID do Cliente"
2068
 
2072
  msgid "Client Secret"
2073
  msgstr "Chave do Cliente"
2074
 
2075
+ #: nextend-facebook-connect/providers/google/google.php:89
2076
  msgid "Continue with <b>Google</b>"
2077
  msgstr "Continuar com <b>Google</b>"
2078
 
2079
+ #: nextend-facebook-connect/providers/google/google.php:90
2080
  msgid "Link account with <b>Google</b>"
2081
  msgstr "Vincular conta com <b>Google</b>"
2082
 
2083
+ #: nextend-facebook-connect/providers/google/google.php:91
2084
  msgid "Unlink account from <b>Google</b>"
2085
  msgstr "Desvincular conta do <b>Google</b>"
2086
 
2087
+ #: nextend-facebook-connect/providers/google/google.php:329
2088
+ #, php-format
2089
+ msgid "Required API: %1$s"
2090
+ msgstr "API obrigatória: %1$s"
2091
+
2092
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2093
+ #, fuzzy
2094
+ #| msgid "Name your project and then click on the Create button again"
2095
+ msgid "Find your App and click on the Details button"
2096
+ msgstr "Nomeie o projeto e, em seguida, clique no botão Criar"
2097
 
2098
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2099
+ msgid ""
2100
+ "The Edit button can be found on the App details tab. Click on it and select "
2101
+ "Edit details"
2102
+ msgstr ""
2103
 
2104
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2105
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2106
+ #, fuzzy, php-format
2107
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2108
+ msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2109
  msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2110
 
2111
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2112
+ #, fuzzy, php-format
2113
+ #| msgid "Log in with your %s credentials if you are not logged in"
2114
+ msgid "Log in with your %s credentials if you are not logged in yet"
2115
+ msgstr "Logue com suas credenciais %s se você não estiver logado"
2116
 
2117
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2118
+ msgid ""
2119
+ "If you don't have a developer account yet, please apply one by filling all "
2120
+ "the required details! This is required for the next steps!"
2121
+ msgstr ""
2122
+ "Se você ainda não possui uma conta de desenvolvedor, aplique uma preenchendo "
2123
+ "todos os detalhes necessários! Isso é necessário para as próximas etapas!"
2124
 
2125
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2126
+ #, fuzzy, php-format
2127
+ #| msgid ""
2128
+ #| "Once your developer account is complete. Navigate back to %s if you "
2129
+ #| "aren't already there!"
2130
+ msgid ""
2131
+ "Once your developer account is complete, navigate back to %s if you aren't "
2132
+ "already there!"
2133
+ msgstr ""
2134
+ "Quando sua conta de desenvolvedor estiver completa. Navegue de volta para %s "
2135
+ "se você ainda não estiver lá!"
2136
+
2137
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2138
+ #, fuzzy, php-format
2139
+ #| msgid ""
2140
+ #| "Fill the App name, Application description fields. Then enter your site's "
2141
+ #| "URL to the Website field: <b>%s</b>"
2142
  msgid ""
2143
+ "Fill the App name, Application description fields. Then enter your site's "
2144
+ "URL to the Website URL field: <b>%s</b>"
2145
  msgstr ""
2146
+ "Preencha os campos de nome e descrição. Então entre com a URL de seu site no "
2147
  "campo Website: <b>%s</b>"
2148
 
2149
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2150
+ msgid "Tick the checkbox next to Enable Sign in with Twitter!"
2151
+ msgstr "Marque a caixa de seleção ao lado para ativar Entrada com o Twitter!"
2152
 
2153
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2154
+ #, fuzzy
2155
+ #| msgid "Full the \"Tell us how this app will be used\" field! "
2156
  msgid ""
2157
+ "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us how "
2158
+ "this app will be used” fields!"
2159
+ msgstr "Preencha o campo \"Diga-nos como este aplicativo será usado\"!\"."
2160
 
2161
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2162
+ msgid "Read the Developer Terms and click the Create button again!"
2163
+ msgstr "Leia os termos do desenvolvedor e clique no botão criar novamente!"
2164
+
2165
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2166
+ msgid "Select the Permissions tab and click Edit."
2167
+ msgstr ""
2168
+
2169
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2170
  msgid ""
2171
+ "Tick the Request email address from users under the Additional permissions "
2172
+ "section and click Save."
2173
  msgstr ""
2174
+
2175
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2176
+ msgid "Go to the Keys and tokens tab and find the API key and API secret key"
2177
+ msgstr ""
2178
+ "Vá para a aba chaves e tokens e encontre a chave da API e a chave secreta da "
2179
+ "API"
2180
 
2181
  #: nextend-facebook-connect/providers/twitter/admin/import.php:9
2182
  msgid "Import Twitter configuration"
2187
  msgstr "Vá para a aba Configurações."
2188
 
2189
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2190
+ msgid "API Key"
2191
+ msgstr "Chave API"
2192
 
2193
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2194
+ msgid "API secret key"
2195
+ msgstr "Chave secreta da API"
2196
+
2197
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2198
+ msgid "Profile image size"
2199
+ msgstr "Tamanho da imagem do perfil"
2200
 
2201
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2202
+ msgid "Original"
2203
+ msgstr "Original"
2204
+
2205
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2206
  msgid "Continue with <b>Twitter</b>"
2207
  msgstr "Continuar com <b>Twitter</b>"
2208
 
2209
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2210
  msgid "Link account with <b>Twitter</b>"
2211
  msgstr "Vincular conta com <b>Twitter</b>"
2212
 
2213
+ #: nextend-facebook-connect/providers/twitter/twitter.php:74
2214
  msgid "Unlink account from <b>Twitter</b>"
2215
  msgstr "Desvincular conta do <b>Twitter</b>"
2216
 
2229
 
2230
  #: nextend-facebook-connect/widget.php:64
2231
  msgid "Show link buttons"
2232
+ msgstr "Mostrar link de botões"
2233
 
2234
  #: nextend-facebook-connect/widget.php:73
2235
  msgid "Show unlink buttons"
2236
+ msgstr "Mostrar link de botões desvinculado"
2237
 
2238
+ #: nextend-social-login-pro/class-provider-extension.php:115
2239
  msgid "Social login is not allowed with this role!"
2240
  msgstr "O login Social não é permitido com esta função!"
2241
 
 
2242
  #: nextend-social-login-pro/class-provider-extension.php:211
2243
+ #: nextend-social-login-pro/class-provider-extension.php:214
2244
+ #: nextend-social-login-pro/class-provider-extension.php:220
2245
+ #: nextend-social-login-pro/class-provider-extension.php:227
2246
+ #: nextend-social-login-pro/class-provider-extension.php:298
2247
+ #: nextend-social-login-pro/class-provider-extension.php:301
2248
+ #: nextend-social-login-pro/class-provider-extension.php:305
2249
  msgid "ERROR"
2250
  msgstr "ERRO"
2251
 
2252
+ #: nextend-social-login-pro/class-provider-extension.php:211
2253
  msgid "Please enter a username."
2254
  msgstr "Por favor coloque um nome de usuário."
2255
 
2256
+ #: nextend-social-login-pro/class-provider-extension.php:214
2257
  msgid ""
2258
  "This username is invalid because it uses illegal characters. Please enter a "
2259
  "valid username."
2261
  "Esse usuário é inválido porque usa caracteres inválidos. Por favor, insira "
2262
  "um usuário válido."
2263
 
2264
+ #: nextend-social-login-pro/class-provider-extension.php:220
2265
  msgid "This username is already registered. Please choose another one."
2266
  msgstr "Este nome de usuário já está registrado. Por favor escolha outro."
2267
 
2268
+ #: nextend-social-login-pro/class-provider-extension.php:227
2269
  msgid "Sorry, that username is not allowed."
2270
  msgstr "Desculpe, esse nome de utilizador não é permitido."
2271
 
2272
+ #: nextend-social-login-pro/class-provider-extension.php:245
2273
+ msgid "Username"
2274
+ msgstr "Nome de usuário"
2275
+
2276
+ #: nextend-social-login-pro/class-provider-extension.php:298
2277
  msgid "Please enter an email address."
2278
  msgstr "Por favor, digite um endereço de e-mail."
2279
 
2280
+ #: nextend-social-login-pro/class-provider-extension.php:301
2281
  msgid "The email address isn&#8217;t correct."
2282
  msgstr "O endereço de email não está correto."
2283
 
2284
+ #: nextend-social-login-pro/class-provider-extension.php:305
2285
  msgid "This email is already registered, please choose another one."
2286
  msgstr "Este e-mail já está registrado, por favor, escolha outro."
2287
 
2288
+ #: nextend-social-login-pro/class-provider-extension.php:325
2289
+ msgid "Registration confirmation will be emailed to you."
2290
+ msgstr "Uma confirmação do registro será enviado por email para você."
2291
+
2292
+ #: nextend-social-login-pro/class-provider-extension.php:376
2293
  msgid "<strong>ERROR</strong>: Please enter a password."
2294
+ msgstr "<strong>ERRO</strong>:digite uma senha."
2295
 
2296
+ #: nextend-social-login-pro/class-provider-extension.php:382
2297
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
2298
+ msgstr "<strong>ERRO</strong>: Senhas não podem conter o caractere\"\\\"."
2299
 
2300
+ #: nextend-social-login-pro/class-provider-extension.php:388
2301
  msgid ""
2302
  "<strong>ERROR</strong>: Please enter the same password in both password "
2303
  "fields."
2304
+ msgstr "<strong>ERRO</strong>: Digite a mesma senha nos dois campos de senha."
 
 
 
 
2305
 
2306
+ #: nextend-social-login-pro/class-provider-extension.php:405
 
 
 
 
 
 
 
 
 
 
 
 
2307
  msgid "Password"
2308
+ msgstr "Senha"
2309
 
2310
+ #: nextend-social-login-pro/class-provider-extension.php:415
2311
  msgid "Strength indicator"
2312
+ msgstr "Indicador de força"
2313
 
2314
+ #: nextend-social-login-pro/class-provider-extension.php:420
2315
  msgid "Confirm use of weak password"
2316
+ msgstr "Confirme o uso de senha fraca"
2317
 
2318
+ #: nextend-social-login-pro/class-provider-extension.php:426
2319
  msgid "Confirm password"
2320
+ msgstr "Confirme a senha"
2321
 
2322
+ #: nextend-social-login-pro/class-provider-extension.php:438
2323
+ #, php-format
 
 
 
2324
  msgid ""
2325
  "This email is already registered, please login in to your account to link "
2326
  "with %1$s."
2327
  msgstr ""
2328
+ "Este e-mail já está registrado, faça o login na sua conta para fazer um link "
2329
+ "com %1$s."
2330
 
2331
  #: nextend-social-login-pro/nextend-social-login-pro.php:51
2332
  #, php-format
2333
  msgid "Please install and activate %1$s to use the %2$s"
2334
+ msgstr "Instale e ative %1$s para usar o %2$s"
2335
 
2336
  #: nextend-social-login-pro/nextend-social-login-pro.php:57
2337
  msgid "Activate"
2338
+ msgstr "Ativar"
2339
 
2340
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2341
  msgid "Network Activate"
2342
+ msgstr "Ativar rede"
2343
 
2344
  #: nextend-social-login-pro/nextend-social-login-pro.php:77
2345
  msgid "Install now!"
2346
+ msgstr "Instalar agora!"
2347
 
2348
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2349
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
2350
+ #, php-format
 
2351
  msgid "Visit %s"
2352
+ msgstr "Visita %s"
2353
 
2354
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2355
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2356
  msgid ""
2357
  "On the right side, under \"Manage\", hover over the gear icon and select "
2358
  "\"Web Settings\" option."
2359
  msgstr ""
2360
+ "No lado direito, em \"Gerenciar\", passe o mouse sobre o ícone de engrenagem "
2361
+ "e selecione a opção \"Configurações da Web\"."
2362
 
2363
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2364
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2365
  msgid "Click \"Edit\"."
2366
+ msgstr "Clique \"editar\"."
2367
 
2368
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
2369
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2370
+ #, php-format
 
 
 
2371
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2372
  msgstr ""
2373
+ "Adicione o seguinte URL ao campo \"URLs de retorno permitidos\" <b>%s</b>."
 
2374
 
2375
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2376
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2377
+ #, php-format
 
 
 
 
 
2378
  msgid ""
2379
  "To allow your visitors to log in with their %1$s account, first you must "
2380
  "create an %1$s App. The following guide will help you through the %1$s App "
2382
  "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your "
2383
  "%1$s App."
2384
  msgstr ""
2385
+ "Para permitir que seus visitantes façam login com a conta %1$s, primeiro "
2386
+ "você deve criar um aplicativo %1$s. O guia a seguir o ajudará no processo de "
2387
+ "criação do aplicativo %1$s. Depois de criar seu aplicativo %1$s, vá até "
2388
+ "\"Configurações\" e configure os \"%2$s\" e \"%3$s\" de acordo com seu "
2389
+ "aplicativo %1$s."
2390
 
2391
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2392
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2393
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2394
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2395
+ #, php-format
 
2396
  msgid "Log in with your %s credentials if you are not logged in."
2397
+ msgstr "Faça o login com o seu %s credenciais se você não estiver logado."
2398
 
2399
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
 
 
 
 
2400
  msgid ""
2401
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2402
  "do this by clicking on the orange \"Create a New Security Profile\" button "
2403
  "on the left side."
2404
  msgstr ""
2405
+ "Se você ainda não tem um perfil de segurança, será necessário criar um. Você "
2406
+ "pode fazer isso clicando no botão laranja \"Criar um novo perfil de segurança"
2407
+ "\" no lado esquerdo."
2408
 
2409
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2410
  msgid ""
2411
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
2412
  "\"Consent Privacy Notice URL\"."
2413
  msgstr ""
2414
+ "Preencha \"nome do perfil de segurança\", \"descrição do perfil de segurança"
2415
+ "\" e \"URL de aviso de privacidade de consentimento\"."
2416
 
2417
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2418
  msgid "Once you filled all the required fields, click \"Save\"."
2419
  msgstr ""
2420
+ "Depois de preencher todos os campos obrigatórios, clique em \"Salvar\"."
2421
 
2422
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2423
+ #, php-format
 
2424
  msgid ""
2425
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
2426
  msgstr ""
2427
  "Preencha “URL do Site” com a url de sua página, provavelmente: <b>%s</b>"
2428
 
2429
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2430
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
2431
  msgid "When all fields are filled, click \"Save\"."
2432
+ msgstr "Quando todos os campos estiverem preenchidos, clique em \"Salvar\"."
2433
 
2434
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2435
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
2436
  msgstr ""
2437
+ "Escolha a aba \"Geral\", que fica ao lado da aba \"Configurações da Web\"."
2438
 
2439
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2440
  msgid ""
2441
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
2442
  "page."
2443
  msgstr ""
2444
+ "Encontre o \"Client ID\" e \"Client Secret\" necessários no meio da página."
2445
 
2446
  #: nextend-social-login-pro/providers/amazon/amazon.php:37
 
 
2447
  msgid "Continue with <b>Amazon</b>"
2448
+ msgstr "Continuar com <b>Amazon</b>"
2449
 
2450
  #: nextend-social-login-pro/providers/amazon/amazon.php:38
 
 
2451
  msgid "Link account with <b>Amazon</b>"
2452
+ msgstr "Vincular conta com <b>Amazon</b>"
2453
 
2454
  #: nextend-social-login-pro/providers/amazon/amazon.php:39
 
 
2455
  msgid "Unlink account from <b>Amazon</b>"
2456
+ msgstr "Desvincular conta do <b>Amazon</b>"
2457
+
2458
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2459
+ msgid "Click on the App"
2460
+ msgstr "Clicar no App"
2461
 
2462
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
2463
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
2505
  "Você provavelmente quer habilitar o “r_emailaddress” abaixo das Permissões "
2506
  "de Aplicação Padrão"
2507
 
2508
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:62
2509
  msgid "Continue with <b>LinkedIn</b>"
2510
  msgstr "Continuar com <b>LinkedIn</b>"
2511
 
2512
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2513
  msgid "Link account with <b>LinkedIn</b>"
2514
  msgstr "Vincular conta com <b>LinkedIn</b>"
2515
 
2516
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:64
2517
  msgid "Unlink account from <b>LinkedIn</b>"
2518
  msgstr "Desvincular conta do <b>LinkedIn</b>"
2519
 
2520
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
2521
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2522
+ msgid "Scroll down to \"REST API apps\"."
2523
+ msgstr "Role para baixo até \"apps de API REST\"."
2524
+
2525
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2526
+ #, php-format
2527
+ msgid "Click on the name of your %s App."
2528
+ msgstr "Clique no nome do seu %s aplicativo."
2529
+
2530
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2531
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2532
+ msgid "Select the \"Live\" option on the top-right side. "
2533
+ msgstr "Selecione a opção \"ao vivo\" no lado superior direito."
2534
+
2535
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13
2536
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2537
+ msgid ""
2538
+ "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" heading "
2539
+ "and click \"Show\"."
2540
+ msgstr ""
2541
+ "Role para baixo até \"LIVE APP SETTINGS\", procure o título \"Live Return URL"
2542
+ "\" e clique em \"Show\"."
2543
+
2544
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14
2545
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
2546
+ #, php-format
2547
+ msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2548
+ msgstr "Adicione a seguinte URL ao campo \"URL de retorno ao vivo\" <b>%s</b>"
2549
+
2550
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
2551
+ msgid "Click the \"Create App\" button."
2552
+ msgstr "Clique no botão \"Criar Novo App\"."
2553
+
2554
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
2555
+ msgid "Fill the \"App Name\" field and click \"Create App\" button."
2556
+ msgstr ""
2557
+ "Preencha o campo \"nome do aplicativo\" e clique no botão \"criar aplicativo"
2558
+ "\"."
2559
+
2560
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
2561
+ msgid ""
2562
+ "Scroll down to \"App feature options\" section and tick \"Log In with PayPal"
2563
+ "\"."
2564
+ msgstr ""
2565
+ "Role para baixo até a seção \"Opções do recurso do aplicativo\" e marque "
2566
+ "\"fazer login com o PayPal\"."
2567
+
2568
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
2569
+ msgid ""
2570
+ "Click \"Advanced Options\" which can be found at the end of text \"Log In "
2571
+ "with PayPal\"."
2572
+ msgstr ""
2573
+ "Clique em \"Opções avançadas\", que pode ser encontrado no final do texto "
2574
+ "\"Login com o PayPal\"."
2575
+
2576
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
2577
+ msgid "Tick \"Full name\" and \"Email address\"."
2578
+ msgstr "Marque \"Nome completo\" e \"Endereço de e-mail\"."
2579
+
2580
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27
2581
+ msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
2582
+ msgstr ""
2583
+ "Preencha \"URL da política de privacidade\" e \"URL do contrato do usuário\"."
2584
+
2585
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29
2586
+ msgid ""
2587
+ "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary "
2588
+ "\"Client ID\" and \"Secret\"! ( Make sure you are in \"Live\" mode and not "
2589
+ "\"Sandbox\" )."
2590
+ msgstr ""
2591
+ "Role até a seção \"CREDENCIAIS DA API AO VIVO\" e encontre os \"ID do cliente"
2592
+ "\" e \"Secreto\" necessários! (Certifique-se de estar no modo \"Live\" e não "
2593
+ "\"Sandbox\")."
2594
+
2595
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
2596
+ msgid "Secret"
2597
+ msgstr "Secreto"
2598
+
2599
+ #: nextend-social-login-pro/providers/paypal/paypal.php:99
2600
+ msgid "Continue with <b>PayPal</b>"
2601
+ msgstr "Continuar com <b>PayPal</b>"
2602
+
2603
+ #: nextend-social-login-pro/providers/paypal/paypal.php:100
2604
+ msgid "Link account with <b>PayPal</b>"
2605
+ msgstr "Vincular conta com <b>PayPal</b>"
2606
+
2607
+ #: nextend-social-login-pro/providers/paypal/paypal.php:101
2608
+ msgid "Unlink account from <b>PayPal</b>"
2609
+ msgstr "Desvincular conta do <b>PayPal</b>"
2610
+
2611
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
 
 
2612
  msgid "Click on the Manage button at the App"
2613
+ msgstr "Clique no botão Gerenciar no aplicativo"
2614
 
2615
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
 
 
2616
  msgid "Go to the Settings menu"
2617
+ msgstr "Vá para o menu configurações"
2618
 
2619
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:12
2620
+ #, php-format
 
 
2621
  msgid ""
2622
  "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
2623
  msgstr ""
2624
+ "Adicione o seguinte URL ao \"Redirecionado autorizada URI:\" campo: <b>%s</b>"
 
2625
 
2626
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
 
 
2627
  msgid "Locate the blue \"Create application\" button and click on it."
2628
+ msgstr "Localize o botão azul “Criar Aplicação” e clique nele."
2629
 
2630
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
2631
  msgid "Enter the title of your app and select \"Websie\"."
2632
+ msgstr "Digite o título do seu aplicativo e selecione \"Website\"."
2633
 
2634
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
2635
+ #, php-format
 
2636
  msgid ""
2637
  "Fill \"Site address\" with the url of your homepage, probably: <b>%s</b>"
2638
  msgstr ""
2639
+ "Preencha \"Endereço do site\" com a URL da sua página inicial, "
2640
+ "provavelmente: <b>%s</b>"
2641
 
2642
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
2643
+ #, php-format
 
2644
  msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2645
  msgstr ""
2646
+ "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
2647
 
2648
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
2649
  msgid "When all fields are filled, create you app."
2650
+ msgstr "Quando todos os campos estiverem preenchidos, crie seu aplicativo."
2651
 
2652
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
2653
  msgid ""
2654
  "You'll be sent a confirmation code via SMS which you need to type to be able "
2655
  "to create the app."
2656
  msgstr ""
2657
+ "Você receberá um código de confirmação por SMS que precisa ser digitado para "
2658
+ "poder criar o aplicativo."
2659
 
2660
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
2661
  msgid "Fill the form for your app and upload an app icon then hit Save."
2662
  msgstr ""
2663
+ "Preencha o formulário do seu aplicativo, envie um ícone do aplicativo e "
2664
+ "pressione Salvar."
2665
 
2666
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
 
 
2667
  msgid "Pick Settings at the left-hand menu "
2668
+ msgstr "Escolha Configurações no menu à esquerda"
2669
 
2670
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
2671
+ #, php-format
 
 
2672
  msgid ""
2673
  "Add the following URL to the \"Authorized redirect URI\" field <b>%s</b> "
2674
  msgstr ""
2675
+ "Adicione a seguinte URL ao campo \"URI de redirecionamento autorizado\"<b>"
2676
+ "%s</b> "
2677
 
2678
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:26
 
 
2679
  msgid "Save your app"
2680
+ msgstr "Salve seu aplicativo"
2681
 
2682
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:27
2683
  msgid ""
2684
  "Find the necessary Application ID and Secure key at the top of the Settings "
2685
  "page where you just hit the save button."
2686
  msgstr ""
2687
+ "Encontre o ID do aplicativo e a chave segura necessários na parte superior "
2688
+ "da página Configurações, onde você acabou de pressionar o botão Salvar."
2689
 
2690
  #: nextend-social-login-pro/providers/vk/admin/settings.php:26
2691
  msgid "Application ID"
2692
+ msgstr "ID do aplicativo"
2693
 
2694
  #: nextend-social-login-pro/providers/vk/admin/settings.php:38
2695
  msgid "Secure key"
2696
+ msgstr "Chave segura"
2697
 
2698
  #: nextend-social-login-pro/providers/vk/vk.php:34
 
 
2699
  msgid "Continue with <b>VK</b>"
2700
+ msgstr "Continuar com <b>VK</b>"
2701
 
2702
  #: nextend-social-login-pro/providers/vk/vk.php:35
 
 
2703
  msgid "Link account with <b>VK</b>"
2704
+ msgstr "Vincular conta com <b>VK</b>"
2705
 
2706
  #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
2707
  msgid "Unlink account from <b>VK</b>"
2708
+ msgstr "Desvincular conta do <b>VK</b>"
2709
+
2710
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2711
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2712
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:11
2713
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:8
2714
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
2715
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
2716
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
2717
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
2718
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
2719
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
2720
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
2721
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
2722
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
2723
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
2724
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
2725
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
2726
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
2727
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
2728
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
2729
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
2730
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
2731
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
2732
  msgid "OR"
2733
  msgstr "OU"
2734
 
2735
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
2736
+ #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:1
2737
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2738
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2739
  msgid "Social accounts"
2740
  msgstr "Contas redes sociais"
2741
 
2742
+ #~ msgid "Click on the \"Settings\" tab"
2743
+ #~ msgstr "Clique na aba \"Configurações\""
2744
+
2745
+ #~ msgid "Click on \"Update Settings\""
2746
+ #~ msgstr "Clicar em \"Atualizar Configurações\""
2747
+
2748
+ #~ msgid "Click \"Manage Settings\" under the Tools section!"
2749
+ #~ msgstr "Clique em \"gerenciar configurações\" na seção ferramentas!"
2750
+
2751
+ #~ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2752
+ #~ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
2753
+
2754
+ #~ msgid "Click on \"Update\""
2755
+ #~ msgstr "Clique em \"Atualizar\""
2756
+
2757
+ #~ msgid "Click on the \"Create New Application\" button."
2758
+ #~ msgstr "Clique no botão \"Criar novo aplicativo\"."
2759
+
2760
+ #~ msgid "Enter a \"Name\" and \"Description\" for your App."
2761
+ #~ msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo."
2762
+
2763
+ #~ msgid "You can leave the \"Javascript Origins\" field blank!"
2764
+ #~ msgstr "Você pode deixar o campo \"Javascript Origins\" em branco!"
2765
+
2766
+ #~ msgid "Complete the human verification test."
2767
+ #~ msgstr "Complete o teste de verificação humano."
2768
+
2769
+ #~ msgid "At the \"Type\" make sure \"Web\" is selected!"
2770
+ #~ msgstr "No \"Tipo\", verifique se \"Web\" está selecionado!"
2771
+
2772
+ #~ msgid "Click the \"Create\" button!"
2773
+ #~ msgstr "Clique no botão \"Criar\"!"
2774
+
2775
+ #~ msgid ""
2776
+ #~ "Click the name of your App either in the Breadcrumb navigation or next to "
2777
+ #~ "Editing!"
2778
+ #~ msgstr ""
2779
+ #~ "Clique no nome do seu aplicativo na navegação do Breadcrumb ou ao lado de "
2780
+ #~ "Editando!"
2781
+
2782
+ #~ msgid ""
2783
+ #~ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2784
+ #~ "needed in the plugin's settings."
2785
+ #~ msgstr ""
2786
+ #~ "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". "
2787
+ #~ "Estes serão necessários nas configurações do plugin."
2788
+
2789
+ #~ msgid "Continue with <b>WordPress.com</b>"
2790
+ #~ msgstr "Continuar com <b>WordPress.com</b>"
2791
+
2792
+ #~ msgid "Link account with <b>WordPress.com</b>"
2793
+ #~ msgstr "Vincular conta com <b>WordPress.com</b>"
2794
+
2795
+ #~ msgid "Unlink account from <b>WordPress.com</b>"
2796
+ #~ msgstr "Desvincular conta do <b>WordPress.com</b>"
2797
+
2798
+ #~ msgid ""
2799
+ #~ "Pick a custom page when wp-login.php not available to handle the OAuth "
2800
+ #~ "flow."
2801
+ #~ msgstr ""
2802
+ #~ "Escolha uma página personalizada quando o wp-login.php não estiver "
2803
+ #~ "disponível para manipular o fluxo do OAuth."
2804
+
2805
+ #~ msgid ""
2806
+ #~ "Go back to the Credentials tab and locate the small box at the middle. "
2807
+ #~ "Click on the blue \"Create credentials\" button. Chose the \"OAuth client "
2808
+ #~ "ID\" from the dropdown list."
2809
+ #~ msgstr ""
2810
+ #~ "Volte para o guia de Credenciais e localize a pequena caixa no meio. "
2811
+ #~ "Clique no botão azul ”Criar credenciais\". Escolha o \"ID de cliente OAuth"
2812
+ #~ "\" da lista suspensa."
2813
+
2814
+ #~ msgid "Accept the Twitter Developer Agreement"
2815
+ #~ msgstr "Aceitar o Acordo de Desenvolvedor do Twitter"
2816
+
2817
+ #~ msgid ""
2818
+ #~ "Create your application by clicking on the Create your Twitter "
2819
+ #~ "application button"
2820
+ #~ msgstr "Crie sua aplicação clicando no botão Criar sua aplicação Twitter"
2821
+
2822
+ #~ msgid "Consumer Key"
2823
+ #~ msgstr "Chave do consumidor"
2824
+
2825
+ #~ msgid "Consumer Secret"
2826
+ #~ msgstr "Senha Consumidor"
2827
+
2828
+ #~ msgid "BuddyPress register form"
2829
+ #~ msgstr "Formulário de registo BuddyPress"
2830
+
2831
+ #~ msgid "BuddyPress register button style"
2832
+ #~ msgstr "Estilo de botão de registro BuddyPress"
2833
+
2834
+ #~ msgid "Comment login button"
2835
+ #~ msgstr "Botão de login de comentário"
2836
+
2837
+ #~ msgid "Comment button style"
2838
+ #~ msgstr "Estilo do botão de comentário"
2839
+
2840
+ #~ msgid "WooCommerce login form"
2841
+ #~ msgstr "Formulário de login do WooCommerce"
2842
+
2843
+ #~ msgid "Connect button before login form"
2844
+ #~ msgstr "Botão Conectar antes de formulário de login"
2845
+
2846
+ #~ msgid "Connect button after login form"
2847
+ #~ msgstr "Botão Conectar após o formulário de login"
2848
+
2849
+ #~ msgid "WooCommerce register form"
2850
+ #~ msgstr "Formulário de registo do WooCommerce"
2851
+
2852
+ #~ msgid "Connect button before register form"
2853
+ #~ msgstr "Botão Conectar antes de formulário de registro"
2854
+
2855
+ #~ msgid "Connect button after register form"
2856
+ #~ msgstr "Botão Conectar após o formulário de registro"
2857
+
2858
+ #~ msgid "WooCommerce billing form"
2859
+ #~ msgstr "Formulário de Cobrança do WooCommerce"
2860
+
2861
+ #~ msgid "Connect button before billing form"
2862
+ #~ msgstr "Botão Conectar antes do formulário de cobrança"
2863
+
2864
+ #~ msgid "Connect button after billing form"
2865
+ #~ msgstr "Botão Conectar após o formulário de cobrança"
2866
+
2867
+ #~ msgid "Link buttons before account details"
2868
+ #~ msgstr "Botão Vincular antes de detalhes da conta"
2869
+
2870
+ #~ msgid "WooCommerce button style"
2871
+ #~ msgstr "Estilo do botão WooCommerce"
2872
+
2873
  #~ msgid "Use custom"
2874
  #~ msgstr "Usar personalizado"
2875
 
2876
  #~ msgid "Fixed redirect url for register"
2877
  #~ msgstr "Url de redirecionamento corrigido para registo"
2878
 
 
 
 
2879
  #~ msgid "Registration form"
2880
  #~ msgstr "Formulário de registro"
2881
 
languages/nextend-facebook-connect-zh_ZH.mo CHANGED
Binary file
languages/nextend-facebook-connect-zh_ZH.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 2018-05-08 15:05+0200\n"
5
- "PO-Revision-Date: 2018-05-08 15:05+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_CN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Poedit 2.0.7\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -26,46 +26,137 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
- #: nextend-facebook-connect/admin/admin.php:187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  #, php-format
31
  msgid "%s needs json_decode function."
32
  msgstr "%s 需要 json_decode 函数。"
33
 
34
- #: nextend-facebook-connect/admin/admin.php:187
35
  msgid "Please contact your server administrator and ask for solution!"
36
  msgstr "请与服务器管理员联系并寻求解决方案!"
37
 
38
- #: nextend-facebook-connect/admin/admin.php:214
39
- #: nextend-facebook-connect/admin/admin.php:256
40
  msgid "Settings saved."
41
  msgstr "设置已保存。"
42
 
43
- #: nextend-facebook-connect/admin/admin.php:223
44
  msgid "The authorization was successful"
45
  msgstr "授权成功"
46
 
47
- #: nextend-facebook-connect/admin/admin.php:234
48
  msgid "Deauthorize completed."
49
  msgstr "取消授权."
50
 
51
- #: nextend-facebook-connect/admin/admin.php:374
52
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
53
  #: nextend-facebook-connect/admin/templates/providers.php:84
54
  #: nextend-facebook-connect/admin/templates/providers.php:96
55
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
56
  msgid "Settings"
57
  msgstr "设置"
58
 
59
- #: nextend-facebook-connect/admin/admin.php:448
60
- #: nextend-facebook-connect/includes/oauth2.php:131
61
- #: nextend-facebook-connect/includes/oauth2.php:273
62
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
63
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:155
64
  #, php-format
65
  msgid "Unexpected response: %s"
66
  msgstr "响应出现意外情况: %s"
67
 
68
- #: nextend-facebook-connect/admin/admin.php:506
69
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
70
  #, php-format
71
  msgid ""
@@ -75,15 +166,15 @@ msgstr ""
75
  "%s 检测到您的登录网址已更改。您必须更新相关社交应用程序中的Oauth redirect "
76
  "URIs."
77
 
78
- #: nextend-facebook-connect/admin/admin.php:507
79
  msgid "Fix Error"
80
  msgstr "修复错误"
81
 
82
- #: nextend-facebook-connect/admin/admin.php:507
83
  msgid "Oauth Redirect URI"
84
  msgstr "Oauth Redirect URI"
85
 
86
- #: nextend-facebook-connect/admin/admin.php:517
87
  #, php-format
88
  msgid ""
89
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -92,78 +183,135 @@ msgstr ""
92
  "%1$s 检测到 %2$s 已经安装在你的网站. 你需要安装专业版本去显示社交登录按钮 "
93
  "%2$s 登录表单!"
94
 
95
- #: nextend-facebook-connect/admin/admin.php:518
96
  msgid "Dismiss and check Pro Addon"
97
  msgstr "解除并检查专业版本"
98
 
99
- #: nextend-facebook-connect/admin/admin.php:518
100
  msgid "Dismiss"
101
  msgstr "解除"
102
 
103
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  msgid "Login label"
105
  msgstr "登录标签"
106
 
107
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
108
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:90
109
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
110
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
111
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
 
112
  msgid "Reset to default"
113
  msgstr "恢复默认设置"
114
 
115
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
116
  msgid "Link label"
117
  msgstr "链接标签"
118
 
119
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:96
120
  msgid "Unlink label"
121
  msgstr "解除链接标签"
122
 
123
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
124
  msgid "Default button"
125
  msgstr "默认按钮"
126
 
127
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:123
128
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
129
  msgid "Use custom button"
130
  msgstr "使用自定义按钮"
131
 
132
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
133
  #, php-format
134
  msgid "Use the %s in your custom button's code to make the label show up."
135
  msgstr "使用 %s 在你的自定义按钮代码显示界面."
136
 
137
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:138
138
  msgid "Icon button"
139
  msgstr "图标按钮"
140
 
141
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:169
142
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
143
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:90
144
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
145
- #: nextend-facebook-connect/admin/templates/settings/comment.php:56
146
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
147
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
148
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
149
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
150
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:86
 
 
151
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
152
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
153
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
154
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
155
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
156
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
157
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
 
158
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
159
  msgid "Save Changes"
160
  msgstr "保存设置"
161
 
162
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
163
  #: nextend-facebook-connect/admin/templates/providers.php:64
 
164
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
165
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
 
166
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
 
167
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
168
  msgid "Getting Started"
169
  msgstr "从这里开始"
@@ -193,9 +341,22 @@ msgid "Fallback username prefix on register"
193
  msgstr "用户名前缀注册机制"
194
 
195
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
196
- msgid "Used when username is invalid"
 
 
197
  msgstr "当用户名无效时使用"
198
 
 
 
 
 
 
 
 
 
 
 
 
199
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
200
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
201
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:10
@@ -248,9 +409,9 @@ msgstr "注册后自动连接现有帐户"
248
 
249
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
250
  #: nextend-facebook-connect/admin/templates/providers.php:39
251
- #: nextend-facebook-connect/admin/templates/settings/general.php:55
252
- #: nextend-facebook-connect/admin/templates/settings/general.php:69
253
- #: nextend-facebook-connect/includes/provider-admin.php:207
254
  msgid "Disabled"
255
  msgstr "禁用"
256
 
@@ -268,19 +429,25 @@ msgstr "为使用此提供商的用户设置默认角色"
268
 
269
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
270
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
271
- #: nextend-facebook-connect/admin/templates/settings/comment.php:40
272
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
273
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
274
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
 
 
 
275
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
276
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
277
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
 
 
 
278
  #: nextend-facebook-connect/widget.php:40
279
  msgid "Default"
280
  msgstr "默认"
281
 
282
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
283
- #: nextend-social-login-pro/class-provider-extension.php:409
284
  msgid "Register"
285
  msgstr "注册"
286
 
@@ -296,11 +463,6 @@ msgstr ""
296
  msgid "Store in meta key"
297
  msgstr ""
298
 
299
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:80
300
- #, php-format
301
- msgid "Required scope: %1$s"
302
- msgstr ""
303
-
304
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
305
  msgid "Shortcode"
306
  msgstr "短码"
@@ -321,6 +483,84 @@ msgstr "图片按钮"
321
  msgid "Image url"
322
  msgstr "图片链接地址"
323
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
324
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
325
  msgid "Fix Oauth Redirect URIs"
326
  msgstr "修复 Oauth Redirect URIs"
@@ -333,22 +573,26 @@ msgstr "所有的Oauth Redirect URI 运作正常"
333
  msgid "Got it"
334
  msgstr "搞定"
335
 
336
- #: nextend-facebook-connect/admin/templates/global-settings.php:26
337
  #: nextend-facebook-connect/admin/templates/menu.php:8
338
  msgid "Global Settings"
339
  msgstr "全局设置"
340
 
341
- #: nextend-facebook-connect/admin/templates/global-settings.php:29
342
  msgid "General"
343
  msgstr "常规"
344
 
345
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
 
 
 
 
346
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
347
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
348
  msgid "Login Form"
349
  msgstr "登录界面"
350
 
351
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
352
  msgid "Comment"
353
  msgstr "评论"
354
 
@@ -360,7 +604,7 @@ msgstr "文档"
360
  msgid "Support"
361
  msgstr "支持"
362
 
363
- #: nextend-facebook-connect/admin/templates/header.php:20
364
  #: nextend-facebook-connect/admin/templates/menu.php:12
365
  msgid "Pro Addon"
366
  msgstr "专业版插件"
@@ -392,7 +636,7 @@ msgid ""
392
  msgstr "专业版插件已经安装但没有启用。要使用专业版本功能,你需要先启用它。"
393
 
394
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
395
- #: nextend-facebook-connect/admin/templates/pro-addon.php:215
396
  msgid "Deauthorize Pro Addon"
397
  msgstr "专业版未授权"
398
 
@@ -420,32 +664,11 @@ msgstr "安装专业的扩展"
420
  msgid "Activating..."
421
  msgstr "正在启用."
422
 
423
- #: nextend-facebook-connect/admin/templates/pro-addon.php:126
424
- msgid "Authorize your Pro Addon"
425
- msgstr "授权你的专业版插件"
426
-
427
- #: nextend-facebook-connect/admin/templates/pro-addon.php:127
428
- msgid ""
429
- "To be able to use the Pro features, you need to authorize Nextend Social "
430
- "Connect Pro Addon. You can do this by clicking on the Authorize button below "
431
- "then select the related purchase."
432
- msgstr ""
433
- "要想使用专业版本功能,你需要 Nextend Social Connect 专业版本的授权。你可以点"
434
- "击下面的授权按钮,然后选择购买。"
435
-
436
- #: nextend-facebook-connect/admin/templates/pro-addon.php:132
437
- msgid "Authorize"
438
- msgstr "授权"
439
-
440
- #: nextend-facebook-connect/admin/templates/pro-addon.php:189
441
- msgid "License key"
442
- msgstr "密匙"
443
-
444
- #: nextend-facebook-connect/admin/templates/pro-addon.php:206
445
  msgid "Pro Addon is installed and activated"
446
  msgstr "专业版本已经安装并启用了"
447
 
448
- #: nextend-facebook-connect/admin/templates/pro-addon.php:208
449
  msgid ""
450
  "You installed and activated the Pro Addon. If you don’t want to use it "
451
  "anymore, you can deauthorize using the button below."
@@ -503,9 +726,9 @@ msgid "Not Verified"
503
  msgstr "未验证"
504
 
505
  #: nextend-facebook-connect/admin/templates/providers.php:42
506
- #: nextend-facebook-connect/admin/templates/settings/general.php:58
507
- #: nextend-facebook-connect/admin/templates/settings/general.php:72
508
- #: nextend-facebook-connect/includes/provider-admin.php:210
509
  msgid "Enabled"
510
  msgstr "允许"
511
 
@@ -518,17 +741,17 @@ msgid "Upgrade Now"
518
  msgstr "现在更新"
519
 
520
  #: nextend-facebook-connect/admin/templates/providers.php:72
521
- #: nextend-facebook-connect/includes/provider-admin.php:194
522
  msgid "Verify Settings"
523
  msgstr "验证设置"
524
 
525
  #: nextend-facebook-connect/admin/templates/providers.php:80
526
- #: nextend-facebook-connect/includes/provider-admin.php:239
527
  msgid "Enable"
528
  msgstr "启用"
529
 
530
  #: nextend-facebook-connect/admin/templates/providers.php:92
531
- #: nextend-facebook-connect/includes/provider-admin.php:247
532
  msgid "Disable"
533
  msgstr "禁止"
534
 
@@ -536,18 +759,54 @@ msgstr "禁止"
536
  msgid "Import"
537
  msgstr "导入"
538
 
539
- #: nextend-facebook-connect/admin/templates/providers.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
540
  msgid "Saving..."
541
  msgstr "正在保存."
542
 
543
- #: nextend-facebook-connect/admin/templates/providers.php:123
544
  msgid "Saving failed"
545
  msgstr "保存失败"
546
 
547
- #: nextend-facebook-connect/admin/templates/providers.php:124
548
  msgid "Order Saved"
549
  msgstr "订单已保存"
550
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
551
  #: nextend-facebook-connect/admin/templates/review.php:14
552
  msgid "Rate your experience!"
553
  msgstr "留一个评论!"
@@ -589,8 +848,12 @@ msgid "Ok, you deserve it"
589
  msgstr "好吧,你应得的"
590
 
591
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
592
- msgid "BuddyPress register form"
593
- msgstr "BuddyPress 注册表"
 
 
 
 
594
 
595
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
596
  msgid "No Connect button"
@@ -603,15 +866,19 @@ msgstr "连接按钮在注册之前"
603
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
604
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
605
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
606
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
607
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
608
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
609
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
610
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
611
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
612
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
613
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
614
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
 
 
 
 
615
  msgid "Action:"
616
  msgstr "动作:"
617
 
@@ -624,50 +891,60 @@ msgid "Connect button after register"
624
  msgstr "登录按钮在注册之后"
625
 
626
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
627
- msgid "BuddyPress register button style"
628
- msgstr "BuddyPress 注册按钮样式"
 
 
629
 
630
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
631
- #: nextend-facebook-connect/admin/templates/settings/comment.php:46
632
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
633
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
634
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
 
 
 
635
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
636
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
637
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
638
  #: nextend-facebook-connect/widget.php:45
639
  msgid "Icon"
640
  msgstr "图标"
641
 
642
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
643
- #: nextend-facebook-connect/admin/templates/settings/comment.php:22
644
- msgid "Comment login button"
645
- msgstr "评论登录按钮"
 
646
 
647
- #: nextend-facebook-connect/admin/templates/settings/comment.php:25
 
648
  msgid "Show"
649
  msgstr "显示"
650
 
651
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
652
  msgid "Hide"
653
  msgstr "隐藏"
654
 
655
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
656
  #, php-format
657
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
658
  msgstr "你需要打开 ' %1$s > %2$s > %3$s ' 这个功能"
659
 
660
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
661
  msgid "Discussion"
662
  msgstr "讨论"
663
 
664
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
665
  msgid "Users must be registered and logged in to comment"
666
  msgstr "必须是登录用户才能评论"
667
 
668
- #: nextend-facebook-connect/admin/templates/settings/comment.php:34
669
- msgid "Comment button style"
670
- msgstr "评论按钮样式"
 
 
 
671
 
672
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
673
  msgid "Target window"
@@ -694,90 +971,152 @@ msgid "Allow registration with Social login"
694
  msgstr "允许通过社交登录注册"
695
 
696
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
697
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
698
  msgid "Registration notification sent to"
699
  msgstr "注册通知发送到"
700
 
701
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
702
  msgid "WordPress default"
703
  msgstr "WordPress 默认"
704
 
705
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
706
  msgid "Nobody"
707
  msgstr "没人"
708
 
709
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
710
- msgid "User"
711
- msgstr "用户"
712
-
713
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
714
  msgid "Admin"
715
  msgstr "管理员"
716
 
717
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
718
  msgid "User and Admin"
719
  msgstr "用户和管理员"
720
 
721
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
722
- #: nextend-facebook-connect/admin/templates/settings/general.php:52
723
  msgid "Debug mode"
724
  msgstr "调试模式"
725
 
726
- #: nextend-facebook-connect/admin/templates/settings/general.php:64
727
- msgid "Store Avatar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
728
  msgstr ""
729
 
730
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
731
  #, fuzzy
732
  #| msgid "Oauth Redirect URI"
733
  msgid "Default redirect url"
734
  msgstr "Oauth Redirect URI"
735
 
736
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
737
- #: nextend-facebook-connect/admin/templates/settings/general.php:130
738
  #, fuzzy
739
  #| msgid "Social Login"
740
  msgid "for Login"
741
  msgstr "社交登录"
742
 
743
- #: nextend-facebook-connect/admin/templates/settings/general.php:107
744
- #: nextend-facebook-connect/admin/templates/settings/general.php:145
745
  #, fuzzy
746
  #| msgid "Register"
747
  msgid "for Register"
748
  msgstr "注册"
749
 
750
- #: nextend-facebook-connect/admin/templates/settings/general.php:117
751
  #, fuzzy
752
  #| msgid "Fixed redirect url for login"
753
  msgid "Fixed redirect url"
754
  msgstr "修改登录后重定向URL"
755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
756
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
757
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
 
758
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
759
  msgid "Login form button style"
760
  msgstr "登录界面按钮样式"
761
 
762
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
763
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
 
764
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
 
765
  msgid "Login layout"
766
  msgstr "登录界面布局"
767
 
768
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
769
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
770
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
 
 
 
771
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
772
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
 
 
 
773
  msgid "Below"
774
  msgstr "下面"
775
 
776
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
777
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
778
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
 
 
 
779
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
780
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
 
 
 
781
  msgid "Below with separator"
782
  msgstr "下面并分割"
783
 
@@ -788,16 +1127,28 @@ msgstr "下面并浮动"
788
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
789
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
790
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
 
 
 
791
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
792
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
 
 
 
793
  msgid "Above"
794
  msgstr "上面"
795
 
796
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
797
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
798
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
 
 
 
799
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
800
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
 
 
 
801
  msgid "Above with separator"
802
  msgstr "在上面并分割"
803
 
@@ -827,7 +1178,7 @@ msgid "Hide login buttons"
827
  msgstr "隐藏登录按钮"
828
 
829
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
830
- #: nextend-social-login-pro/class-provider-extension.php:328
831
  msgid "Registration Form"
832
  msgstr "注册信息表"
833
 
@@ -835,119 +1186,222 @@ msgstr "注册信息表"
835
  msgid "Embedded login form"
836
  msgstr "嵌入登录表单"
837
 
838
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:68
839
- msgid "MemberPress account details"
840
- msgstr ""
 
 
 
 
 
 
 
 
841
 
842
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
843
  msgid "No link buttons"
844
  msgstr ""
845
 
846
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
847
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
848
  msgid "Link buttons after account details"
849
  msgstr "链接按钮在账户详情后面"
850
 
851
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
852
  #, fuzzy
853
- #| msgid "Registration Form"
854
- msgid "Register Form"
855
- msgstr "注册信息表"
856
 
 
 
 
 
 
 
 
857
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
858
  #, fuzzy
859
  #| msgid "Login form button style"
860
  msgid "Register form button style"
861
  msgstr "登录界面按钮样式"
862
 
 
863
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
 
864
  #, fuzzy
865
  #| msgid "Register"
866
  msgid "Register layout"
867
  msgstr "注册"
868
 
869
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
870
- msgid "WooCommerce login form"
871
- msgstr "WooCommerce 登录表单"
 
 
872
 
873
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
874
  msgid "No Connect button in login form"
875
  msgstr "在登录表单里不要登录按钮"
876
 
877
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
878
- msgid "Connect button before login form"
879
- msgstr "登录按钮在登录表单上面"
880
-
881
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
882
- msgid "Connect button after login form"
883
- msgstr "登录按钮在登录表单后"
884
-
885
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
886
- msgid "WooCommerce register form"
887
- msgstr "WooCommerce 注册表单"
888
-
889
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
890
  msgid "No Connect button in register form"
891
  msgstr "不要登录按钮在注册表上"
892
 
893
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
894
- msgid "Connect button before register form"
895
- msgstr "登录按钮在注册表单前"
896
-
897
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
898
- msgid "Connect button after register form"
899
- msgstr "登录按钮在注册表单后"
900
-
901
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
902
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
903
- msgid "WooCommerce billing form"
904
- msgstr "WooCommerce 结算表单"
905
 
906
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
907
  msgid "No Connect button in billing form"
908
  msgstr "不要链接按钮在结算表单"
909
 
910
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
911
- msgid "Connect button before billing form"
912
- msgstr "登录按钮在结算表单前"
913
-
914
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
915
- msgid "Connect button after billing form"
916
- msgstr "登录按钮在结算表单后"
917
 
918
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
919
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
920
- msgid "WooCommerce account details"
921
- msgstr "WooCommerce 账户详情"
 
 
922
 
923
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
924
- msgid "Link buttons before account details"
925
- msgstr "链接按钮在账户详情前面"
 
 
926
 
927
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
928
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
929
- msgid "WooCommerce button style"
930
- msgstr "WooCommerce 按钮样式"
931
 
932
- #: nextend-facebook-connect/includes/avatar.php:45
933
- msgid "Avatar"
 
 
934
  msgstr ""
935
 
936
- #: nextend-facebook-connect/includes/avatar.php:46
937
  msgid "Manage Avatar"
938
  msgstr ""
939
 
940
- #: nextend-facebook-connect/includes/avatar.php:47
941
  #, php-format
942
  msgid "Avatar <span class=\"count\">(%s)</span>"
943
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
944
  msgstr[0] ""
945
 
946
- #: nextend-facebook-connect/includes/provider-admin.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
947
  msgid "Your configuration needs to be verified"
948
  msgstr "您的配置需要验证"
949
 
950
- #: nextend-facebook-connect/includes/provider-admin.php:189
951
  msgid ""
952
  "Before you can start letting your users register with your app it needs to "
953
  "be tested. This test makes sure that no users will have troubles with the "
@@ -959,22 +1413,22 @@ msgstr ""
959
  "册过程中不会遇到麻烦。 <br>如果您在弹出窗口中看到错误消息,请检查复制的ID和密"
960
  "码。如果没有错误信息,说明你的程序运行正常。"
961
 
962
- #: nextend-facebook-connect/includes/provider-admin.php:195
963
  msgid "Please save your changes to verify settings."
964
  msgstr "请保存您的更改以验证。"
965
 
966
- #: nextend-facebook-connect/includes/provider-admin.php:203
967
  msgid "Works Fine"
968
  msgstr "运行正常"
969
 
970
- #: nextend-facebook-connect/includes/provider-admin.php:217
971
  #, php-format
972
  msgid ""
973
  "This provider is currently disabled, which means that users can’t register "
974
  "or login via their %s account."
975
  msgstr "该通道目前已被禁用,用户无法通过其 %s 帐户注册或登录。"
976
 
977
- #: nextend-facebook-connect/includes/provider-admin.php:220
978
  #, php-format
979
  msgid ""
980
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -983,53 +1437,61 @@ msgstr ""
983
  "该通道工作正常,但可以再次进行测试。 如果您不想让用户通过 %s 注册或登录,可以"
984
  "禁用它。"
985
 
986
- #: nextend-facebook-connect/includes/provider-admin.php:223
987
  #, php-format
988
  msgid ""
989
  "This provider is currently enabled, which means that users can register or "
990
  "login via their %s account."
991
  msgstr "该通道目前已启用,这意味着用户可以通过 %s 账户进行注册或登录。"
992
 
993
- #: nextend-facebook-connect/includes/provider-admin.php:231
994
  msgid "Verify Settings Again"
995
  msgstr "再次验证设置"
996
 
997
- #: nextend-facebook-connect/includes/provider-admin.php:232
998
  msgid "Please save your changes before verifying settings."
999
  msgstr ""
1000
 
1001
- #: nextend-facebook-connect/includes/provider.php:320
1002
- #: nextend-facebook-connect/includes/provider.php:618
1003
- #: nextend-facebook-connect/includes/provider.php:629
1004
  msgid "Authentication successful"
1005
  msgstr "授权成功"
1006
 
1007
- #: nextend-facebook-connect/includes/provider.php:558
1008
- #: nextend-facebook-connect/includes/user.php:102
1009
  msgid "Authentication error"
1010
  msgstr "授权认证出错"
1011
 
1012
- #: nextend-facebook-connect/includes/provider.php:573
1013
  msgid "Unlink successful."
1014
  msgstr "解除链接成功."
1015
 
1016
- #: nextend-facebook-connect/includes/provider.php:758
1017
- #: nextend-facebook-connect/includes/provider.php:765
1018
  msgid "The test was successful"
1019
  msgstr "测试成功"
1020
 
1021
- #: nextend-facebook-connect/includes/provider.php:811
1022
  msgid "Authentication failed"
1023
  msgstr "授权认证失败"
1024
 
1025
- #: nextend-facebook-connect/includes/user.php:66
 
 
 
 
 
 
 
 
1026
  #, php-format
1027
  msgid ""
1028
  "Your %1$s account is successfully linked with your account. Now you can sign "
1029
  "in with %2$s easily."
1030
  msgstr "你的 %1$s 账号已经成功链接到你的网站帐号. 你可以快速登录 %2$s ."
1031
 
1032
- #: nextend-facebook-connect/includes/user.php:69
1033
  #, php-format
1034
  msgid ""
1035
  "You have already linked a(n) %s account. Please unlink the current and then "
@@ -1037,11 +1499,15 @@ msgid ""
1037
  msgstr ""
1038
  "你已经链接了 a(n) %s 账号. 请解除现有的链接账号,你才可以重新链接 %s 账号。"
1039
 
1040
- #: nextend-facebook-connect/includes/user.php:74
1041
  #, php-format
1042
  msgid "This %s account is already linked to other user."
1043
  msgstr "这个 %s 账号已经链接到了其他用户。"
1044
 
 
 
 
 
1045
  #. translators: %2$s: PHP version
1046
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1047
  #, php-format
@@ -1056,66 +1522,50 @@ msgid ""
1056
  "version, the plugin is currently NOT ACTIVE."
1057
  msgstr ""
1058
 
1059
- #: nextend-facebook-connect/nextend-social-login.php:25
1060
- #: nextend-facebook-connect/nextend-social-login.php:33
1061
  #, php-format
1062
  msgid "Please update %1$s to version %2$s or newer."
1063
  msgstr "请更新 %1$s 到 %2$s 版本."
1064
 
1065
- #: nextend-facebook-connect/nextend-social-login.php:25
1066
- #: nextend-facebook-connect/nextend-social-login.php:33
1067
  msgid "Update now!"
1068
  msgstr "现在更新!"
1069
 
1070
- #: nextend-facebook-connect/nextend-social-login.php:379
 
 
 
 
 
1071
  #, php-format
1072
  msgid ""
1073
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1074
  "Connect as it is not needed anymore."
1075
  msgstr "%s 取代了Nextend Google Connect。 您可以删除Nextend Google Connect。"
1076
 
1077
- #: nextend-facebook-connect/nextend-social-login.php:390
1078
  #, php-format
1079
  msgid ""
1080
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1081
  "Connect as it is not needed anymore."
1082
  msgstr "%s取代了Nextend Twitter Connect.你可以删除 Nextend Twitter Connect 。"
1083
 
1084
- #: nextend-facebook-connect/nextend-social-login.php:507
1085
- msgid "You have logged in successfully."
1086
- msgstr "你已经成功登录。"
1087
-
1088
- #: nextend-facebook-connect/nextend-social-login.php:631
1089
- #: nextend-facebook-connect/nextend-social-login.php:919
1090
  msgid "Social Login"
1091
  msgstr "社交登录"
1092
 
1093
- #: nextend-facebook-connect/nextend-social-login.php:903
1094
  msgid "Social Accounts"
1095
  msgstr "社交账号"
1096
 
1097
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1098
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1099
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1100
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1101
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1102
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1103
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1104
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21
1105
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1106
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1107
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1108
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
1109
- #, php-format
1110
- msgid "Navigate to %s"
1111
- msgstr "导航 %s"
1112
-
1113
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1114
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
1115
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1116
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1117
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1118
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1119
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1120
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1121
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
@@ -1134,14 +1584,14 @@ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1134
  msgstr "在左侧,点击\"Facebook 登录/设置\""
1135
 
1136
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1137
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1138
  #, php-format
1139
  msgid ""
1140
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1141
  msgstr "请将下面的URL填入\"Valid OAuth redirect URIs\" : <b>%s</b>"
1142
 
1143
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1144
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1145
  msgid "Click on \"Save Changes\""
1146
  msgstr "点击\"保存设置\""
1147
 
@@ -1160,7 +1610,7 @@ msgstr ""
1160
  msgid "How to get SSL for my WordPress site?"
1161
  msgstr ""
1162
 
1163
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:16
1164
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1165
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1166
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
@@ -1177,59 +1627,62 @@ msgstr ""
1177
  "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到"
1178
  "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。"
1179
 
1180
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:18
1181
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1182
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1183
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:18
1184
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
 
1185
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1186
  #, php-format
1187
  msgctxt "App creation"
1188
  msgid "Create %s"
1189
  msgstr "建立 %s"
1190
 
1191
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1192
  msgid "Click on the \"Add a New App\" button"
1193
  msgstr "点击\"添加新的应用\"按钮"
1194
 
1195
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1196
  msgid "Fill \"Display Name\" and \"Contact Email\""
1197
  msgstr "填写\"显示名称\" 和 \"联系邮箱\""
1198
 
1199
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1200
  msgid "Click on blue \"Create App ID\" button"
1201
  msgstr "点击蓝色的\"创建应用\"按钮"
1202
 
1203
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1204
  msgid ""
1205
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1206
  "button"
1207
  msgstr "移动你的鼠标到 Facebook 登录 然后点击出现的\"设置\"按钮"
1208
 
1209
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1210
  msgid "Choose Web"
1211
  msgstr "选择网站"
1212
 
1213
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1214
  #, php-format
1215
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1216
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
1217
 
1218
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1219
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
 
1220
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
 
1221
  msgid "Click on \"Save\""
1222
  msgstr "点击\"保存“"
1223
 
1224
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1225
  msgid "In the left sidebar, click on \"Facebook Login\""
1226
  msgstr "点击左边的\"Facebook 登录\""
1227
 
1228
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1229
  msgid "In the top of the left sidebar, click on \"Settings\""
1230
  msgstr "顶部左侧,点击\"设置”"
1231
 
1232
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1233
  msgid ""
1234
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1235
  "click on the \"Show\" button. These will be needed in plugin's settings."
@@ -1237,11 +1690,11 @@ msgstr ""
1237
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
1238
  "钮,这些都需要填写到插件的设置里。"
1239
 
1240
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1241
  msgid "Enter your domain name to the App Domains"
1242
  msgstr "填写你的域名到 应用域名"
1243
 
1244
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1245
  msgid ""
1246
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1247
  "accessible privacy policy that explains what data you are collecting and how "
@@ -1250,14 +1703,14 @@ msgstr ""
1250
  "填写“隐私政策URL”。 提供公开可用且易于访问的隐私政策页面,解释您收集的数据以"
1251
  "及您将如何使用该数据。"
1252
 
1253
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1254
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1255
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1256
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1257
  msgid "Save your changes."
1258
  msgstr "保存你的更改."
1259
 
1260
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1261
  msgid ""
1262
  "Your application is currently private, which means that only you can log in "
1263
  "with it. In the left sidebar choose \"App Review\" and make your App public"
@@ -1265,11 +1718,12 @@ msgstr ""
1265
  "您的应用程序目前是私人的,这意味着只有您可以使用它登录。 在左侧栏中选择“应用"
1266
  "程序审查”,并发布您的应用程序"
1267
 
1268
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1269
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
1270
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
1271
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
1272
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
 
1273
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1274
  #, php-format
1275
  msgid "I am done setting up my %s"
@@ -1413,6 +1867,8 @@ msgstr "应用程序 ID"
1413
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1414
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1415
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
 
 
1416
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1417
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1418
  msgid "Required"
@@ -1423,6 +1879,7 @@ msgstr "请求"
1423
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1424
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1425
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
 
1426
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1427
  #, php-format
1428
  msgid ""
@@ -1446,17 +1903,42 @@ msgstr "关联 <b>Facebook</b> 账号"
1446
  msgid "Unlink account from <b>Facebook</b>"
1447
  msgstr "解除关联 <b>Facebook</b> 账号"
1448
 
1449
- #: nextend-facebook-connect/providers/facebook/facebook.php:151
1450
- #: nextend-facebook-connect/providers/google/google.php:71
1451
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
1452
- #: nextend-social-login-pro/providers/amazon/amazon.php:71
1453
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1454
- #: nextend-social-login-pro/providers/vk/vk.php:68
 
1455
  #, php-format
1456
  msgid ""
1457
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1458
  msgstr "输入的 %1$s 似乎不是有效的。 请输入有效的 %2$s."
1459
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1460
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1461
  msgid "Click on the \"Credentials\" in the left hand menu"
1462
  msgstr "点击左侧菜单的\"凭据\""
@@ -1467,62 +1949,76 @@ msgid "Click on OAuth 2.0 client ID: %s"
1467
  msgstr "点击 OAuth 2.0 client ID: %s"
1468
 
1469
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1470
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1471
  #, php-format
1472
  msgid ""
1473
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1474
  msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 <b>%s</b>"
1475
 
1476
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
 
 
 
 
1477
  msgid ""
1478
  "If you don't have a project yet, you'll need to create one. You can do this "
1479
- "by clicking on the blue \"Create project\" button on the right side"
 
 
1480
  msgstr ""
1481
  "如果你还没有项目,你需要创建一个。 您可以点击右侧蓝色的“创建项目”按钮来完成此"
1482
  "操作"
1483
 
1484
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1485
- msgid "Name your project and then click on the Create button"
1486
- msgstr "命名您的项目,然后点击创建按钮"
 
 
 
1487
 
1488
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
 
 
 
 
 
 
1489
  msgid "Once you have a project, you'll end up in the dashboard."
1490
  msgstr "一旦你有一个项目,你会在仪表盘发现它。"
1491
 
1492
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1493
  msgid ""
1494
  "Click on the \"Credentials\" in the left hand menu to create new API "
1495
  "credentials"
1496
  msgstr "点击左侧菜单中的“凭据”以创建新的API凭证"
1497
 
1498
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1499
- msgid ""
1500
- "Go to the OAuth consent screen tab and enter a product name and provide the "
1501
- "Privacy Policy URL, then click on the save button."
1502
- msgstr "转到OAuth 选项卡输入产品名称并提供隐私策略URL,然后单击保存按钮。"
1503
-
1504
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1505
- msgid ""
1506
- "Go back to the Credentials tab and locate the small box at the middle. Click "
1507
- "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
1508
- "from the dropdown list."
1509
  msgstr ""
1510
- "回到凭据选项卡,找到中间的小方块。 点击蓝色的“创建凭证”按钮。 从下拉列表中选"
1511
- "择“OAuth客户端ID”。"
1512
 
1513
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
 
 
 
 
 
 
 
 
 
 
1514
  msgid "Your application type should be \"Web application\""
1515
  msgstr "您的应用程序类型应该是“网页应用程序”"
1516
 
1517
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1518
  msgid "Name your application"
1519
  msgstr "命名你的应用程序"
1520
 
1521
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1522
  msgid "Click on the Create button"
1523
  msgstr "点击创建按钮"
1524
 
1525
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1526
  msgid ""
1527
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1528
  "the Credentials in the left hand menu and select your app by clicking on its "
@@ -1548,6 +2044,7 @@ msgstr "在左侧菜单中点击凭据,然后选择您的应用程序。"
1548
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
1549
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1550
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
 
1551
  msgid "Client ID"
1552
  msgstr "客户端ID"
1553
 
@@ -1557,61 +2054,103 @@ msgstr "客户端ID"
1557
  msgid "Client Secret"
1558
  msgstr "客户端密码"
1559
 
1560
- #: nextend-facebook-connect/providers/google/google.php:38
1561
  msgid "Continue with <b>Google</b>"
1562
  msgstr "通过 <b>Google</b>"
1563
 
1564
- #: nextend-facebook-connect/providers/google/google.php:39
1565
  msgid "Link account with <b>Google</b>"
1566
  msgstr "关联 <b>Google</b>"
1567
 
1568
- #: nextend-facebook-connect/providers/google/google.php:40
1569
  msgid "Unlink account from <b>Google</b>"
1570
  msgstr "取消关联 <b>Google</b>"
1571
 
 
 
 
 
 
 
1572
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1573
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1574
- msgid "Click on the App"
1575
- msgstr "点击应用"
 
1576
 
1577
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1578
- msgid "Click on the \"Settings\" tab"
1579
- msgstr "点击\"设置\"选项"
 
 
1580
 
1581
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
1582
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1583
- #, php-format
1584
- msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
 
1585
  msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
1586
 
1587
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1588
- msgid "Click on \"Update Settings\""
1589
- msgstr "点击\"更新设置\""
 
 
1590
 
1591
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1592
- msgid "Click on the \"Create New App\" button"
1593
- msgstr "点击\"创建新应用\"按钮"
 
 
1594
 
1595
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1596
  #, php-format
1597
  msgid ""
1598
- "Fill the name and description fields. Then enter your site's URL to the "
1599
- "Website field: <b>%s</b>"
 
 
 
 
 
 
 
 
 
 
1600
  msgstr "填写名称和说明。 然后在网址字段输入您网站的:<b>%s</b>"
1601
 
1602
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1603
- msgid "Accept the Twitter Developer Agreement"
1604
- msgstr "接受Twitter开发者协议"
1605
 
1606
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
1607
  msgid ""
1608
- "Create your application by clicking on the Create your Twitter application "
1609
- "button"
1610
- msgstr "点击创建Twitter应用程序按钮来创建你的应用程序"
1611
 
1612
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
 
 
 
 
 
 
 
 
 
1613
  msgid ""
1614
- "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
 
 
 
 
 
 
 
 
1615
  msgstr "转到密钥和访问密令选项卡,找到使用者密匙和密码"
1616
 
1617
  #: nextend-facebook-connect/providers/twitter/admin/import.php:9
@@ -1623,22 +2162,30 @@ msgid "Go to the Settings tab."
1623
  msgstr "去设置页."
1624
 
1625
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
1626
- msgid "Consumer Key"
1627
- msgstr "用户密匙"
1628
 
1629
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
1630
- msgid "Consumer Secret"
1631
- msgstr "用户密码"
 
 
 
 
1632
 
1633
- #: nextend-facebook-connect/providers/twitter/twitter.php:38
 
 
 
 
1634
  msgid "Continue with <b>Twitter</b>"
1635
  msgstr "保持 <b>Twitter</b>"
1636
 
1637
- #: nextend-facebook-connect/providers/twitter/twitter.php:39
1638
  msgid "Link account with <b>Twitter</b>"
1639
  msgstr "关联 <b>Twitter</b> 账号"
1640
 
1641
- #: nextend-facebook-connect/providers/twitter/twitter.php:40
1642
  msgid "Unlink account from <b>Twitter</b>"
1643
  msgstr "从 <b>Twitter</b> 取消关联帐户"
1644
 
@@ -1663,97 +2210,89 @@ msgstr ""
1663
  msgid "Show unlink buttons"
1664
  msgstr ""
1665
 
1666
- #: nextend-social-login-pro/class-provider-extension.php:114
1667
  msgid "Social login is not allowed with this role!"
1668
  msgstr "此用户组不允许社交登录!"
1669
 
1670
- #: nextend-social-login-pro/class-provider-extension.php:209
1671
  #: nextend-social-login-pro/class-provider-extension.php:211
1672
- #: nextend-social-login-pro/class-provider-extension.php:216
1673
- #: nextend-social-login-pro/class-provider-extension.php:222
1674
- #: nextend-social-login-pro/class-provider-extension.php:235
1675
- #: nextend-social-login-pro/class-provider-extension.php:237
1676
- #: nextend-social-login-pro/class-provider-extension.php:240
 
1677
  msgid "ERROR"
1678
  msgstr "错误"
1679
 
1680
- #: nextend-social-login-pro/class-provider-extension.php:209
1681
  msgid "Please enter a username."
1682
  msgstr "请输入用户名."
1683
 
1684
- #: nextend-social-login-pro/class-provider-extension.php:211
1685
  msgid ""
1686
  "This username is invalid because it uses illegal characters. Please enter a "
1687
  "valid username."
1688
  msgstr "此用户名无效,因为它使用了非法字符。 请输入有效的用户名。"
1689
 
1690
- #: nextend-social-login-pro/class-provider-extension.php:216
1691
  msgid "This username is already registered. Please choose another one."
1692
  msgstr "这个用户名已经有人注册,请选择其他的。"
1693
 
1694
- #: nextend-social-login-pro/class-provider-extension.php:222
1695
  msgid "Sorry, that username is not allowed."
1696
  msgstr "对不起,这个用户名不允许使用。"
1697
 
1698
- #: nextend-social-login-pro/class-provider-extension.php:235
 
 
 
 
1699
  msgid "Please enter an email address."
1700
  msgstr "请输入电子邮箱."
1701
 
1702
- #: nextend-social-login-pro/class-provider-extension.php:237
1703
  msgid "The email address isn&#8217;t correct."
1704
  msgstr "邮箱地址是n&#8217;t 正确."
1705
 
1706
- #: nextend-social-login-pro/class-provider-extension.php:240
1707
  msgid "This email is already registered, please choose another one."
1708
  msgstr "这个邮箱已经注册使用过,请选择其他的。"
1709
 
1710
- #: nextend-social-login-pro/class-provider-extension.php:255
 
 
 
 
1711
  msgid "<strong>ERROR</strong>: Please enter a password."
1712
  msgstr ""
1713
 
1714
- #: nextend-social-login-pro/class-provider-extension.php:260
1715
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1716
  msgstr ""
1717
 
1718
- #: nextend-social-login-pro/class-provider-extension.php:265
1719
  msgid ""
1720
  "<strong>ERROR</strong>: Please enter the same password in both password "
1721
  "fields."
1722
  msgstr ""
1723
 
1724
- #: nextend-social-login-pro/class-provider-extension.php:328
1725
- msgid "Register For This Site!"
1726
- msgstr "注册此网站!"
1727
-
1728
- #: nextend-social-login-pro/class-provider-extension.php:355
1729
- msgid "Username"
1730
- msgstr "用户名"
1731
-
1732
- #: nextend-social-login-pro/class-provider-extension.php:362
1733
- msgid "Email"
1734
- msgstr "Email"
1735
-
1736
- #: nextend-social-login-pro/class-provider-extension.php:367
1737
- msgid "Registration confirmation will be emailed to you."
1738
- msgstr "注册确认将通过电子邮件发送给您。"
1739
-
1740
- #: nextend-social-login-pro/class-provider-extension.php:375
1741
  msgid "Password"
1742
  msgstr ""
1743
 
1744
- #: nextend-social-login-pro/class-provider-extension.php:385
1745
  msgid "Strength indicator"
1746
  msgstr ""
1747
 
1748
- #: nextend-social-login-pro/class-provider-extension.php:390
1749
  msgid "Confirm use of weak password"
1750
  msgstr ""
1751
 
1752
- #: nextend-social-login-pro/class-provider-extension.php:396
1753
  msgid "Confirm password"
1754
  msgstr ""
1755
 
1756
- #: nextend-social-login-pro/class-provider-extension.php:506
1757
  #, fuzzy, php-format
1758
  #| msgid ""
1759
  #| "This email is already registered, please login in to your account to link "
@@ -1781,26 +2320,26 @@ msgid "Install now!"
1781
  msgstr ""
1782
 
1783
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
1784
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1785
  #, fuzzy, php-format
1786
  #| msgid "Visit %s."
1787
  msgid "Visit %s"
1788
  msgstr "访问 %s."
1789
 
1790
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
1791
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
1792
  msgid ""
1793
  "On the right side, under \"Manage\", hover over the gear icon and select "
1794
  "\"Web Settings\" option."
1795
  msgstr ""
1796
 
1797
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
1798
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
1799
  msgid "Click \"Edit\"."
1800
  msgstr ""
1801
 
1802
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
1803
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
1804
  #, fuzzy, php-format
1805
  #| msgid ""
1806
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -1808,7 +2347,8 @@ msgstr ""
1808
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1809
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
1810
 
1811
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:16
 
1812
  #, fuzzy, php-format
1813
  #| msgid ""
1814
  #| "To allow your visitors to log in with their %1$s account, first you must "
@@ -1827,14 +2367,16 @@ msgstr ""
1827
  "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到"
1828
  "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。"
1829
 
1830
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
 
 
1831
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
1832
  #, fuzzy, php-format
1833
  #| msgid "Log in with your %s credentials if you are not logged in"
1834
  msgid "Log in with your %s credentials if you are not logged in."
1835
  msgstr "如果您未登录,请使用您的 %s 凭据登录"
1836
 
1837
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
1838
  #, fuzzy
1839
  #| msgid ""
1840
  #| "If you don't have a project yet, you'll need to create one. You can do "
@@ -1847,54 +2389,53 @@ msgstr ""
1847
  "如果你还没有项目,你需要创建一个。 您可以点击右侧蓝色的“创建项目”按钮来完成此"
1848
  "操作"
1849
 
1850
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
1851
  msgid ""
1852
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
1853
  "\"Consent Privacy Notice URL\"."
1854
  msgstr ""
1855
 
1856
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1857
  msgid "Once you filled all the required fields, click \"Save\"."
1858
  msgstr ""
1859
 
1860
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
1861
  #, fuzzy, php-format
1862
  #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1863
  msgid ""
1864
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
1865
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
1866
 
1867
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
 
1868
  msgid "When all fields are filled, click \"Save\"."
1869
  msgstr ""
1870
 
1871
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
1872
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
1873
  msgstr ""
1874
 
1875
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
1876
  msgid ""
1877
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
1878
  "page."
1879
  msgstr ""
1880
 
1881
  #: nextend-social-login-pro/providers/amazon/amazon.php:37
1882
- #, fuzzy
1883
- #| msgid "Continue with <b>Facebook</b>"
1884
  msgid "Continue with <b>Amazon</b>"
1885
- msgstr "通过 <b>Facebook</b>"
1886
 
1887
  #: nextend-social-login-pro/providers/amazon/amazon.php:38
1888
- #, fuzzy
1889
- #| msgid "Link account with <b>Facebook</b>"
1890
  msgid "Link account with <b>Amazon</b>"
1891
- msgstr "关联 <b>Facebook</b> 账号"
1892
 
1893
  #: nextend-social-login-pro/providers/amazon/amazon.php:39
1894
- #, fuzzy
1895
- #| msgid "Unlink account from <b>Facebook</b>"
1896
  msgid "Unlink account from <b>Amazon</b>"
1897
- msgstr "解除关联 <b>Facebook</b> 账号"
 
 
 
 
1898
 
1899
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
1900
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
@@ -1936,18 +2477,107 @@ msgid ""
1936
  "Application Permissions"
1937
  msgstr "您可能想要在默认应用程序权限下启用 \"r_emailaddress\""
1938
 
1939
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
1940
  msgid "Continue with <b>LinkedIn</b>"
1941
  msgstr "通过 <b>LinkedIn</b>"
1942
 
1943
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
1944
  msgid "Link account with <b>LinkedIn</b>"
1945
  msgstr "关联 <b>LinkedIn</b> 账号"
1946
 
1947
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
1948
  msgid "Unlink account from <b>LinkedIn</b>"
1949
  msgstr "从<b> LinkedIn </ b>取消关联帐户"
1950
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1951
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
1952
  #, fuzzy
1953
  #| msgid "Click on the Create button"
@@ -2040,51 +2670,171 @@ msgid "Secure key"
2040
  msgstr ""
2041
 
2042
  #: nextend-social-login-pro/providers/vk/vk.php:34
2043
- #, fuzzy
2044
- #| msgid "Continue with <b>Google</b>"
2045
  msgid "Continue with <b>VK</b>"
2046
- msgstr "通过 <b>Google</b>"
2047
 
2048
  #: nextend-social-login-pro/providers/vk/vk.php:35
2049
- #, fuzzy
2050
- #| msgid "Link account with <b>Google</b>"
2051
  msgid "Link account with <b>VK</b>"
2052
- msgstr "关联 <b>Google</b>"
2053
 
2054
  #: nextend-social-login-pro/providers/vk/vk.php:36
2055
- #, fuzzy
2056
- #| msgid "Unlink account from <b>Google</b>"
2057
  msgid "Unlink account from <b>VK</b>"
2058
- msgstr "取消关联 <b>Google</b>"
2059
-
2060
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:8
2061
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:8
2062
- #: nextend-social-login-pro/template-parts/login/above-separator.php:10
2063
- #: nextend-social-login-pro/template-parts/login/below-separator.php:14
2064
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:8
2065
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:8
2066
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:8
2067
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:8
2068
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:8
2069
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:8
 
 
 
 
 
 
 
 
 
 
 
 
2070
  msgid "OR"
2071
  msgstr "或"
2072
 
2073
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
 
2074
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2075
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2076
  msgid "Social accounts"
2077
  msgstr "社交账号"
2078
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2079
  #~ msgid "Use custom"
2080
  #~ msgstr "使用自定义"
2081
 
2082
  #~ msgid "Fixed redirect url for register"
2083
  #~ msgstr "修改注册后重定向URL"
2084
 
2085
- #~ msgid "Login form"
2086
- #~ msgstr "登录表单"
2087
-
2088
  #~ msgid "Registration form"
2089
  #~ msgstr "注册表单"
2090
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2018-09-04 15:28+0200\n"
5
+ "PO-Revision-Date: 2018-09-04 15:28+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_CN\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.1.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=1; plural=0;\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
+ #: nextend-facebook-connect/NSL/GDPR.php:32
30
+ msgid "What personal data we collect and why we collect it"
31
+ msgstr ""
32
+
33
+ #: nextend-facebook-connect/NSL/GDPR.php:33
34
+ #, php-format
35
+ msgid ""
36
+ "%1$s collects data when a visitor register, login or link the account with "
37
+ "with any of the enabled social provider. It collects the following data: "
38
+ "email address, name, social provider identifier and access token. Also it "
39
+ "can collect profile picture and more fields with the Pro Addon's sync data "
40
+ "feature."
41
+ msgstr ""
42
+
43
+ #: nextend-facebook-connect/NSL/GDPR.php:35
44
+ msgid "Who we share your data with"
45
+ msgstr ""
46
+
47
+ #: nextend-facebook-connect/NSL/GDPR.php:36
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
+
55
+ #: nextend-facebook-connect/NSL/GDPR.php:38
56
+ msgid "Does the plugin share personal data with third parties"
57
+ msgstr ""
58
+
59
+ #: nextend-facebook-connect/NSL/GDPR.php:39
60
+ #, php-format
61
+ msgid ""
62
+ "%1$s use the access token what the social provider gave to communicate with "
63
+ "the providers to verify account and securely access personal data."
64
+ msgstr ""
65
+
66
+ #: nextend-facebook-connect/NSL/GDPR.php:41
67
+ msgid "How long we retain your data"
68
+ msgstr ""
69
+
70
+ #: nextend-facebook-connect/NSL/GDPR.php:42
71
+ #, php-format
72
+ msgid ""
73
+ "%1$s removes the collected personal data when the user deleted from "
74
+ "WordPress."
75
+ msgstr ""
76
+
77
+ #: nextend-facebook-connect/NSL/GDPR.php:44
78
+ msgid "Does the plugin use personal data collected by others?"
79
+ msgstr ""
80
+
81
+ #: nextend-facebook-connect/NSL/GDPR.php:45
82
+ #, php-format
83
+ msgid ""
84
+ "%1$s use the personal data collected by the social providers to create "
85
+ "account on your site when the visitor authorize it."
86
+ msgstr ""
87
+
88
+ #: nextend-facebook-connect/NSL/GDPR.php:47
89
+ msgid "Does the plugin store things in the browser?"
90
+ msgstr ""
91
+
92
+ #: nextend-facebook-connect/NSL/GDPR.php:48
93
+ #, php-format
94
+ msgid ""
95
+ "Yes, %1$s must create a cookie for visitors who use the social login "
96
+ "authorization flow. This cookie required for every provider to secure the "
97
+ "communication and to redirect the user back to the last location."
98
+ msgstr ""
99
+
100
+ #: nextend-facebook-connect/NSL/GDPR.php:50
101
+ msgid "Does the plugin collect telemetry data, directly or indirectly?"
102
+ msgstr ""
103
+
104
+ #: nextend-facebook-connect/NSL/GDPR.php:51
105
+ #: nextend-facebook-connect/NSL/GDPR.php:54
106
+ msgid "No"
107
+ msgstr ""
108
+
109
+ #: nextend-facebook-connect/NSL/GDPR.php:53
110
+ msgid ""
111
+ "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
112
+ "third party?"
113
+ msgstr ""
114
+
115
+ #: nextend-facebook-connect/NSL/GDPR.php:97
116
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:65
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:277
131
  msgid "Settings saved."
132
  msgstr "设置已保存。"
133
 
134
+ #: nextend-facebook-connect/admin/admin.php:244
135
  msgid "The authorization was successful"
136
  msgstr "授权成功"
137
 
138
+ #: nextend-facebook-connect/admin/admin.php:255
139
  msgid "Deauthorize completed."
140
  msgstr "取消授权."
141
 
142
+ #: nextend-facebook-connect/admin/admin.php:429
143
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
144
  #: nextend-facebook-connect/admin/templates/providers.php:84
145
  #: nextend-facebook-connect/admin/templates/providers.php:96
146
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
147
  msgid "Settings"
148
  msgstr "设置"
149
 
150
+ #: nextend-facebook-connect/admin/admin.php:503
151
+ #: nextend-facebook-connect/includes/oauth2.php:139
152
+ #: nextend-facebook-connect/includes/oauth2.php:284
153
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
154
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:163
155
  #, php-format
156
  msgid "Unexpected response: %s"
157
  msgstr "响应出现意外情况: %s"
158
 
159
+ #: nextend-facebook-connect/admin/admin.php:561
160
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
161
  #, php-format
162
  msgid ""
166
  "%s 检测到您的登录网址已更改。您必须更新相关社交应用程序中的Oauth redirect "
167
  "URIs."
168
 
169
+ #: nextend-facebook-connect/admin/admin.php:562
170
  msgid "Fix Error"
171
  msgstr "修复错误"
172
 
173
+ #: nextend-facebook-connect/admin/admin.php:562
174
  msgid "Oauth Redirect URI"
175
  msgstr "Oauth Redirect URI"
176
 
177
+ #: nextend-facebook-connect/admin/admin.php:572
178
  #, php-format
179
  msgid ""
180
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
183
  "%1$s 检测到 %2$s 已经安装在你的网站. 你需要安装专业版本去显示社交登录按钮 "
184
  "%2$s 登录表单!"
185
 
186
+ #: nextend-facebook-connect/admin/admin.php:573
187
  msgid "Dismiss and check Pro Addon"
188
  msgstr "解除并检查专业版本"
189
 
190
+ #: nextend-facebook-connect/admin/admin.php:573
191
  msgid "Dismiss"
192
  msgstr "解除"
193
 
194
+ #: nextend-facebook-connect/admin/admin.php:579
195
+ #, php-format
196
+ msgid ""
197
+ "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
198
+ "register flow</b>\" and \"<b>OAuth redirect uri proxy page</b>\" in %1$s to "
199
+ "work properly."
200
+ msgstr ""
201
+
202
+ #: nextend-facebook-connect/admin/admin.php:580
203
+ #, fuzzy
204
+ #| msgid "Fix Error"
205
+ msgid "Fix now"
206
+ msgstr "修复错误"
207
+
208
+ #: nextend-facebook-connect/admin/admin.php:604
209
+ msgid "Authorize your Pro Addon"
210
+ msgstr "授权你的专业版插件"
211
+
212
+ #: nextend-facebook-connect/admin/admin.php:605
213
+ msgid ""
214
+ "To be able to use the Pro features, you need to authorize Nextend Social "
215
+ "Connect Pro Addon. You can do this by clicking on the Authorize button below "
216
+ "then select the related purchase."
217
+ msgstr ""
218
+ "要想使用专业版本功能,你需要 Nextend Social Connect 专业版本的授权。你可以点"
219
+ "击下面的授权按钮,然后选择购买。"
220
+
221
+ #: nextend-facebook-connect/admin/admin.php:610
222
+ msgid "Authorize"
223
+ msgstr "授权"
224
+
225
+ #: nextend-facebook-connect/admin/admin.php:667
226
+ msgid "License key"
227
+ msgstr "密匙"
228
+
229
+ #: nextend-facebook-connect/admin/admin.php:682
230
+ msgid "OAuth proxy page"
231
+ msgstr ""
232
+
233
+ #: nextend-facebook-connect/admin/admin.php:685
234
+ #, fuzzy
235
+ #| msgid "Register"
236
+ msgid "Register flow page"
237
+ msgstr "注册"
238
+
239
+ #: nextend-facebook-connect/admin/interim.php:12
240
+ #: nextend-facebook-connect/admin/interim.php:23
241
+ msgid "You have logged in successfully."
242
+ msgstr "你已经成功登录。"
243
+
244
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:81
245
  msgid "Login label"
246
  msgstr "登录标签"
247
 
248
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
249
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:97
250
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
251
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
252
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
253
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
254
  msgid "Reset to default"
255
  msgstr "恢复默认设置"
256
 
257
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
258
  msgid "Link label"
259
  msgstr "链接标签"
260
 
261
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:103
262
  msgid "Unlink label"
263
  msgstr "解除链接标签"
264
 
265
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
266
  msgid "Default button"
267
  msgstr "默认按钮"
268
 
269
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
270
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
271
  msgid "Use custom button"
272
  msgstr "使用自定义按钮"
273
 
274
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
275
  #, php-format
276
  msgid "Use the %s in your custom button's code to make the label show up."
277
  msgstr "使用 %s 在你的自定义按钮代码显示界面."
278
 
279
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:145
280
  msgid "Icon button"
281
  msgstr "图标按钮"
282
 
283
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:176
284
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
285
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:93
286
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
287
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:54
288
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
289
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:79
290
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
291
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
292
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:153
293
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:108
294
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:168
295
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
296
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:232
297
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
298
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
299
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
300
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
301
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
302
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
303
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
304
  msgid "Save Changes"
305
  msgstr "保存设置"
306
 
307
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
308
  #: nextend-facebook-connect/admin/templates/providers.php:64
309
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:15
310
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
311
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
312
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
313
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
314
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
315
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
316
  msgid "Getting Started"
317
  msgstr "从这里开始"
341
  msgstr "用户名前缀注册机制"
342
 
343
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
344
+ #, fuzzy
345
+ #| msgid "Used when username is invalid"
346
+ msgid "Used when username is invalid or not stored"
347
  msgstr "当用户名无效时使用"
348
 
349
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:29
350
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
351
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
352
+ msgid "Terms and conditions"
353
+ msgstr ""
354
+
355
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
356
+ #, php-format
357
+ msgid "Override global \"%1$s\""
358
+ msgstr ""
359
+
360
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
361
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
362
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:10
409
 
410
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
411
  #: nextend-facebook-connect/admin/templates/providers.php:39
412
+ #: nextend-facebook-connect/admin/templates/settings/general.php:53
413
+ #: nextend-facebook-connect/admin/templates/settings/general.php:189
414
+ #: nextend-facebook-connect/includes/provider-admin.php:215
415
  msgid "Disabled"
416
  msgstr "禁用"
417
 
429
 
430
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
431
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
432
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:38
433
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
434
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
435
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
436
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
437
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
438
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
439
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
440
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
441
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
442
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
443
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
444
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
445
  #: nextend-facebook-connect/widget.php:40
446
  msgid "Default"
447
  msgstr "默认"
448
 
449
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
450
+ #: nextend-facebook-connect/includes/userData.php:172
451
  msgid "Register"
452
  msgstr "注册"
453
 
463
  msgid "Store in meta key"
464
  msgstr ""
465
 
 
 
 
 
 
466
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
467
  msgid "Shortcode"
468
  msgstr "短码"
483
  msgid "Image url"
484
  msgstr "图片链接地址"
485
 
486
+ #: nextend-facebook-connect/admin/templates/debug.php:7
487
+ #: nextend-facebook-connect/admin/templates/header.php:20
488
+ #, fuzzy
489
+ #| msgid "Debug mode"
490
+ msgid "Debug"
491
+ msgstr "调试模式"
492
+
493
+ #: nextend-facebook-connect/admin/templates/debug.php:40
494
+ msgid "Test network connection with providers"
495
+ msgstr ""
496
+
497
+ #: nextend-facebook-connect/admin/templates/debug.php:47
498
+ msgid "You don't have cURL support, please enable it in php.ini!"
499
+ msgstr ""
500
+
501
+ #: nextend-facebook-connect/admin/templates/debug.php:57
502
+ #, php-format
503
+ msgid "Test %1$s connection"
504
+ msgstr ""
505
+
506
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:7
507
+ msgid "Pro Addon - Authorized domain has been changed"
508
+ msgstr ""
509
+
510
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:15
511
+ msgid ""
512
+ "<b>You must authorize your new domain</b> to receive <b>updates and support</"
513
+ "b> in the future."
514
+ msgstr ""
515
+
516
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:21
517
+ msgid "You can authorize your new domain by completing the following steps:"
518
+ msgstr ""
519
+
520
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:25
521
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
522
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
523
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
524
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
525
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
526
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
527
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
528
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
529
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
530
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
531
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
532
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
533
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
534
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
535
+ #, php-format
536
+ msgid "Navigate to %s"
537
+ msgstr "导航 %s"
538
+
539
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:26
540
+ #, fuzzy
541
+ #| msgid "Log in with your %s credentials if you are not logged in"
542
+ msgid "Log in with your credentials if you are not logged in"
543
+ msgstr "如果您未登录,请使用您的 %s 凭据登录"
544
+
545
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:27
546
+ #, php-format
547
+ msgid "Find your old domain name: <b>%s</b>"
548
+ msgstr ""
549
+
550
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:28
551
+ #, php-format
552
+ msgid "Click on the %1$s next to your domain name."
553
+ msgstr ""
554
+
555
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:29
556
+ #, php-format
557
+ msgid "Authorize your %1$s by clicking on the following button."
558
+ msgstr ""
559
+
560
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:34
561
+ msgid "The authorized domain name of your site is fine!"
562
+ msgstr ""
563
+
564
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
565
  msgid "Fix Oauth Redirect URIs"
566
  msgstr "修复 Oauth Redirect URIs"
573
  msgid "Got it"
574
  msgstr "搞定"
575
 
576
+ #: nextend-facebook-connect/admin/templates/global-settings.php:28
577
  #: nextend-facebook-connect/admin/templates/menu.php:8
578
  msgid "Global Settings"
579
  msgstr "全局设置"
580
 
581
+ #: nextend-facebook-connect/admin/templates/global-settings.php:31
582
  msgid "General"
583
  msgstr "常规"
584
 
585
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
586
+ msgid "Privacy"
587
+ msgstr ""
588
+
589
+ #: nextend-facebook-connect/admin/templates/global-settings.php:35
590
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
591
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
592
  msgid "Login Form"
593
  msgstr "登录界面"
594
 
595
+ #: nextend-facebook-connect/admin/templates/global-settings.php:39
596
  msgid "Comment"
597
  msgstr "评论"
598
 
604
  msgid "Support"
605
  msgstr "支持"
606
 
607
+ #: nextend-facebook-connect/admin/templates/header.php:23
608
  #: nextend-facebook-connect/admin/templates/menu.php:12
609
  msgid "Pro Addon"
610
  msgstr "专业版插件"
636
  msgstr "专业版插件已经安装但没有启用。要使用专业版本功能,你需要先启用它。"
637
 
638
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
639
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
640
  msgid "Deauthorize Pro Addon"
641
  msgstr "专业版未授权"
642
 
664
  msgid "Activating..."
665
  msgstr "正在启用."
666
 
667
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
668
  msgid "Pro Addon is installed and activated"
669
  msgstr "专业版本已经安装并启用了"
670
 
671
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:120
672
  msgid ""
673
  "You installed and activated the Pro Addon. If you don’t want to use it "
674
  "anymore, you can deauthorize using the button below."
726
  msgstr "未验证"
727
 
728
  #: nextend-facebook-connect/admin/templates/providers.php:42
729
+ #: nextend-facebook-connect/admin/templates/settings/general.php:56
730
+ #: nextend-facebook-connect/admin/templates/settings/general.php:192
731
+ #: nextend-facebook-connect/includes/provider-admin.php:218
732
  msgid "Enabled"
733
  msgstr "允许"
734
 
741
  msgstr "现在更新"
742
 
743
  #: nextend-facebook-connect/admin/templates/providers.php:72
744
+ #: nextend-facebook-connect/includes/provider-admin.php:202
745
  msgid "Verify Settings"
746
  msgstr "验证设置"
747
 
748
  #: nextend-facebook-connect/admin/templates/providers.php:80
749
+ #: nextend-facebook-connect/includes/provider-admin.php:247
750
  msgid "Enable"
751
  msgstr "启用"
752
 
753
  #: nextend-facebook-connect/admin/templates/providers.php:92
754
+ #: nextend-facebook-connect/includes/provider-admin.php:255
755
  msgid "Disable"
756
  msgstr "禁止"
757
 
759
  msgid "Import"
760
  msgstr "导入"
761
 
762
+ #: nextend-facebook-connect/admin/templates/providers.php:124
763
+ msgid "Stay Updated"
764
+ msgstr ""
765
+
766
+ #: nextend-facebook-connect/admin/templates/providers.php:125
767
+ msgid ""
768
+ "Receive info on the latest plugin updates and social provider related "
769
+ "changes."
770
+ msgstr ""
771
+
772
+ #: nextend-facebook-connect/admin/templates/providers.php:126
773
+ #, fuzzy
774
+ #| msgid "Please enter an email address."
775
+ msgid "Enter your email address"
776
+ msgstr "请输入电子邮箱."
777
+
778
+ #: nextend-facebook-connect/admin/templates/providers.php:130
779
+ msgid "Subscribe"
780
+ msgstr ""
781
+
782
+ #: nextend-facebook-connect/admin/templates/providers.php:146
783
  msgid "Saving..."
784
  msgstr "正在保存."
785
 
786
+ #: nextend-facebook-connect/admin/templates/providers.php:147
787
  msgid "Saving failed"
788
  msgstr "保存失败"
789
 
790
+ #: nextend-facebook-connect/admin/templates/providers.php:148
791
  msgid "Order Saved"
792
  msgstr "订单已保存"
793
 
794
+ #: nextend-facebook-connect/admin/templates/providers.php:217
795
+ msgid "Successfully subscribed!"
796
+ msgstr ""
797
+
798
+ #: nextend-facebook-connect/admin/templates/providers.php:217
799
+ msgid ""
800
+ "We'll be bringing you all the latest news and updates about Social Login - "
801
+ "right to your inbox."
802
+ msgstr ""
803
+
804
+ #: nextend-facebook-connect/admin/templates/providers.php:224
805
+ #, fuzzy
806
+ #| msgid "Please enter an email address."
807
+ msgid "The entered email address is invalid!"
808
+ msgstr "请输入电子邮箱."
809
+
810
  #: nextend-facebook-connect/admin/templates/review.php:14
811
  msgid "Rate your experience!"
812
  msgstr "留一个评论!"
848
  msgstr "好吧,你应得的"
849
 
850
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
851
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84
852
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96
853
+ #, fuzzy
854
+ #| msgid "Registration Form"
855
+ msgid "Register form"
856
+ msgstr "注册信息表"
857
 
858
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
859
  msgid "No Connect button"
866
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
867
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
868
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
869
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78
870
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144
871
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
872
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93
873
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159
874
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
875
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
876
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
877
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
878
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163
879
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
880
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:218
881
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
882
  msgid "Action:"
883
  msgstr "动作:"
884
 
891
  msgstr "登录按钮在注册之后"
892
 
893
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
894
+ #, fuzzy
895
+ #| msgid "Login form button style"
896
+ msgid "Register button style"
897
+ msgstr "登录界面按钮样式"
898
 
899
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
900
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:44
901
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
902
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
903
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
904
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96
905
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
906
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
907
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
908
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
909
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
910
  #: nextend-facebook-connect/widget.php:45
911
  msgid "Icon"
912
  msgstr "图标"
913
 
914
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
915
+ #, fuzzy
916
+ #| msgid "Icon button"
917
+ msgid "Login button"
918
+ msgstr "图标按钮"
919
 
920
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:23
921
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
922
  msgid "Show"
923
  msgstr "显示"
924
 
925
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:26
926
  msgid "Hide"
927
  msgstr "隐藏"
928
 
929
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
930
  #, php-format
931
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
932
  msgstr "你需要打开 ' %1$s > %2$s > %3$s ' 这个功能"
933
 
934
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
935
  msgid "Discussion"
936
  msgstr "讨论"
937
 
938
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
939
  msgid "Users must be registered and logged in to comment"
940
  msgstr "必须是登录用户才能评论"
941
 
942
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:32
943
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
944
+ #, fuzzy
945
+ #| msgid "Button style:"
946
+ msgid "Button style"
947
+ msgstr "按钮样式:"
948
 
949
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
950
  msgid "Target window"
971
  msgstr "允许通过社交登录注册"
972
 
973
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
 
974
  msgid "Registration notification sent to"
975
  msgstr "注册通知发送到"
976
 
977
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:59
978
  msgid "WordPress default"
979
  msgstr "WordPress 默认"
980
 
981
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:62
982
  msgid "Nobody"
983
  msgstr "没人"
984
 
985
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:68
 
 
 
 
986
  msgid "Admin"
987
  msgstr "管理员"
988
 
989
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:71
990
  msgid "User and Admin"
991
  msgstr "用户和管理员"
992
 
993
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
 
994
  msgid "Debug mode"
995
  msgstr "调试模式"
996
 
997
+ #: nextend-facebook-connect/admin/templates/settings/general.php:61
998
+ #, fuzzy
999
+ #| msgid "Register"
1000
+ msgid "Page for register flow"
1001
+ msgstr "注册"
1002
+
1003
+ #: nextend-facebook-connect/admin/templates/settings/general.php:65
1004
+ #: nextend-facebook-connect/admin/templates/settings/general.php:76
1005
+ msgid "None"
1006
+ msgstr ""
1007
+
1008
+ #: nextend-facebook-connect/admin/templates/settings/general.php:68
1009
+ #, php-format
1010
+ msgid ""
1011
+ "First create a new page for register flow and insert the following "
1012
+ "shortcode: %1$s then select this page above"
1013
+ msgstr ""
1014
+
1015
+ #: nextend-facebook-connect/admin/templates/settings/general.php:72
1016
+ msgid "OAuth redirect uri proxy page"
1017
  msgstr ""
1018
 
1019
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
1020
+ msgid ""
1021
+ "If your wp-login.php is not available to handle the OAuth flow create a new "
1022
+ "page and select it here. Otherwise don't select any page."
1023
+ msgstr ""
1024
+
1025
+ #: nextend-facebook-connect/admin/templates/settings/general.php:85
1026
+ msgid "Prevent external redirect overrides"
1027
+ msgstr ""
1028
+
1029
+ #: nextend-facebook-connect/admin/templates/settings/general.php:91
1030
+ msgid "Disable external redirects"
1031
+ msgstr ""
1032
+
1033
+ #: nextend-facebook-connect/admin/templates/settings/general.php:98
1034
  #, fuzzy
1035
  #| msgid "Oauth Redirect URI"
1036
  msgid "Default redirect url"
1037
  msgstr "Oauth Redirect URI"
1038
 
1039
+ #: nextend-facebook-connect/admin/templates/settings/general.php:111
1040
+ #: nextend-facebook-connect/admin/templates/settings/general.php:149
1041
  #, fuzzy
1042
  #| msgid "Social Login"
1043
  msgid "for Login"
1044
  msgstr "社交登录"
1045
 
1046
+ #: nextend-facebook-connect/admin/templates/settings/general.php:126
1047
+ #: nextend-facebook-connect/admin/templates/settings/general.php:164
1048
  #, fuzzy
1049
  #| msgid "Register"
1050
  msgid "for Register"
1051
  msgstr "注册"
1052
 
1053
+ #: nextend-facebook-connect/admin/templates/settings/general.php:136
1054
  #, fuzzy
1055
  #| msgid "Fixed redirect url for login"
1056
  msgid "Fixed redirect url"
1057
  msgstr "修改登录后重定向URL"
1058
 
1059
+ #: nextend-facebook-connect/admin/templates/settings/general.php:173
1060
+ #, fuzzy
1061
+ #| msgid "Fixed redirect url for login"
1062
+ msgid "Blacklisted redirects"
1063
+ msgstr "修改登录后重定向URL"
1064
+
1065
+ #: nextend-facebook-connect/admin/templates/settings/general.php:179
1066
+ msgid "If you want to blacklist redirect url params. One pattern per line."
1067
+ msgstr ""
1068
+
1069
+ #: nextend-facebook-connect/admin/templates/settings/general.php:184
1070
+ #, fuzzy
1071
+ #| msgid "Show login buttons"
1072
+ msgid "Support login restrictions"
1073
+ msgstr "显示登录按钮"
1074
+
1075
+ #: nextend-facebook-connect/admin/templates/settings/general.php:194
1076
+ #, php-format
1077
+ msgid "Please visit to our %1$s to check what plugins are supported!"
1078
+ msgstr ""
1079
+
1080
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
1081
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1082
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1083
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1084
  msgid "Login form button style"
1085
  msgstr "登录界面按钮样式"
1086
 
1087
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
1088
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
1089
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52
1090
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
1091
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
1092
  msgid "Login layout"
1093
  msgstr "登录界面布局"
1094
 
1095
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
1096
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
1097
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
1098
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109
1099
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1100
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124
1101
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1102
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
1103
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
1104
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
1105
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
1106
  msgid "Below"
1107
  msgstr "下面"
1108
 
1109
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
1110
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
1111
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
1112
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115
1113
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1114
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
1115
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1116
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
1117
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1118
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1119
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192
1120
  msgid "Below with separator"
1121
  msgstr "下面并分割"
1122
 
1127
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
1128
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
1129
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
1130
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121
1131
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1132
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1133
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1134
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1135
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1136
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1137
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198
1138
  msgid "Above"
1139
  msgstr "上面"
1140
 
1141
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
1142
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
1143
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
1144
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127
1145
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1146
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1147
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1148
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1149
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1150
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1151
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204
1152
  msgid "Above with separator"
1153
  msgstr "在上面并分割"
1154
 
1178
  msgstr "隐藏登录按钮"
1179
 
1180
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1181
+ #: nextend-facebook-connect/includes/userData.php:122
1182
  msgid "Registration Form"
1183
  msgstr "注册信息表"
1184
 
1186
  msgid "Embedded login form"
1187
  msgstr "嵌入登录表单"
1188
 
1189
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69
1190
+ #, fuzzy
1191
+ #| msgid "Login form"
1192
+ msgid "Sign Up form"
1193
+ msgstr "登录表单"
1194
+
1195
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74
1196
+ #, fuzzy
1197
+ #| msgid "No Connect button in login form"
1198
+ msgid "No Connect button in Sign Up form"
1199
+ msgstr "在登录表单里不要登录按钮"
1200
 
1201
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
1202
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1203
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92
1204
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46
1205
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51
1206
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104
1207
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
1208
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162
1209
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167
1210
+ #, fuzzy
1211
+ #| msgid "No Connect button"
1212
+ msgid "Connect button on"
1213
+ msgstr "没有连接按钮"
1214
+
1215
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84
1216
+ #, fuzzy
1217
+ #| msgid "Login form button style"
1218
+ msgid "Sign Up form button style"
1219
+ msgstr "登录界面按钮样式"
1220
+
1221
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103
1222
+ #, fuzzy
1223
+ #| msgid "Login layout"
1224
+ msgid "Sign Up layout"
1225
+ msgstr "登录界面布局"
1226
+
1227
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135
1228
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150
1229
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212
1230
+ #, fuzzy
1231
+ #| msgid "WooCommerce account details"
1232
+ msgid "Account details"
1233
+ msgstr "WooCommerce 账户详情"
1234
+
1235
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140
1236
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155
1237
  msgid "No link buttons"
1238
  msgstr ""
1239
 
1240
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143
1241
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158
1242
  msgid "Link buttons after account details"
1243
  msgstr "链接按钮在账户详情后面"
1244
 
1245
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1246
+ #: nextend-facebook-connect/nextend-social-login.php:155
1247
+ msgid ""
1248
+ "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1249
+ "\"_blank\">Privacy Policy</a>"
1250
+ msgstr ""
1251
+
1252
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1253
+ msgid "Store"
1254
+ msgstr ""
1255
+
1256
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1257
+ msgid "First and last name"
1258
+ msgstr ""
1259
+
1260
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1261
+ msgid "When not enabled, username will be randomly generated."
1262
+ msgstr ""
1263
+
1264
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1265
+ #: nextend-social-login-pro/class-provider-extension.php:320
1266
+ msgid "Email"
1267
+ msgstr "Email"
1268
+
1269
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1270
+ msgid "When not enabled, email will be empty."
1271
+ msgstr ""
1272
+
1273
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1274
+ #: nextend-facebook-connect/includes/avatar.php:46
1275
+ msgid "Avatar"
1276
+ msgstr ""
1277
+
1278
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1279
+ #: nextend-facebook-connect/includes/provider.php:985
1280
+ msgid "Access token"
1281
+ msgstr ""
1282
+
1283
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1284
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38
1285
+ msgid "Login form"
1286
+ msgstr "登录表单"
1287
+
1288
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1289
  #, fuzzy
1290
+ #| msgid "No Connect button in login form"
1291
+ msgid "No Connect button in Login form"
1292
+ msgstr "在登录表单里不要登录按钮"
1293
 
1294
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89
1295
+ #, fuzzy
1296
+ #| msgid "No Connect button in register form"
1297
+ msgid "No Connect button in Register form"
1298
+ msgstr "不要登录按钮在注册表上"
1299
+
1300
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
1301
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
1302
  #, fuzzy
1303
  #| msgid "Login form button style"
1304
  msgid "Register form button style"
1305
  msgstr "登录界面按钮样式"
1306
 
1307
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118
1308
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
1309
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
1310
  #, fuzzy
1311
  #| msgid "Register"
1312
  msgid "Register layout"
1313
  msgstr "注册"
1314
 
1315
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1316
+ #, fuzzy
1317
+ #| msgid "Registration Form"
1318
+ msgid "Register Form"
1319
+ msgstr "注册信息表"
1320
 
1321
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43
1322
  msgid "No Connect button in login form"
1323
  msgstr "在登录表单里不要登录按钮"
1324
 
1325
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
 
 
 
 
 
 
 
 
 
 
 
 
1326
  msgid "No Connect button in register form"
1327
  msgstr "不要登录按钮在注册表上"
1328
 
1329
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154
1330
+ #, fuzzy
1331
+ #| msgid "Login form"
1332
+ msgid "Billing form"
1333
+ msgstr "登录表单"
 
 
 
 
 
 
 
1334
 
1335
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159
1336
  msgid "No Connect button in billing form"
1337
  msgstr "不要链接按钮在结算表单"
1338
 
1339
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
1340
+ #, fuzzy
1341
+ #| msgid "Login layout"
1342
+ msgid "Billing layout"
1343
+ msgstr "登录界面布局"
 
 
1344
 
1345
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1346
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:222
1347
+ #, fuzzy
1348
+ #| msgid "Icon button"
1349
+ msgid "Link buttons on"
1350
+ msgstr "图标按钮"
1351
 
1352
+ #: nextend-facebook-connect/admin/templates/test-connection.php:41
1353
+ #, fuzzy, php-format
1354
+ #| msgid "Authentication successful"
1355
+ msgid "Network connection successful: %1$s"
1356
+ msgstr "授权成功"
1357
 
1358
+ #: nextend-facebook-connect/admin/templates/test-connection.php:47
1359
+ #, php-format
1360
+ msgid "Network connection failed: %1$s"
1361
+ msgstr ""
1362
 
1363
+ #: nextend-facebook-connect/admin/templates/test-connection.php:50
1364
+ msgid ""
1365
+ "Please contact with your hosting provider to resolve the network issue "
1366
+ "between your server and the provider."
1367
  msgstr ""
1368
 
1369
+ #: nextend-facebook-connect/includes/avatar.php:47
1370
  msgid "Manage Avatar"
1371
  msgstr ""
1372
 
1373
+ #: nextend-facebook-connect/includes/avatar.php:48
1374
  #, php-format
1375
  msgid "Avatar <span class=\"count\">(%s)</span>"
1376
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1377
  msgstr[0] ""
1378
 
1379
+ #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1380
+ #: nextend-facebook-connect/includes/compat-wp-login.php:42
1381
+ #, php-format
1382
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1383
+ msgstr ""
1384
+
1385
+ #: nextend-facebook-connect/includes/compat-wp-login.php:97
1386
+ msgid "https://wordpress.org/"
1387
+ msgstr ""
1388
+
1389
+ #: nextend-facebook-connect/includes/compat-wp-login.php:98
1390
+ msgid "Powered by WordPress"
1391
+ msgstr ""
1392
+
1393
+ #. translators: %s: site title
1394
+ #: nextend-facebook-connect/includes/compat-wp-login.php:234
1395
+ #, php-format
1396
+ msgctxt "site"
1397
+ msgid "&larr; Back to %s"
1398
+ msgstr ""
1399
+
1400
+ #: nextend-facebook-connect/includes/provider-admin.php:196
1401
  msgid "Your configuration needs to be verified"
1402
  msgstr "您的配置需要验证"
1403
 
1404
+ #: nextend-facebook-connect/includes/provider-admin.php:197
1405
  msgid ""
1406
  "Before you can start letting your users register with your app it needs to "
1407
  "be tested. This test makes sure that no users will have troubles with the "
1413
  "册过程中不会遇到麻烦。 <br>如果您在弹出窗口中看到错误消息,请检查复制的ID和密"
1414
  "码。如果没有错误信息,说明你的程序运行正常。"
1415
 
1416
+ #: nextend-facebook-connect/includes/provider-admin.php:203
1417
  msgid "Please save your changes to verify settings."
1418
  msgstr "请保存您的更改以验证。"
1419
 
1420
+ #: nextend-facebook-connect/includes/provider-admin.php:211
1421
  msgid "Works Fine"
1422
  msgstr "运行正常"
1423
 
1424
+ #: nextend-facebook-connect/includes/provider-admin.php:225
1425
  #, php-format
1426
  msgid ""
1427
  "This provider is currently disabled, which means that users can’t register "
1428
  "or login via their %s account."
1429
  msgstr "该通道目前已被禁用,用户无法通过其 %s 帐户注册或登录。"
1430
 
1431
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1432
  #, php-format
1433
  msgid ""
1434
  "This provider works fine, but you can test it again. If you don’t want to "
1437
  "该通道工作正常,但可以再次进行测试。 如果您不想让用户通过 %s 注册或登录,可以"
1438
  "禁用它。"
1439
 
1440
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1441
  #, php-format
1442
  msgid ""
1443
  "This provider is currently enabled, which means that users can register or "
1444
  "login via their %s account."
1445
  msgstr "该通道目前已启用,这意味着用户可以通过 %s 账户进行注册或登录。"
1446
 
1447
+ #: nextend-facebook-connect/includes/provider-admin.php:239
1448
  msgid "Verify Settings Again"
1449
  msgstr "再次验证设置"
1450
 
1451
+ #: nextend-facebook-connect/includes/provider-admin.php:240
1452
  msgid "Please save your changes before verifying settings."
1453
  msgstr ""
1454
 
1455
+ #: nextend-facebook-connect/includes/provider.php:347
1456
+ #: nextend-facebook-connect/includes/provider.php:643
1457
+ #: nextend-facebook-connect/includes/provider.php:648
1458
  msgid "Authentication successful"
1459
  msgstr "授权成功"
1460
 
1461
+ #: nextend-facebook-connect/includes/provider.php:587
1462
+ #: nextend-facebook-connect/includes/user.php:109
1463
  msgid "Authentication error"
1464
  msgstr "授权认证出错"
1465
 
1466
+ #: nextend-facebook-connect/includes/provider.php:602
1467
  msgid "Unlink successful."
1468
  msgstr "解除链接成功."
1469
 
1470
+ #: nextend-facebook-connect/includes/provider.php:799
1471
+ #: nextend-facebook-connect/includes/provider.php:806
1472
  msgid "The test was successful"
1473
  msgstr "测试成功"
1474
 
1475
+ #: nextend-facebook-connect/includes/provider.php:852
1476
  msgid "Authentication failed"
1477
  msgstr "授权认证失败"
1478
 
1479
+ #: nextend-facebook-connect/includes/provider.php:977
1480
+ msgid "Identifier"
1481
+ msgstr ""
1482
+
1483
+ #: nextend-facebook-connect/includes/provider.php:993
1484
+ msgid "Profile picture"
1485
+ msgstr ""
1486
+
1487
+ #: nextend-facebook-connect/includes/user.php:69
1488
  #, php-format
1489
  msgid ""
1490
  "Your %1$s account is successfully linked with your account. Now you can sign "
1491
  "in with %2$s easily."
1492
  msgstr "你的 %1$s 账号已经成功链接到你的网站帐号. 你可以快速登录 %2$s ."
1493
 
1494
+ #: nextend-facebook-connect/includes/user.php:72
1495
  #, php-format
1496
  msgid ""
1497
  "You have already linked a(n) %s account. Please unlink the current and then "
1499
  msgstr ""
1500
  "你已经链接了 a(n) %s 账号. 请解除现有的链接账号,你才可以重新链接 %s 账号。"
1501
 
1502
+ #: nextend-facebook-connect/includes/user.php:77
1503
  #, php-format
1504
  msgid "This %s account is already linked to other user."
1505
  msgstr "这个 %s 账号已经链接到了其他用户。"
1506
 
1507
+ #: nextend-facebook-connect/includes/userData.php:122
1508
+ msgid "Register For This Site!"
1509
+ msgstr "注册此网站!"
1510
+
1511
  #. translators: %2$s: PHP version
1512
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1513
  #, php-format
1522
  "version, the plugin is currently NOT ACTIVE."
1523
  msgstr ""
1524
 
1525
+ #: nextend-facebook-connect/nextend-social-login.php:77
1526
+ #: nextend-facebook-connect/nextend-social-login.php:84
1527
  #, php-format
1528
  msgid "Please update %1$s to version %2$s or newer."
1529
  msgstr "请更新 %1$s 到 %2$s 版本."
1530
 
1531
+ #: nextend-facebook-connect/nextend-social-login.php:77
1532
+ #: nextend-facebook-connect/nextend-social-login.php:84
1533
  msgid "Update now!"
1534
  msgstr "现在更新!"
1535
 
1536
+ #: nextend-facebook-connect/nextend-social-login.php:91
1537
+ #, php-format
1538
+ msgid "Your domain name changed so you must authorize %1$s again."
1539
+ msgstr ""
1540
+
1541
+ #: nextend-facebook-connect/nextend-social-login.php:485
1542
  #, php-format
1543
  msgid ""
1544
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1545
  "Connect as it is not needed anymore."
1546
  msgstr "%s 取代了Nextend Google Connect。 您可以删除Nextend Google Connect。"
1547
 
1548
+ #: nextend-facebook-connect/nextend-social-login.php:496
1549
  #, php-format
1550
  msgid ""
1551
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1552
  "Connect as it is not needed anymore."
1553
  msgstr "%s取代了Nextend Twitter Connect.你可以删除 Nextend Twitter Connect 。"
1554
 
1555
+ #: nextend-facebook-connect/nextend-social-login.php:760
1556
+ #: nextend-facebook-connect/nextend-social-login.php:1106
 
 
 
 
1557
  msgid "Social Login"
1558
  msgstr "社交登录"
1559
 
1560
+ #: nextend-facebook-connect/nextend-social-login.php:1087
1561
  msgid "Social Accounts"
1562
  msgstr "社交账号"
1563
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1564
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1565
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1566
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1567
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1568
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
 
1569
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1570
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1571
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1584
  msgstr "在左侧,点击\"Facebook 登录/设置\""
1585
 
1586
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1587
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1588
  #, php-format
1589
  msgid ""
1590
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1591
  msgstr "请将下面的URL填入\"Valid OAuth redirect URIs\" : <b>%s</b>"
1592
 
1593
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1594
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1595
  msgid "Click on \"Save Changes\""
1596
  msgstr "点击\"保存设置\""
1597
 
1610
  msgid "How to get SSL for my WordPress site?"
1611
  msgstr ""
1612
 
1613
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
1614
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1615
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1616
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1627
  "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到"
1628
  "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。"
1629
 
1630
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1631
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1632
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1633
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1634
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1635
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1636
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1637
  #, php-format
1638
  msgctxt "App creation"
1639
  msgid "Create %s"
1640
  msgstr "建立 %s"
1641
 
1642
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1643
  msgid "Click on the \"Add a New App\" button"
1644
  msgstr "点击\"添加新的应用\"按钮"
1645
 
1646
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1647
  msgid "Fill \"Display Name\" and \"Contact Email\""
1648
  msgstr "填写\"显示名称\" 和 \"联系邮箱\""
1649
 
1650
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1651
  msgid "Click on blue \"Create App ID\" button"
1652
  msgstr "点击蓝色的\"创建应用\"按钮"
1653
 
1654
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1655
  msgid ""
1656
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1657
  "button"
1658
  msgstr "移动你的鼠标到 Facebook 登录 然后点击出现的\"设置\"按钮"
1659
 
1660
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1661
  msgid "Choose Web"
1662
  msgstr "选择网站"
1663
 
1664
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1665
  #, php-format
1666
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1667
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
1668
 
1669
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1670
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
1671
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1672
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
1673
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
1674
  msgid "Click on \"Save\""
1675
  msgstr "点击\"保存“"
1676
 
1677
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1678
  msgid "In the left sidebar, click on \"Facebook Login\""
1679
  msgstr "点击左边的\"Facebook 登录\""
1680
 
1681
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1682
  msgid "In the top of the left sidebar, click on \"Settings\""
1683
  msgstr "顶部左侧,点击\"设置”"
1684
 
1685
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1686
  msgid ""
1687
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1688
  "click on the \"Show\" button. These will be needed in plugin's settings."
1690
  "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
1691
  "钮,这些都需要填写到插件的设置里。"
1692
 
1693
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1694
  msgid "Enter your domain name to the App Domains"
1695
  msgstr "填写你的域名到 应用域名"
1696
 
1697
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1698
  msgid ""
1699
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1700
  "accessible privacy policy that explains what data you are collecting and how "
1703
  "填写“隐私政策URL”。 提供公开可用且易于访问的隐私政策页面,解释您收集的数据以"
1704
  "及您将如何使用该数据。"
1705
 
1706
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1707
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1708
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1709
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1710
  msgid "Save your changes."
1711
  msgstr "保存你的更改."
1712
 
1713
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1714
  msgid ""
1715
  "Your application is currently private, which means that only you can log in "
1716
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1718
  "您的应用程序目前是私人的,这意味着只有您可以使用它登录。 在左侧栏中选择“应用"
1719
  "程序审查”,并发布您的应用程序"
1720
 
1721
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1722
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
1723
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1724
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1725
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1726
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1727
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1728
  #, php-format
1729
  msgid "I am done setting up my %s"
1867
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1868
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1869
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1870
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1871
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1872
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1873
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1874
  msgid "Required"
1879
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1880
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1881
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1882
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1883
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1884
  #, php-format
1885
  msgid ""
1903
  msgid "Unlink account from <b>Facebook</b>"
1904
  msgstr "解除关联 <b>Facebook</b> 账号"
1905
 
1906
+ #: nextend-facebook-connect/providers/facebook/facebook.php:154
1907
+ #: nextend-facebook-connect/providers/google/google.php:144
1908
+ #: nextend-facebook-connect/providers/twitter/twitter.php:105
1909
+ #: nextend-social-login-pro/providers/amazon/amazon.php:63
1910
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1911
+ #: nextend-social-login-pro/providers/paypal/paypal.php:125
1912
+ #: nextend-social-login-pro/providers/vk/vk.php:60
1913
  #, php-format
1914
  msgid ""
1915
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1916
  msgstr "输入的 %1$s 似乎不是有效的。 请输入有效的 %2$s."
1917
 
1918
+ #: nextend-facebook-connect/providers/facebook/facebook.php:333
1919
+ #: nextend-social-login-pro/providers/paypal/paypal.php:201
1920
+ #, php-format
1921
+ msgid "Required scope: %1$s"
1922
+ msgstr ""
1923
+
1924
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1925
+ #, fuzzy
1926
+ #| msgid "Buttons"
1927
+ msgid "Button skin"
1928
+ msgstr "按钮"
1929
+
1930
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1931
+ msgid "Uniform"
1932
+ msgstr ""
1933
+
1934
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1935
+ msgid "Light"
1936
+ msgstr ""
1937
+
1938
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:20
1939
+ msgid "Dark"
1940
+ msgstr ""
1941
+
1942
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1943
  msgid "Click on the \"Credentials\" in the left hand menu"
1944
  msgstr "点击左侧菜单的\"凭据\""
1949
  msgstr "点击 OAuth 2.0 client ID: %s"
1950
 
1951
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1952
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1953
  #, php-format
1954
  msgid ""
1955
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1956
  msgstr "将旁边的URL 填入\"Authorised redirect URIs\" 应该是 <b>%s</b>"
1957
 
1958
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1959
+ #, fuzzy
1960
+ #| msgid ""
1961
+ #| "If you don't have a project yet, you'll need to create one. You can do "
1962
+ #| "this by clicking on the blue \"Create project\" button on the right side"
1963
  msgid ""
1964
  "If you don't have a project yet, you'll need to create one. You can do this "
1965
+ "by clicking on the blue \"Create project\" button on the right side! ( If "
1966
+ "you already have a project, click on the name of your project in the "
1967
+ "dashboard instead, which will bring up a modal and click New Project. )"
1968
  msgstr ""
1969
  "如果你还没有项目,你需要创建一个。 您可以点击右侧蓝色的“创建项目”按钮来完成此"
1970
  "操作"
1971
 
1972
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1973
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
1974
+ #, fuzzy
1975
+ #| msgid "Click on the Create button"
1976
+ msgid "Click the Create button."
1977
+ msgstr "点击创建按钮"
1978
 
1979
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
1980
+ #, fuzzy
1981
+ #| msgid "Name your project and then click on the Create button"
1982
+ msgid "Name your project and then click on the Create button again"
1983
+ msgstr "命名您的项目,然后点击创建按钮"
1984
+
1985
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1986
  msgid "Once you have a project, you'll end up in the dashboard."
1987
  msgstr "一旦你有一个项目,你会在仪表盘发现它。"
1988
 
1989
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1990
  msgid ""
1991
  "Click on the \"Credentials\" in the left hand menu to create new API "
1992
  "credentials"
1993
  msgstr "点击左侧菜单中的“凭据”以创建新的API凭证"
1994
 
 
 
 
 
 
 
1995
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1996
+ msgid "Select \"OAuth client ID\" from the dropdown."
 
 
 
1997
  msgstr ""
 
 
1998
 
1999
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2000
+ #, fuzzy
2001
+ #| msgid ""
2002
+ #| "Go to the OAuth consent screen tab and enter a product name and provide "
2003
+ #| "the Privacy Policy URL, then click on the save button."
2004
+ msgid ""
2005
+ "If you're prompted to set a product name, do so. Provide the Privacy Policy "
2006
+ "URL as well then click on the save button"
2007
+ msgstr "转到OAuth 选项卡输入产品名称并提供隐私策略URL,然后单击保存按钮。"
2008
+
2009
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
2010
  msgid "Your application type should be \"Web application\""
2011
  msgstr "您的应用程序类型应该是“网页应用程序”"
2012
 
2013
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2014
  msgid "Name your application"
2015
  msgstr "命名你的应用程序"
2016
 
2017
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2018
  msgid "Click on the Create button"
2019
  msgstr "点击创建按钮"
2020
 
2021
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2022
  msgid ""
2023
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2024
  "the Credentials in the left hand menu and select your app by clicking on its "
2044
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
2045
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2046
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2047
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2048
  msgid "Client ID"
2049
  msgstr "客户端ID"
2050
 
2054
  msgid "Client Secret"
2055
  msgstr "客户端密码"
2056
 
2057
+ #: nextend-facebook-connect/providers/google/google.php:89
2058
  msgid "Continue with <b>Google</b>"
2059
  msgstr "通过 <b>Google</b>"
2060
 
2061
+ #: nextend-facebook-connect/providers/google/google.php:90
2062
  msgid "Link account with <b>Google</b>"
2063
  msgstr "关联 <b>Google</b>"
2064
 
2065
+ #: nextend-facebook-connect/providers/google/google.php:91
2066
  msgid "Unlink account from <b>Google</b>"
2067
  msgstr "取消关联 <b>Google</b>"
2068
 
2069
+ #: nextend-facebook-connect/providers/google/google.php:329
2070
+ #, fuzzy, php-format
2071
+ #| msgid "Required"
2072
+ msgid "Required API: %1$s"
2073
+ msgstr "请求"
2074
+
2075
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2076
+ #, fuzzy
2077
+ #| msgid "Name your project and then click on the Create button"
2078
+ msgid "Find your App and click on the Details button"
2079
+ msgstr "命名您的项目,然后点击创建按钮"
2080
 
2081
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2082
+ msgid ""
2083
+ "The Edit button can be found on the App details tab. Click on it and select "
2084
+ "Edit details"
2085
+ msgstr ""
2086
 
2087
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
2088
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2089
+ #, fuzzy, php-format
2090
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2091
+ msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2092
  msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2093
 
2094
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
2095
+ #, fuzzy, php-format
2096
+ #| msgid "Log in with your %s credentials if you are not logged in"
2097
+ msgid "Log in with your %s credentials if you are not logged in yet"
2098
+ msgstr "如果您未登录,请使用您的 %s 凭据登录"
2099
 
2100
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
2101
+ msgid ""
2102
+ "If you don't have a developer account yet, please apply one by filling all "
2103
+ "the required details! This is required for the next steps!"
2104
+ msgstr ""
2105
 
2106
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2107
  #, php-format
2108
  msgid ""
2109
+ "Once your developer account is complete, navigate back to %s if you aren't "
2110
+ "already there!"
2111
+ msgstr ""
2112
+
2113
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2114
+ #, fuzzy, php-format
2115
+ #| msgid ""
2116
+ #| "Fill the name and description fields. Then enter your site's URL to the "
2117
+ #| "Website field: <b>%s</b>"
2118
+ msgid ""
2119
+ "Fill the App name, Application description fields. Then enter your site's "
2120
+ "URL to the Website URL field: <b>%s</b>"
2121
  msgstr "填写名称和说明。 然后在网址字段输入您网站的:<b>%s</b>"
2122
 
2123
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2124
+ msgid "Tick the checkbox next to Enable Sign in with Twitter!"
2125
+ msgstr ""
2126
 
2127
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2128
  msgid ""
2129
+ "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us how "
2130
+ "this app will be used” fields!"
2131
+ msgstr ""
2132
 
2133
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2134
+ #, fuzzy
2135
+ #| msgid "Name your project and then click on the Create button"
2136
+ msgid "Read the Developer Terms and click the Create button again!"
2137
+ msgstr "命名您的项目,然后点击创建按钮"
2138
+
2139
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2140
+ msgid "Select the Permissions tab and click Edit."
2141
+ msgstr ""
2142
+
2143
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2144
  msgid ""
2145
+ "Tick the Request email address from users under the Additional permissions "
2146
+ "section and click Save."
2147
+ msgstr ""
2148
+
2149
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2150
+ #, fuzzy
2151
+ #| msgid ""
2152
+ #| "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
2153
+ msgid "Go to the Keys and tokens tab and find the API key and API secret key"
2154
  msgstr "转到密钥和访问密令选项卡,找到使用者密匙和密码"
2155
 
2156
  #: nextend-facebook-connect/providers/twitter/admin/import.php:9
2162
  msgstr "去设置页."
2163
 
2164
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2165
+ msgid "API Key"
2166
+ msgstr ""
2167
 
2168
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2169
+ msgid "API secret key"
2170
+ msgstr ""
2171
+
2172
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2173
+ msgid "Profile image size"
2174
+ msgstr ""
2175
 
2176
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2177
+ msgid "Original"
2178
+ msgstr ""
2179
+
2180
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2181
  msgid "Continue with <b>Twitter</b>"
2182
  msgstr "保持 <b>Twitter</b>"
2183
 
2184
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2185
  msgid "Link account with <b>Twitter</b>"
2186
  msgstr "关联 <b>Twitter</b> 账号"
2187
 
2188
+ #: nextend-facebook-connect/providers/twitter/twitter.php:74
2189
  msgid "Unlink account from <b>Twitter</b>"
2190
  msgstr "从 <b>Twitter</b> 取消关联帐户"
2191
 
2210
  msgid "Show unlink buttons"
2211
  msgstr ""
2212
 
2213
+ #: nextend-social-login-pro/class-provider-extension.php:115
2214
  msgid "Social login is not allowed with this role!"
2215
  msgstr "此用户组不允许社交登录!"
2216
 
 
2217
  #: nextend-social-login-pro/class-provider-extension.php:211
2218
+ #: nextend-social-login-pro/class-provider-extension.php:214
2219
+ #: nextend-social-login-pro/class-provider-extension.php:220
2220
+ #: nextend-social-login-pro/class-provider-extension.php:227
2221
+ #: nextend-social-login-pro/class-provider-extension.php:298
2222
+ #: nextend-social-login-pro/class-provider-extension.php:301
2223
+ #: nextend-social-login-pro/class-provider-extension.php:305
2224
  msgid "ERROR"
2225
  msgstr "错误"
2226
 
2227
+ #: nextend-social-login-pro/class-provider-extension.php:211
2228
  msgid "Please enter a username."
2229
  msgstr "请输入用户名."
2230
 
2231
+ #: nextend-social-login-pro/class-provider-extension.php:214
2232
  msgid ""
2233
  "This username is invalid because it uses illegal characters. Please enter a "
2234
  "valid username."
2235
  msgstr "此用户名无效,因为它使用了非法字符。 请输入有效的用户名。"
2236
 
2237
+ #: nextend-social-login-pro/class-provider-extension.php:220
2238
  msgid "This username is already registered. Please choose another one."
2239
  msgstr "这个用户名已经有人注册,请选择其他的。"
2240
 
2241
+ #: nextend-social-login-pro/class-provider-extension.php:227
2242
  msgid "Sorry, that username is not allowed."
2243
  msgstr "对不起,这个用户名不允许使用。"
2244
 
2245
+ #: nextend-social-login-pro/class-provider-extension.php:245
2246
+ msgid "Username"
2247
+ msgstr "用户名"
2248
+
2249
+ #: nextend-social-login-pro/class-provider-extension.php:298
2250
  msgid "Please enter an email address."
2251
  msgstr "请输入电子邮箱."
2252
 
2253
+ #: nextend-social-login-pro/class-provider-extension.php:301
2254
  msgid "The email address isn&#8217;t correct."
2255
  msgstr "邮箱地址是n&#8217;t 正确."
2256
 
2257
+ #: nextend-social-login-pro/class-provider-extension.php:305
2258
  msgid "This email is already registered, please choose another one."
2259
  msgstr "这个邮箱已经注册使用过,请选择其他的。"
2260
 
2261
+ #: nextend-social-login-pro/class-provider-extension.php:325
2262
+ msgid "Registration confirmation will be emailed to you."
2263
+ msgstr "注册确认将通过电子邮件发送给您。"
2264
+
2265
+ #: nextend-social-login-pro/class-provider-extension.php:376
2266
  msgid "<strong>ERROR</strong>: Please enter a password."
2267
  msgstr ""
2268
 
2269
+ #: nextend-social-login-pro/class-provider-extension.php:382
2270
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
2271
  msgstr ""
2272
 
2273
+ #: nextend-social-login-pro/class-provider-extension.php:388
2274
  msgid ""
2275
  "<strong>ERROR</strong>: Please enter the same password in both password "
2276
  "fields."
2277
  msgstr ""
2278
 
2279
+ #: nextend-social-login-pro/class-provider-extension.php:405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2280
  msgid "Password"
2281
  msgstr ""
2282
 
2283
+ #: nextend-social-login-pro/class-provider-extension.php:415
2284
  msgid "Strength indicator"
2285
  msgstr ""
2286
 
2287
+ #: nextend-social-login-pro/class-provider-extension.php:420
2288
  msgid "Confirm use of weak password"
2289
  msgstr ""
2290
 
2291
+ #: nextend-social-login-pro/class-provider-extension.php:426
2292
  msgid "Confirm password"
2293
  msgstr ""
2294
 
2295
+ #: nextend-social-login-pro/class-provider-extension.php:438
2296
  #, fuzzy, php-format
2297
  #| msgid ""
2298
  #| "This email is already registered, please login in to your account to link "
2320
  msgstr ""
2321
 
2322
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2323
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
2324
  #, fuzzy, php-format
2325
  #| msgid "Visit %s."
2326
  msgid "Visit %s"
2327
  msgstr "访问 %s."
2328
 
2329
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2330
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2331
  msgid ""
2332
  "On the right side, under \"Manage\", hover over the gear icon and select "
2333
  "\"Web Settings\" option."
2334
  msgstr ""
2335
 
2336
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2337
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2338
  msgid "Click \"Edit\"."
2339
  msgstr ""
2340
 
2341
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
2342
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2343
  #, fuzzy, php-format
2344
  #| msgid ""
2345
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2347
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2348
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2349
 
2350
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2351
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2352
  #, fuzzy, php-format
2353
  #| msgid ""
2354
  #| "To allow your visitors to log in with their %1$s account, first you must "
2367
  "将帮助你了解 %1$s 应用建立的过程,然后你可以建立一个你自己的 %1$s App。转到"
2368
  "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。"
2369
 
2370
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2371
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2372
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2373
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2374
  #, fuzzy, php-format
2375
  #| msgid "Log in with your %s credentials if you are not logged in"
2376
  msgid "Log in with your %s credentials if you are not logged in."
2377
  msgstr "如果您未登录,请使用您的 %s 凭据登录"
2378
 
2379
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2380
  #, fuzzy
2381
  #| msgid ""
2382
  #| "If you don't have a project yet, you'll need to create one. You can do "
2389
  "如果你还没有项目,你需要创建一个。 您可以点击右侧蓝色的“创建项目”按钮来完成此"
2390
  "操作"
2391
 
2392
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2393
  msgid ""
2394
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
2395
  "\"Consent Privacy Notice URL\"."
2396
  msgstr ""
2397
 
2398
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2399
  msgid "Once you filled all the required fields, click \"Save\"."
2400
  msgstr ""
2401
 
2402
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2403
  #, fuzzy, php-format
2404
  #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2405
  msgid ""
2406
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
2407
  msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
2408
 
2409
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2410
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
2411
  msgid "When all fields are filled, click \"Save\"."
2412
  msgstr ""
2413
 
2414
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2415
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
2416
  msgstr ""
2417
 
2418
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2419
  msgid ""
2420
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
2421
  "page."
2422
  msgstr ""
2423
 
2424
  #: nextend-social-login-pro/providers/amazon/amazon.php:37
 
 
2425
  msgid "Continue with <b>Amazon</b>"
2426
+ msgstr "通过 <b>Amazon</b>"
2427
 
2428
  #: nextend-social-login-pro/providers/amazon/amazon.php:38
 
 
2429
  msgid "Link account with <b>Amazon</b>"
2430
+ msgstr "关联 <b>Amazon</b> 账号"
2431
 
2432
  #: nextend-social-login-pro/providers/amazon/amazon.php:39
 
 
2433
  msgid "Unlink account from <b>Amazon</b>"
2434
+ msgstr "解除关联 <b>Amazon</b> 账号"
2435
+
2436
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2437
+ msgid "Click on the App"
2438
+ msgstr "点击应用"
2439
 
2440
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
2441
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
2477
  "Application Permissions"
2478
  msgstr "您可能想要在默认应用程序权限下启用 \"r_emailaddress\""
2479
 
2480
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:62
2481
  msgid "Continue with <b>LinkedIn</b>"
2482
  msgstr "通过 <b>LinkedIn</b>"
2483
 
2484
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2485
  msgid "Link account with <b>LinkedIn</b>"
2486
  msgstr "关联 <b>LinkedIn</b> 账号"
2487
 
2488
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:64
2489
  msgid "Unlink account from <b>LinkedIn</b>"
2490
  msgstr "从<b> LinkedIn </ b>取消关联帐户"
2491
 
2492
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
2493
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2494
+ msgid "Scroll down to \"REST API apps\"."
2495
+ msgstr ""
2496
+
2497
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2498
+ #, fuzzy, php-format
2499
+ #| msgid "Click on the Create button"
2500
+ msgid "Click on the name of your %s App."
2501
+ msgstr "点击创建按钮"
2502
+
2503
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2504
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2505
+ msgid "Select the \"Live\" option on the top-right side. "
2506
+ msgstr ""
2507
+
2508
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13
2509
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2510
+ msgid ""
2511
+ "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" heading "
2512
+ "and click \"Show\"."
2513
+ msgstr ""
2514
+
2515
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14
2516
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
2517
+ #, fuzzy, php-format
2518
+ #| msgid ""
2519
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2520
+ #| "b>"
2521
+ msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2522
+ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2523
+
2524
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
2525
+ #, fuzzy
2526
+ #| msgid "Click on the \"Create New App\" button"
2527
+ msgid "Click the \"Create App\" button."
2528
+ msgstr "点击\"创建新应用\"按钮"
2529
+
2530
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
2531
+ msgid "Fill the \"App Name\" field and click \"Create App\" button."
2532
+ msgstr ""
2533
+
2534
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
2535
+ msgid ""
2536
+ "Scroll down to \"App feature options\" section and tick \"Log In with PayPal"
2537
+ "\"."
2538
+ msgstr ""
2539
+
2540
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
2541
+ msgid ""
2542
+ "Click \"Advanced Options\" which can be found at the end of text \"Log In "
2543
+ "with PayPal\"."
2544
+ msgstr ""
2545
+
2546
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
2547
+ #, fuzzy
2548
+ #| msgid "Please enter an email address."
2549
+ msgid "Tick \"Full name\" and \"Email address\"."
2550
+ msgstr "请输入电子邮箱."
2551
+
2552
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27
2553
+ msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
2554
+ msgstr ""
2555
+
2556
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29
2557
+ msgid ""
2558
+ "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary "
2559
+ "\"Client ID\" and \"Secret\"! ( Make sure you are in \"Live\" mode and not "
2560
+ "\"Sandbox\" )."
2561
+ msgstr ""
2562
+
2563
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
2564
+ #, fuzzy
2565
+ #| msgid "App Secret"
2566
+ msgid "Secret"
2567
+ msgstr "App 密匙"
2568
+
2569
+ #: nextend-social-login-pro/providers/paypal/paypal.php:99
2570
+ msgid "Continue with <b>PayPal</b>"
2571
+ msgstr "通过 <b>PayPal</b>"
2572
+
2573
+ #: nextend-social-login-pro/providers/paypal/paypal.php:100
2574
+ msgid "Link account with <b>PayPal</b>"
2575
+ msgstr "关联 <b>PayPal</b>"
2576
+
2577
+ #: nextend-social-login-pro/providers/paypal/paypal.php:101
2578
+ msgid "Unlink account from <b>PayPal</b>"
2579
+ msgstr "取消关联 <b>PayPal</b>"
2580
+
2581
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
2582
  #, fuzzy
2583
  #| msgid "Click on the Create button"
2670
  msgstr ""
2671
 
2672
  #: nextend-social-login-pro/providers/vk/vk.php:34
 
 
2673
  msgid "Continue with <b>VK</b>"
2674
+ msgstr "通过 <b>VK</b>"
2675
 
2676
  #: nextend-social-login-pro/providers/vk/vk.php:35
 
 
2677
  msgid "Link account with <b>VK</b>"
2678
+ msgstr "关联 <b>VK</b>"
2679
 
2680
  #: nextend-social-login-pro/providers/vk/vk.php:36
 
 
2681
  msgid "Unlink account from <b>VK</b>"
2682
+ msgstr "取消关联 <b>VK</b>"
2683
+
2684
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2685
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2686
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:11
2687
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:8
2688
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
2689
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
2690
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
2691
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
2692
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
2693
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
2694
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
2695
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
2696
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
2697
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
2698
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
2699
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
2700
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
2701
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
2702
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
2703
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
2704
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
2705
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
2706
  msgid "OR"
2707
  msgstr "或"
2708
 
2709
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
2710
+ #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:1
2711
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2712
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2713
  msgid "Social accounts"
2714
  msgstr "社交账号"
2715
 
2716
+ #~ msgid "Click on the \"Settings\" tab"
2717
+ #~ msgstr "点击\"设置\"选项"
2718
+
2719
+ #~ msgid "Click on \"Update Settings\""
2720
+ #~ msgstr "点击\"更新设置\""
2721
+
2722
+ #, fuzzy
2723
+ #~| msgid ""
2724
+ #~| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2725
+ #~| "b>"
2726
+ #~ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2727
+ #~ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2728
+
2729
+ #, fuzzy
2730
+ #~| msgid "Click on \"Save\""
2731
+ #~ msgid "Click on \"Update\""
2732
+ #~ msgstr "点击\"保存“"
2733
+
2734
+ #, fuzzy
2735
+ #~| msgid "Click on the \"Create New App\" button"
2736
+ #~ msgid "Click on the \"Create New Application\" button."
2737
+ #~ msgstr "点击\"创建新应用\"按钮"
2738
+
2739
+ #, fuzzy
2740
+ #~| msgid "Click on the \"Create New App\" button"
2741
+ #~ msgid "Click the \"Create\" button!"
2742
+ #~ msgstr "点击\"创建新应用\"按钮"
2743
+
2744
+ #, fuzzy
2745
+ #~| msgid ""
2746
+ #~| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2747
+ #~| "you click on the \"Show\" button. These will be needed in plugin's "
2748
+ #~| "settings."
2749
+ #~ msgid ""
2750
+ #~ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2751
+ #~ "needed in the plugin's settings."
2752
+ #~ msgstr ""
2753
+ #~ "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示"
2754
+ #~ "\"按钮,这些都需要填写到插件的设置里。"
2755
+
2756
+ #~ msgid "Continue with <b>WordPress.com</b>"
2757
+ #~ msgstr "通过 <b>WordPress.com</b>"
2758
+
2759
+ #~ msgid "Link account with <b>WordPress.com</b>"
2760
+ #~ msgstr "关联 <b>WordPress.com</b>"
2761
+
2762
+ #~ msgid "Unlink account from <b>WordPress.com</b>"
2763
+ #~ msgstr "取消关联 <b>WordPress.com</b>"
2764
+
2765
+ #~ msgid ""
2766
+ #~ "Go back to the Credentials tab and locate the small box at the middle. "
2767
+ #~ "Click on the blue \"Create credentials\" button. Chose the \"OAuth client "
2768
+ #~ "ID\" from the dropdown list."
2769
+ #~ msgstr ""
2770
+ #~ "回到凭据选项卡,找到中间的小方块。 点击蓝色的“创建凭证”按钮。 从下拉列表中"
2771
+ #~ "选择“OAuth客户端ID”。"
2772
+
2773
+ #~ msgid "Accept the Twitter Developer Agreement"
2774
+ #~ msgstr "接受Twitter开发者协议"
2775
+
2776
+ #~ msgid ""
2777
+ #~ "Create your application by clicking on the Create your Twitter "
2778
+ #~ "application button"
2779
+ #~ msgstr "点击创建Twitter应用程序按钮来创建你的应用程序"
2780
+
2781
+ #~ msgid "Consumer Key"
2782
+ #~ msgstr "用户密匙"
2783
+
2784
+ #~ msgid "Consumer Secret"
2785
+ #~ msgstr "用户密码"
2786
+
2787
+ #~ msgid "BuddyPress register form"
2788
+ #~ msgstr "BuddyPress 注册表"
2789
+
2790
+ #~ msgid "BuddyPress register button style"
2791
+ #~ msgstr "BuddyPress 注册按钮样式"
2792
+
2793
+ #~ msgid "Comment login button"
2794
+ #~ msgstr "评论登录按钮"
2795
+
2796
+ #~ msgid "Comment button style"
2797
+ #~ msgstr "评论按钮样式"
2798
+
2799
+ #~ msgid "WooCommerce login form"
2800
+ #~ msgstr "WooCommerce 登录表单"
2801
+
2802
+ #~ msgid "Connect button before login form"
2803
+ #~ msgstr "登录按钮在登录表单上面"
2804
+
2805
+ #~ msgid "Connect button after login form"
2806
+ #~ msgstr "登录按钮在登录表单后"
2807
+
2808
+ #~ msgid "WooCommerce register form"
2809
+ #~ msgstr "WooCommerce 注册表单"
2810
+
2811
+ #~ msgid "Connect button before register form"
2812
+ #~ msgstr "登录按钮在注册表单前"
2813
+
2814
+ #~ msgid "Connect button after register form"
2815
+ #~ msgstr "登录按钮在注册表单后"
2816
+
2817
+ #~ msgid "WooCommerce billing form"
2818
+ #~ msgstr "WooCommerce 结算表单"
2819
+
2820
+ #~ msgid "Connect button before billing form"
2821
+ #~ msgstr "登录按钮在结算表单前"
2822
+
2823
+ #~ msgid "Connect button after billing form"
2824
+ #~ msgstr "登录按钮在结算表单后"
2825
+
2826
+ #~ msgid "Link buttons before account details"
2827
+ #~ msgstr "链接按钮在账户详情前面"
2828
+
2829
+ #~ msgid "WooCommerce button style"
2830
+ #~ msgstr "WooCommerce 按钮样式"
2831
+
2832
  #~ msgid "Use custom"
2833
  #~ msgstr "使用自定义"
2834
 
2835
  #~ msgid "Fixed redirect url for register"
2836
  #~ msgstr "修改注册后重定向URL"
2837
 
 
 
 
2838
  #~ msgid "Registration form"
2839
  #~ msgstr "注册表单"
2840
 
languages/nextend-facebook-connect.mo CHANGED
Binary file
languages/nextend-facebook-connect.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2018-05-08 15:04+0200\n"
5
- "PO-Revision-Date: 2018-05-08 15:04+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: en\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.0.7\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
@@ -21,46 +21,137 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
24
- #: nextend-facebook-connect/admin/admin.php:187
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  #, php-format
26
  msgid "%s needs json_decode function."
27
  msgstr ""
28
 
29
- #: nextend-facebook-connect/admin/admin.php:187
30
  msgid "Please contact your server administrator and ask for solution!"
31
  msgstr ""
32
 
33
- #: nextend-facebook-connect/admin/admin.php:214
34
- #: nextend-facebook-connect/admin/admin.php:256
35
  msgid "Settings saved."
36
  msgstr ""
37
 
38
- #: nextend-facebook-connect/admin/admin.php:223
39
  msgid "The authorization was successful"
40
  msgstr ""
41
 
42
- #: nextend-facebook-connect/admin/admin.php:234
43
  msgid "Deauthorize completed."
44
  msgstr ""
45
 
46
- #: nextend-facebook-connect/admin/admin.php:374
47
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
48
  #: nextend-facebook-connect/admin/templates/providers.php:84
49
  #: nextend-facebook-connect/admin/templates/providers.php:96
50
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
51
  msgid "Settings"
52
  msgstr ""
53
 
54
- #: nextend-facebook-connect/admin/admin.php:448
55
- #: nextend-facebook-connect/includes/oauth2.php:131
56
- #: nextend-facebook-connect/includes/oauth2.php:273
57
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
58
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:155
59
  #, php-format
60
  msgid "Unexpected response: %s"
61
  msgstr ""
62
 
63
- #: nextend-facebook-connect/admin/admin.php:506
64
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
65
  #, php-format
66
  msgid ""
@@ -68,93 +159,144 @@ msgid ""
68
  "URIs in the related social applications."
69
  msgstr ""
70
 
71
- #: nextend-facebook-connect/admin/admin.php:507
72
  msgid "Fix Error"
73
  msgstr ""
74
 
75
- #: nextend-facebook-connect/admin/admin.php:507
76
  msgid "Oauth Redirect URI"
77
  msgstr ""
78
 
79
- #: nextend-facebook-connect/admin/admin.php:517
80
  #, php-format
81
  msgid ""
82
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
83
  "display Social Login buttons in %2$s login form!"
84
  msgstr ""
85
 
86
- #: nextend-facebook-connect/admin/admin.php:518
87
  msgid "Dismiss and check Pro Addon"
88
  msgstr ""
89
 
90
- #: nextend-facebook-connect/admin/admin.php:518
91
  msgid "Dismiss"
92
  msgstr ""
93
 
94
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  msgid "Login label"
96
  msgstr ""
97
 
98
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:79
99
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:90
100
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
101
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
102
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
 
103
  msgid "Reset to default"
104
  msgstr ""
105
 
106
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:84
107
  msgid "Link label"
108
  msgstr ""
109
 
110
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:96
111
  msgid "Unlink label"
112
  msgstr ""
113
 
114
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
115
  msgid "Default button"
116
  msgstr ""
117
 
118
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:123
119
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
120
  msgid "Use custom button"
121
  msgstr ""
122
 
123
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
124
  #, php-format
125
  msgid "Use the %s in your custom button's code to make the label show up."
126
  msgstr ""
127
 
128
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:138
129
  msgid "Icon button"
130
  msgstr ""
131
 
132
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:169
133
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
134
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:90
135
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
136
- #: nextend-facebook-connect/admin/templates/settings/comment.php:56
137
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
138
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
139
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
140
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
141
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:86
 
 
142
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
143
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
144
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
145
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
146
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
147
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
148
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
 
149
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
150
  msgid "Save Changes"
151
  msgstr ""
152
 
153
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
154
  #: nextend-facebook-connect/admin/templates/providers.php:64
 
155
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
156
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
 
157
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
 
158
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
159
  msgid "Getting Started"
160
  msgstr ""
@@ -184,7 +326,18 @@ msgid "Fallback username prefix on register"
184
  msgstr ""
185
 
186
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
187
- msgid "Used when username is invalid"
 
 
 
 
 
 
 
 
 
 
 
188
  msgstr ""
189
 
190
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
@@ -237,9 +390,9 @@ msgstr ""
237
 
238
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
239
  #: nextend-facebook-connect/admin/templates/providers.php:39
240
- #: nextend-facebook-connect/admin/templates/settings/general.php:55
241
- #: nextend-facebook-connect/admin/templates/settings/general.php:69
242
- #: nextend-facebook-connect/includes/provider-admin.php:207
243
  msgid "Disabled"
244
  msgstr ""
245
 
@@ -257,19 +410,25 @@ msgstr ""
257
 
258
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
259
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
260
- #: nextend-facebook-connect/admin/templates/settings/comment.php:40
261
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
262
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
263
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
 
 
 
264
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
265
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
266
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
 
 
 
267
  #: nextend-facebook-connect/widget.php:40
268
  msgid "Default"
269
  msgstr ""
270
 
271
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
272
- #: nextend-social-login-pro/class-provider-extension.php:409
273
  msgid "Register"
274
  msgstr ""
275
 
@@ -285,11 +444,6 @@ msgstr ""
285
  msgid "Store in meta key"
286
  msgstr ""
287
 
288
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:80
289
- #, php-format
290
- msgid "Required scope: %1$s"
291
- msgstr ""
292
-
293
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
294
  msgid "Shortcode"
295
  msgstr ""
@@ -310,6 +464,80 @@ msgstr ""
310
  msgid "Image url"
311
  msgstr ""
312
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
313
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
314
  msgid "Fix Oauth Redirect URIs"
315
  msgstr ""
@@ -322,22 +550,26 @@ msgstr ""
322
  msgid "Got it"
323
  msgstr ""
324
 
325
- #: nextend-facebook-connect/admin/templates/global-settings.php:26
326
  #: nextend-facebook-connect/admin/templates/menu.php:8
327
  msgid "Global Settings"
328
  msgstr ""
329
 
330
- #: nextend-facebook-connect/admin/templates/global-settings.php:29
331
  msgid "General"
332
  msgstr ""
333
 
334
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
 
 
 
 
335
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
336
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
337
  msgid "Login Form"
338
  msgstr ""
339
 
340
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
341
  msgid "Comment"
342
  msgstr ""
343
 
@@ -349,7 +581,7 @@ msgstr ""
349
  msgid "Support"
350
  msgstr ""
351
 
352
- #: nextend-facebook-connect/admin/templates/header.php:20
353
  #: nextend-facebook-connect/admin/templates/menu.php:12
354
  msgid "Pro Addon"
355
  msgstr ""
@@ -381,7 +613,7 @@ msgid ""
381
  msgstr ""
382
 
383
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
384
- #: nextend-facebook-connect/admin/templates/pro-addon.php:215
385
  msgid "Deauthorize Pro Addon"
386
  msgstr ""
387
 
@@ -409,30 +641,11 @@ msgstr ""
409
  msgid "Activating..."
410
  msgstr ""
411
 
412
- #: nextend-facebook-connect/admin/templates/pro-addon.php:126
413
- msgid "Authorize your Pro Addon"
414
- msgstr ""
415
-
416
- #: nextend-facebook-connect/admin/templates/pro-addon.php:127
417
- msgid ""
418
- "To be able to use the Pro features, you need to authorize Nextend Social "
419
- "Connect Pro Addon. You can do this by clicking on the Authorize button below "
420
- "then select the related purchase."
421
- msgstr ""
422
-
423
- #: nextend-facebook-connect/admin/templates/pro-addon.php:132
424
- msgid "Authorize"
425
- msgstr ""
426
-
427
- #: nextend-facebook-connect/admin/templates/pro-addon.php:189
428
- msgid "License key"
429
- msgstr ""
430
-
431
- #: nextend-facebook-connect/admin/templates/pro-addon.php:206
432
  msgid "Pro Addon is installed and activated"
433
  msgstr ""
434
 
435
- #: nextend-facebook-connect/admin/templates/pro-addon.php:208
436
  msgid ""
437
  "You installed and activated the Pro Addon. If you don’t want to use it "
438
  "anymore, you can deauthorize using the button below."
@@ -487,9 +700,9 @@ msgid "Not Verified"
487
  msgstr ""
488
 
489
  #: nextend-facebook-connect/admin/templates/providers.php:42
490
- #: nextend-facebook-connect/admin/templates/settings/general.php:58
491
- #: nextend-facebook-connect/admin/templates/settings/general.php:72
492
- #: nextend-facebook-connect/includes/provider-admin.php:210
493
  msgid "Enabled"
494
  msgstr ""
495
 
@@ -502,17 +715,17 @@ msgid "Upgrade Now"
502
  msgstr ""
503
 
504
  #: nextend-facebook-connect/admin/templates/providers.php:72
505
- #: nextend-facebook-connect/includes/provider-admin.php:194
506
  msgid "Verify Settings"
507
  msgstr ""
508
 
509
  #: nextend-facebook-connect/admin/templates/providers.php:80
510
- #: nextend-facebook-connect/includes/provider-admin.php:239
511
  msgid "Enable"
512
  msgstr ""
513
 
514
  #: nextend-facebook-connect/admin/templates/providers.php:92
515
- #: nextend-facebook-connect/includes/provider-admin.php:247
516
  msgid "Disable"
517
  msgstr ""
518
 
@@ -520,18 +733,50 @@ msgstr ""
520
  msgid "Import"
521
  msgstr ""
522
 
523
- #: nextend-facebook-connect/admin/templates/providers.php:122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
524
  msgid "Saving..."
525
  msgstr ""
526
 
527
- #: nextend-facebook-connect/admin/templates/providers.php:123
528
  msgid "Saving failed"
529
  msgstr ""
530
 
531
- #: nextend-facebook-connect/admin/templates/providers.php:124
532
  msgid "Order Saved"
533
  msgstr ""
534
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
535
  #: nextend-facebook-connect/admin/templates/review.php:14
536
  msgid "Rate your experience!"
537
  msgstr ""
@@ -571,7 +816,9 @@ msgid "Ok, you deserve it"
571
  msgstr ""
572
 
573
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
574
- msgid "BuddyPress register form"
 
 
575
  msgstr ""
576
 
577
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
@@ -585,15 +832,19 @@ msgstr ""
585
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
586
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
587
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
588
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
589
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
590
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
591
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
592
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
593
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
594
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
595
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
596
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
 
 
 
 
597
  msgid "Action:"
598
  msgstr ""
599
 
@@ -606,49 +857,53 @@ msgid "Connect button after register"
606
  msgstr ""
607
 
608
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
609
- msgid "BuddyPress register button style"
610
  msgstr ""
611
 
612
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
613
- #: nextend-facebook-connect/admin/templates/settings/comment.php:46
614
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
615
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
616
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
 
 
 
617
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
618
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
619
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
620
  #: nextend-facebook-connect/widget.php:45
621
  msgid "Icon"
622
  msgstr ""
623
 
624
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
625
- #: nextend-facebook-connect/admin/templates/settings/comment.php:22
626
- msgid "Comment login button"
627
  msgstr ""
628
 
629
- #: nextend-facebook-connect/admin/templates/settings/comment.php:25
 
630
  msgid "Show"
631
  msgstr ""
632
 
633
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
634
  msgid "Hide"
635
  msgstr ""
636
 
637
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
638
  #, php-format
639
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
640
  msgstr ""
641
 
642
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
643
  msgid "Discussion"
644
  msgstr ""
645
 
646
- #: nextend-facebook-connect/admin/templates/settings/comment.php:30
647
  msgid "Users must be registered and logged in to comment"
648
  msgstr ""
649
 
650
- #: nextend-facebook-connect/admin/templates/settings/comment.php:34
651
- msgid "Comment button style"
 
652
  msgstr ""
653
 
654
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
@@ -676,82 +931,138 @@ msgid "Allow registration with Social login"
676
  msgstr ""
677
 
678
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
679
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
680
  msgid "Registration notification sent to"
681
  msgstr ""
682
 
683
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
684
  msgid "WordPress default"
685
  msgstr ""
686
 
687
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
688
  msgid "Nobody"
689
  msgstr ""
690
 
691
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
692
- msgid "User"
693
- msgstr ""
694
-
695
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
696
  msgid "Admin"
697
  msgstr ""
698
 
699
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
700
  msgid "User and Admin"
701
  msgstr ""
702
 
703
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
704
- #: nextend-facebook-connect/admin/templates/settings/general.php:52
705
  msgid "Debug mode"
706
  msgstr ""
707
 
708
- #: nextend-facebook-connect/admin/templates/settings/general.php:64
709
- msgid "Store Avatar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
710
  msgstr ""
711
 
712
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
 
 
 
 
 
 
 
 
 
 
 
 
 
 
713
  msgid "Default redirect url"
714
  msgstr ""
715
 
716
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
717
- #: nextend-facebook-connect/admin/templates/settings/general.php:130
718
  msgid "for Login"
719
  msgstr ""
720
 
721
- #: nextend-facebook-connect/admin/templates/settings/general.php:107
722
- #: nextend-facebook-connect/admin/templates/settings/general.php:145
723
  msgid "for Register"
724
  msgstr ""
725
 
726
- #: nextend-facebook-connect/admin/templates/settings/general.php:117
727
  msgid "Fixed redirect url"
728
  msgstr ""
729
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
730
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
731
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
 
732
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
733
  msgid "Login form button style"
734
  msgstr ""
735
 
736
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
737
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
 
738
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
 
739
  msgid "Login layout"
740
  msgstr ""
741
 
742
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
743
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
744
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
 
 
 
745
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
746
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
 
 
 
747
  msgid "Below"
748
  msgstr ""
749
 
750
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
751
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
752
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
 
 
 
753
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
754
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
 
 
 
755
  msgid "Below with separator"
756
  msgstr ""
757
 
@@ -762,16 +1073,28 @@ msgstr ""
762
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
763
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
764
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
 
 
 
765
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
766
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
 
 
 
767
  msgid "Above"
768
  msgstr ""
769
 
770
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
771
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
772
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
 
 
 
773
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
774
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
 
 
 
775
  msgid "Above with separator"
776
  msgstr ""
777
 
@@ -801,7 +1124,7 @@ msgid "Hide login buttons"
801
  msgstr ""
802
 
803
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
804
- #: nextend-social-login-pro/class-provider-extension.php:328
805
  msgid "Registration Form"
806
  msgstr ""
807
 
@@ -809,114 +1132,194 @@ msgstr ""
809
  msgid "Embedded login form"
810
  msgstr ""
811
 
812
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:68
813
- msgid "MemberPress account details"
814
  msgstr ""
815
 
816
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:73
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
817
  msgid "No link buttons"
818
  msgstr ""
819
 
820
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
821
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
822
  msgid "Link buttons after account details"
823
  msgstr ""
824
 
825
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
826
- msgid "Register Form"
 
 
 
827
  msgstr ""
828
 
829
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
830
- msgid "Register form button style"
831
  msgstr ""
832
 
833
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
834
- msgid "Register layout"
835
  msgstr ""
836
 
837
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
838
- msgid "WooCommerce login form"
839
  msgstr ""
840
 
841
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
842
- msgid "No Connect button in login form"
 
843
  msgstr ""
844
 
845
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
846
- msgid "Connect button before login form"
847
  msgstr ""
848
 
849
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
850
- msgid "Connect button after login form"
 
851
  msgstr ""
852
 
853
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
854
- msgid "WooCommerce register form"
 
855
  msgstr ""
856
 
857
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
858
- msgid "No Connect button in register form"
 
859
  msgstr ""
860
 
861
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
862
- msgid "Connect button before register form"
863
  msgstr ""
864
 
865
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
866
- msgid "Connect button after register form"
867
  msgstr ""
868
 
869
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
870
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
871
- msgid "WooCommerce billing form"
872
  msgstr ""
873
 
874
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
875
- msgid "No Connect button in billing form"
 
 
876
  msgstr ""
877
 
878
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
879
- msgid "Connect button before billing form"
880
  msgstr ""
881
 
882
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
883
- msgid "Connect button after billing form"
884
  msgstr ""
885
 
886
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
887
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
888
- msgid "WooCommerce account details"
889
  msgstr ""
890
 
891
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
892
- msgid "Link buttons before account details"
893
  msgstr ""
894
 
895
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
896
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
897
- msgid "WooCommerce button style"
898
  msgstr ""
899
 
900
- #: nextend-facebook-connect/includes/avatar.php:45
901
- msgid "Avatar"
902
  msgstr ""
903
 
904
- #: nextend-facebook-connect/includes/avatar.php:46
905
- msgid "Manage Avatar"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
906
  msgstr ""
907
 
908
  #: nextend-facebook-connect/includes/avatar.php:47
 
 
 
 
909
  #, php-format
910
  msgid "Avatar <span class=\"count\">(%s)</span>"
911
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
912
  msgstr[0] ""
913
  msgstr[1] ""
914
 
915
- #: nextend-facebook-connect/includes/provider-admin.php:188
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
916
  msgid "Your configuration needs to be verified"
917
  msgstr ""
918
 
919
- #: nextend-facebook-connect/includes/provider-admin.php:189
920
  msgid ""
921
  "Before you can start letting your users register with your app it needs to "
922
  "be tested. This test makes sure that no users will have troubles with the "
@@ -925,86 +1328,98 @@ msgid ""
925
  "are fine."
926
  msgstr ""
927
 
928
- #: nextend-facebook-connect/includes/provider-admin.php:195
929
  msgid "Please save your changes to verify settings."
930
  msgstr ""
931
 
932
- #: nextend-facebook-connect/includes/provider-admin.php:203
933
  msgid "Works Fine"
934
  msgstr ""
935
 
936
- #: nextend-facebook-connect/includes/provider-admin.php:217
937
  #, php-format
938
  msgid ""
939
  "This provider is currently disabled, which means that users can’t register "
940
  "or login via their %s account."
941
  msgstr ""
942
 
943
- #: nextend-facebook-connect/includes/provider-admin.php:220
944
  #, php-format
945
  msgid ""
946
  "This provider works fine, but you can test it again. If you don’t want to "
947
  "let users register or login with %s anymore you can disable it."
948
  msgstr ""
949
 
950
- #: nextend-facebook-connect/includes/provider-admin.php:223
951
  #, php-format
952
  msgid ""
953
  "This provider is currently enabled, which means that users can register or "
954
  "login via their %s account."
955
  msgstr ""
956
 
957
- #: nextend-facebook-connect/includes/provider-admin.php:231
958
  msgid "Verify Settings Again"
959
  msgstr ""
960
 
961
- #: nextend-facebook-connect/includes/provider-admin.php:232
962
  msgid "Please save your changes before verifying settings."
963
  msgstr ""
964
 
965
- #: nextend-facebook-connect/includes/provider.php:320
966
- #: nextend-facebook-connect/includes/provider.php:618
967
- #: nextend-facebook-connect/includes/provider.php:629
968
  msgid "Authentication successful"
969
  msgstr ""
970
 
971
- #: nextend-facebook-connect/includes/provider.php:558
972
- #: nextend-facebook-connect/includes/user.php:102
973
  msgid "Authentication error"
974
  msgstr ""
975
 
976
- #: nextend-facebook-connect/includes/provider.php:573
977
  msgid "Unlink successful."
978
  msgstr ""
979
 
980
- #: nextend-facebook-connect/includes/provider.php:758
981
- #: nextend-facebook-connect/includes/provider.php:765
982
  msgid "The test was successful"
983
  msgstr ""
984
 
985
- #: nextend-facebook-connect/includes/provider.php:811
986
  msgid "Authentication failed"
987
  msgstr ""
988
 
989
- #: nextend-facebook-connect/includes/user.php:66
 
 
 
 
 
 
 
 
990
  #, php-format
991
  msgid ""
992
  "Your %1$s account is successfully linked with your account. Now you can sign "
993
  "in with %2$s easily."
994
  msgstr ""
995
 
996
- #: nextend-facebook-connect/includes/user.php:69
997
  #, php-format
998
  msgid ""
999
  "You have already linked a(n) %s account. Please unlink the current and then "
1000
  "you can link other %s account."
1001
  msgstr ""
1002
 
1003
- #: nextend-facebook-connect/includes/user.php:74
1004
  #, php-format
1005
  msgid "This %s account is already linked to other user."
1006
  msgstr ""
1007
 
 
 
 
 
1008
  #. translators: %2$s: PHP version
1009
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1010
  #, php-format
@@ -1019,66 +1434,50 @@ msgid ""
1019
  "version, the plugin is currently NOT ACTIVE."
1020
  msgstr ""
1021
 
1022
- #: nextend-facebook-connect/nextend-social-login.php:25
1023
- #: nextend-facebook-connect/nextend-social-login.php:33
1024
  #, php-format
1025
  msgid "Please update %1$s to version %2$s or newer."
1026
  msgstr ""
1027
 
1028
- #: nextend-facebook-connect/nextend-social-login.php:25
1029
- #: nextend-facebook-connect/nextend-social-login.php:33
1030
  msgid "Update now!"
1031
  msgstr ""
1032
 
1033
- #: nextend-facebook-connect/nextend-social-login.php:379
 
 
 
 
 
1034
  #, php-format
1035
  msgid ""
1036
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1037
  "Connect as it is not needed anymore."
1038
  msgstr ""
1039
 
1040
- #: nextend-facebook-connect/nextend-social-login.php:390
1041
  #, php-format
1042
  msgid ""
1043
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1044
  "Connect as it is not needed anymore."
1045
  msgstr ""
1046
 
1047
- #: nextend-facebook-connect/nextend-social-login.php:507
1048
- msgid "You have logged in successfully."
1049
- msgstr ""
1050
-
1051
- #: nextend-facebook-connect/nextend-social-login.php:631
1052
- #: nextend-facebook-connect/nextend-social-login.php:919
1053
  msgid "Social Login"
1054
  msgstr ""
1055
 
1056
- #: nextend-facebook-connect/nextend-social-login.php:903
1057
  msgid "Social Accounts"
1058
  msgstr ""
1059
 
1060
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1061
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1062
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1063
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1064
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1065
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1066
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1067
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:21
1068
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1069
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1070
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1071
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
1072
- #, php-format
1073
- msgid "Navigate to %s"
1074
- msgstr ""
1075
-
1076
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1077
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
1078
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1079
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1080
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1081
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1082
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1083
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1084
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
@@ -1097,14 +1496,14 @@ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1097
  msgstr ""
1098
 
1099
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1100
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1101
  #, php-format
1102
  msgid ""
1103
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1104
  msgstr ""
1105
 
1106
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1107
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1108
  msgid "Click on \"Save Changes\""
1109
  msgstr ""
1110
 
@@ -1123,7 +1522,7 @@ msgstr ""
1123
  msgid "How to get SSL for my WordPress site?"
1124
  msgstr ""
1125
 
1126
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:16
1127
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1128
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1129
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
@@ -1137,93 +1536,97 @@ msgid ""
1137
  "%1$s App."
1138
  msgstr ""
1139
 
1140
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:18
1141
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1142
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1143
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:18
1144
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
 
1145
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1146
  #, php-format
1147
  msgctxt "App creation"
1148
  msgid "Create %s"
1149
  msgstr ""
1150
 
1151
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1152
  msgid "Click on the \"Add a New App\" button"
1153
  msgstr ""
1154
 
1155
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1156
  msgid "Fill \"Display Name\" and \"Contact Email\""
1157
  msgstr ""
1158
 
1159
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1160
  msgid "Click on blue \"Create App ID\" button"
1161
  msgstr ""
1162
 
1163
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1164
  msgid ""
1165
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1166
  "button"
1167
  msgstr ""
1168
 
1169
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1170
  msgid "Choose Web"
1171
  msgstr ""
1172
 
1173
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1174
  #, php-format
1175
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1176
  msgstr ""
1177
 
1178
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1179
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
 
1180
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
 
1181
  msgid "Click on \"Save\""
1182
  msgstr ""
1183
 
1184
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1185
  msgid "In the left sidebar, click on \"Facebook Login\""
1186
  msgstr ""
1187
 
1188
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1189
  msgid "In the top of the left sidebar, click on \"Settings\""
1190
  msgstr ""
1191
 
1192
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1193
  msgid ""
1194
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1195
  "click on the \"Show\" button. These will be needed in plugin's settings."
1196
  msgstr ""
1197
 
1198
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1199
  msgid "Enter your domain name to the App Domains"
1200
  msgstr ""
1201
 
1202
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1203
  msgid ""
1204
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1205
  "accessible privacy policy that explains what data you are collecting and how "
1206
  "you will use that data."
1207
  msgstr ""
1208
 
1209
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1210
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1211
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1212
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1213
  msgid "Save your changes."
1214
  msgstr ""
1215
 
1216
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1217
  msgid ""
1218
  "Your application is currently private, which means that only you can log in "
1219
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1220
  msgstr ""
1221
 
1222
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:42
1223
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
1224
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
1225
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
1226
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
 
1227
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1228
  #, php-format
1229
  msgid "I am done setting up my %s"
@@ -1360,6 +1763,8 @@ msgstr ""
1360
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1361
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1362
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
 
 
1363
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1364
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1365
  msgid "Required"
@@ -1370,6 +1775,7 @@ msgstr ""
1370
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1371
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1372
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
 
1373
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1374
  #, php-format
1375
  msgid ""
@@ -1393,17 +1799,40 @@ msgstr ""
1393
  msgid "Unlink account from <b>Facebook</b>"
1394
  msgstr ""
1395
 
1396
- #: nextend-facebook-connect/providers/facebook/facebook.php:151
1397
- #: nextend-facebook-connect/providers/google/google.php:71
1398
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
1399
- #: nextend-social-login-pro/providers/amazon/amazon.php:71
1400
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1401
- #: nextend-social-login-pro/providers/vk/vk.php:68
 
1402
  #, php-format
1403
  msgid ""
1404
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1405
  msgstr ""
1406
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1407
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1408
  msgid "Click on the \"Credentials\" in the left hand menu"
1409
  msgstr ""
@@ -1414,7 +1843,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
1414
  msgstr ""
1415
 
1416
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1417
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1418
  #, php-format
1419
  msgid ""
1420
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
@@ -1423,49 +1852,53 @@ msgstr ""
1423
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1424
  msgid ""
1425
  "If you don't have a project yet, you'll need to create one. You can do this "
1426
- "by clicking on the blue \"Create project\" button on the right side"
 
 
1427
  msgstr ""
1428
 
1429
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1430
- msgid "Name your project and then click on the Create button"
 
1431
  msgstr ""
1432
 
1433
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
1434
- msgid "Once you have a project, you'll end up in the dashboard."
1435
  msgstr ""
1436
 
1437
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1438
- msgid ""
1439
- "Click on the \"Credentials\" in the left hand menu to create new API "
1440
- "credentials"
1441
  msgstr ""
1442
 
1443
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1444
  msgid ""
1445
- "Go to the OAuth consent screen tab and enter a product name and provide the "
1446
- "Privacy Policy URL, then click on the save button."
1447
  msgstr ""
1448
 
1449
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1450
- msgid ""
1451
- "Go back to the Credentials tab and locate the small box at the middle. Click "
1452
- "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
1453
- "from the dropdown list."
1454
  msgstr ""
1455
 
1456
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1457
- msgid "Your application type should be \"Web application\""
 
 
1458
  msgstr ""
1459
 
1460
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
 
 
 
 
1461
  msgid "Name your application"
1462
  msgstr ""
1463
 
1464
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1465
  msgid "Click on the Create button"
1466
  msgstr ""
1467
 
1468
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1469
  msgid ""
1470
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1471
  "the Credentials in the left hand menu and select your app by clicking on its "
@@ -1488,6 +1921,7 @@ msgstr ""
1488
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
1489
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1490
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
 
1491
  msgid "Client ID"
1492
  msgstr ""
1493
 
@@ -1497,61 +1931,90 @@ msgstr ""
1497
  msgid "Client Secret"
1498
  msgstr ""
1499
 
1500
- #: nextend-facebook-connect/providers/google/google.php:38
1501
  msgid "Continue with <b>Google</b>"
1502
  msgstr ""
1503
 
1504
- #: nextend-facebook-connect/providers/google/google.php:39
1505
  msgid "Link account with <b>Google</b>"
1506
  msgstr ""
1507
 
1508
- #: nextend-facebook-connect/providers/google/google.php:40
1509
  msgid "Unlink account from <b>Google</b>"
1510
  msgstr ""
1511
 
 
 
 
 
 
1512
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1513
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1514
- msgid "Click on the App"
1515
  msgstr ""
1516
 
1517
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1518
- msgid "Click on the \"Settings\" tab"
 
 
1519
  msgstr ""
1520
 
1521
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
1522
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1523
  #, php-format
1524
- msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
1525
  msgstr ""
1526
 
1527
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1528
- msgid "Click on \"Update Settings\""
 
1529
  msgstr ""
1530
 
1531
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1532
- msgid "Click on the \"Create New App\" button"
 
 
1533
  msgstr ""
1534
 
1535
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1536
  #, php-format
1537
  msgid ""
1538
- "Fill the name and description fields. Then enter your site's URL to the "
1539
- "Website field: <b>%s</b>"
 
 
 
 
 
 
 
1540
  msgstr ""
1541
 
1542
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1543
- msgid "Accept the Twitter Developer Agreement"
1544
  msgstr ""
1545
 
1546
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
1547
  msgid ""
1548
- "Create your application by clicking on the Create your Twitter application "
1549
- "button"
1550
  msgstr ""
1551
 
1552
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
 
 
 
 
 
 
 
 
1553
  msgid ""
1554
- "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
 
 
 
 
 
1555
  msgstr ""
1556
 
1557
  #: nextend-facebook-connect/providers/twitter/admin/import.php:9
@@ -1563,22 +2026,30 @@ msgid "Go to the Settings tab."
1563
  msgstr ""
1564
 
1565
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
1566
- msgid "Consumer Key"
1567
  msgstr ""
1568
 
1569
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
1570
- msgid "Consumer Secret"
 
 
 
 
1571
  msgstr ""
1572
 
1573
- #: nextend-facebook-connect/providers/twitter/twitter.php:38
 
 
 
 
1574
  msgid "Continue with <b>Twitter</b>"
1575
  msgstr ""
1576
 
1577
- #: nextend-facebook-connect/providers/twitter/twitter.php:39
1578
  msgid "Link account with <b>Twitter</b>"
1579
  msgstr ""
1580
 
1581
- #: nextend-facebook-connect/providers/twitter/twitter.php:40
1582
  msgid "Unlink account from <b>Twitter</b>"
1583
  msgstr ""
1584
 
@@ -1603,97 +2074,89 @@ msgstr ""
1603
  msgid "Show unlink buttons"
1604
  msgstr ""
1605
 
1606
- #: nextend-social-login-pro/class-provider-extension.php:114
1607
  msgid "Social login is not allowed with this role!"
1608
  msgstr ""
1609
 
1610
- #: nextend-social-login-pro/class-provider-extension.php:209
1611
  #: nextend-social-login-pro/class-provider-extension.php:211
1612
- #: nextend-social-login-pro/class-provider-extension.php:216
1613
- #: nextend-social-login-pro/class-provider-extension.php:222
1614
- #: nextend-social-login-pro/class-provider-extension.php:235
1615
- #: nextend-social-login-pro/class-provider-extension.php:237
1616
- #: nextend-social-login-pro/class-provider-extension.php:240
 
1617
  msgid "ERROR"
1618
  msgstr ""
1619
 
1620
- #: nextend-social-login-pro/class-provider-extension.php:209
1621
  msgid "Please enter a username."
1622
  msgstr ""
1623
 
1624
- #: nextend-social-login-pro/class-provider-extension.php:211
1625
  msgid ""
1626
  "This username is invalid because it uses illegal characters. Please enter a "
1627
  "valid username."
1628
  msgstr ""
1629
 
1630
- #: nextend-social-login-pro/class-provider-extension.php:216
1631
  msgid "This username is already registered. Please choose another one."
1632
  msgstr ""
1633
 
1634
- #: nextend-social-login-pro/class-provider-extension.php:222
1635
  msgid "Sorry, that username is not allowed."
1636
  msgstr ""
1637
 
1638
- #: nextend-social-login-pro/class-provider-extension.php:235
 
 
 
 
1639
  msgid "Please enter an email address."
1640
  msgstr ""
1641
 
1642
- #: nextend-social-login-pro/class-provider-extension.php:237
1643
  msgid "The email address isn&#8217;t correct."
1644
  msgstr ""
1645
 
1646
- #: nextend-social-login-pro/class-provider-extension.php:240
1647
  msgid "This email is already registered, please choose another one."
1648
  msgstr ""
1649
 
1650
- #: nextend-social-login-pro/class-provider-extension.php:255
 
 
 
 
1651
  msgid "<strong>ERROR</strong>: Please enter a password."
1652
  msgstr ""
1653
 
1654
- #: nextend-social-login-pro/class-provider-extension.php:260
1655
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1656
  msgstr ""
1657
 
1658
- #: nextend-social-login-pro/class-provider-extension.php:265
1659
  msgid ""
1660
  "<strong>ERROR</strong>: Please enter the same password in both password "
1661
  "fields."
1662
  msgstr ""
1663
 
1664
- #: nextend-social-login-pro/class-provider-extension.php:328
1665
- msgid "Register For This Site!"
1666
- msgstr ""
1667
-
1668
- #: nextend-social-login-pro/class-provider-extension.php:355
1669
- msgid "Username"
1670
- msgstr ""
1671
-
1672
- #: nextend-social-login-pro/class-provider-extension.php:362
1673
- msgid "Email"
1674
- msgstr ""
1675
-
1676
- #: nextend-social-login-pro/class-provider-extension.php:367
1677
- msgid "Registration confirmation will be emailed to you."
1678
- msgstr ""
1679
-
1680
- #: nextend-social-login-pro/class-provider-extension.php:375
1681
  msgid "Password"
1682
  msgstr ""
1683
 
1684
- #: nextend-social-login-pro/class-provider-extension.php:385
1685
  msgid "Strength indicator"
1686
  msgstr ""
1687
 
1688
- #: nextend-social-login-pro/class-provider-extension.php:390
1689
  msgid "Confirm use of weak password"
1690
  msgstr ""
1691
 
1692
- #: nextend-social-login-pro/class-provider-extension.php:396
1693
  msgid "Confirm password"
1694
  msgstr ""
1695
 
1696
- #: nextend-social-login-pro/class-provider-extension.php:506
1697
  #, php-format
1698
  msgid ""
1699
  "This email is already registered, please login in to your account to link "
@@ -1718,30 +2181,31 @@ msgid "Install now!"
1718
  msgstr ""
1719
 
1720
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
1721
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1722
  #, php-format
1723
  msgid "Visit %s"
1724
  msgstr ""
1725
 
1726
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
1727
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
1728
  msgid ""
1729
  "On the right side, under \"Manage\", hover over the gear icon and select "
1730
  "\"Web Settings\" option."
1731
  msgstr ""
1732
 
1733
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
1734
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
1735
  msgid "Click \"Edit\"."
1736
  msgstr ""
1737
 
1738
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
1739
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
1740
  #, php-format
1741
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1742
  msgstr ""
1743
 
1744
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:16
 
1745
  #, php-format
1746
  msgid ""
1747
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -1751,44 +2215,47 @@ msgid ""
1751
  "%1$s App."
1752
  msgstr ""
1753
 
1754
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
 
 
1755
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
1756
  #, php-format
1757
  msgid "Log in with your %s credentials if you are not logged in."
1758
  msgstr ""
1759
 
1760
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
1761
  msgid ""
1762
  "If you don't have a Security Profile yet, you'll need to create one. You can "
1763
  "do this by clicking on the orange \"Create a New Security Profile\" button "
1764
  "on the left side."
1765
  msgstr ""
1766
 
1767
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
1768
  msgid ""
1769
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
1770
  "\"Consent Privacy Notice URL\"."
1771
  msgstr ""
1772
 
1773
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1774
  msgid "Once you filled all the required fields, click \"Save\"."
1775
  msgstr ""
1776
 
1777
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
1778
  #, php-format
1779
  msgid ""
1780
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
1781
  msgstr ""
1782
 
1783
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
 
1784
  msgid "When all fields are filled, click \"Save\"."
1785
  msgstr ""
1786
 
1787
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
1788
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
1789
  msgstr ""
1790
 
1791
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
1792
  msgid ""
1793
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
1794
  "page."
@@ -1806,6 +2273,10 @@ msgstr ""
1806
  msgid "Unlink account from <b>Amazon</b>"
1807
  msgstr ""
1808
 
 
 
 
 
1809
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
1810
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
1811
  #, php-format
@@ -1846,18 +2317,97 @@ msgid ""
1846
  "Application Permissions"
1847
  msgstr ""
1848
 
1849
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
1850
  msgid "Continue with <b>LinkedIn</b>"
1851
  msgstr ""
1852
 
1853
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
1854
  msgid "Link account with <b>LinkedIn</b>"
1855
  msgstr ""
1856
 
1857
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
1858
  msgid "Unlink account from <b>LinkedIn</b>"
1859
  msgstr ""
1860
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1861
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
1862
  msgid "Click on the Manage button at the App"
1863
  msgstr ""
@@ -1945,20 +2495,33 @@ msgstr ""
1945
  msgid "Unlink account from <b>VK</b>"
1946
  msgstr ""
1947
 
1948
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:8
1949
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:8
1950
- #: nextend-social-login-pro/template-parts/login/above-separator.php:10
1951
- #: nextend-social-login-pro/template-parts/login/below-separator.php:14
1952
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:8
1953
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:8
1954
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:8
1955
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:8
1956
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:8
1957
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:8
 
 
 
 
 
 
 
 
 
 
 
 
1958
  msgid "OR"
1959
  msgstr ""
1960
 
1961
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
 
1962
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
1963
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
1964
  msgid "Social accounts"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2018-09-04 15:27+0200\n"
5
+ "PO-Revision-Date: 2018-09-04 15:27+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: en\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.1.1\n"
13
  "X-Poedit-Basepath: ../..\n"
14
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
  "X-Poedit-SourceCharset: UTF-8\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:32
25
+ msgid "What personal data we collect and why we collect it"
26
+ msgstr ""
27
+
28
+ #: nextend-facebook-connect/NSL/GDPR.php:33
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
+
38
+ #: nextend-facebook-connect/NSL/GDPR.php:35
39
+ msgid "Who we share your data with"
40
+ msgstr ""
41
+
42
+ #: nextend-facebook-connect/NSL/GDPR.php:36
43
+ #, php-format
44
+ msgid ""
45
+ "%1$s stores the personal data on your site and does not share it with anyone "
46
+ "except the access token which used for the authenticated communication with "
47
+ "the social providers."
48
+ msgstr ""
49
+
50
+ #: nextend-facebook-connect/NSL/GDPR.php:38
51
+ msgid "Does the plugin share personal data with third parties"
52
+ msgstr ""
53
+
54
+ #: nextend-facebook-connect/NSL/GDPR.php:39
55
+ #, php-format
56
+ msgid ""
57
+ "%1$s use the access token what the social provider gave to communicate with "
58
+ "the providers to verify account and securely access personal data."
59
+ msgstr ""
60
+
61
+ #: nextend-facebook-connect/NSL/GDPR.php:41
62
+ msgid "How long we retain your data"
63
+ msgstr ""
64
+
65
+ #: nextend-facebook-connect/NSL/GDPR.php:42
66
+ #, php-format
67
+ msgid ""
68
+ "%1$s removes the collected personal data when the user deleted from "
69
+ "WordPress."
70
+ msgstr ""
71
+
72
+ #: nextend-facebook-connect/NSL/GDPR.php:44
73
+ msgid "Does the plugin use personal data collected by others?"
74
+ msgstr ""
75
+
76
+ #: nextend-facebook-connect/NSL/GDPR.php:45
77
+ #, php-format
78
+ msgid ""
79
+ "%1$s use the personal data collected by the social providers to create "
80
+ "account on your site when the visitor authorize it."
81
+ msgstr ""
82
+
83
+ #: nextend-facebook-connect/NSL/GDPR.php:47
84
+ msgid "Does the plugin store things in the browser?"
85
+ msgstr ""
86
+
87
+ #: nextend-facebook-connect/NSL/GDPR.php:48
88
+ #, php-format
89
+ msgid ""
90
+ "Yes, %1$s must create a cookie for visitors who use the social login "
91
+ "authorization flow. This cookie required for every provider to secure the "
92
+ "communication and to redirect the user back to the last location."
93
+ msgstr ""
94
+
95
+ #: nextend-facebook-connect/NSL/GDPR.php:50
96
+ msgid "Does the plugin collect telemetry data, directly or indirectly?"
97
+ msgstr ""
98
+
99
+ #: nextend-facebook-connect/NSL/GDPR.php:51
100
+ #: nextend-facebook-connect/NSL/GDPR.php:54
101
+ msgid "No"
102
+ msgstr ""
103
+
104
+ #: nextend-facebook-connect/NSL/GDPR.php:53
105
+ msgid ""
106
+ "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
107
+ "third party?"
108
+ msgstr ""
109
+
110
+ #: nextend-facebook-connect/NSL/GDPR.php:97
111
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:65
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:277
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
+ #: nextend-facebook-connect/admin/admin.php:244
130
  msgid "The authorization was successful"
131
  msgstr ""
132
 
133
+ #: nextend-facebook-connect/admin/admin.php:255
134
  msgid "Deauthorize completed."
135
  msgstr ""
136
 
137
+ #: nextend-facebook-connect/admin/admin.php:429
138
  #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
  #: nextend-facebook-connect/admin/templates/providers.php:84
140
  #: nextend-facebook-connect/admin/templates/providers.php:96
141
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
142
  msgid "Settings"
143
  msgstr ""
144
 
145
+ #: nextend-facebook-connect/admin/admin.php:503
146
+ #: nextend-facebook-connect/includes/oauth2.php:139
147
+ #: nextend-facebook-connect/includes/oauth2.php:284
148
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
149
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:163
150
  #, php-format
151
  msgid "Unexpected response: %s"
152
  msgstr ""
153
 
154
+ #: nextend-facebook-connect/admin/admin.php:561
155
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
156
  #, php-format
157
  msgid ""
159
  "URIs in the related social applications."
160
  msgstr ""
161
 
162
+ #: nextend-facebook-connect/admin/admin.php:562
163
  msgid "Fix Error"
164
  msgstr ""
165
 
166
+ #: nextend-facebook-connect/admin/admin.php:562
167
  msgid "Oauth Redirect URI"
168
  msgstr ""
169
 
170
+ #: nextend-facebook-connect/admin/admin.php:572
171
  #, php-format
172
  msgid ""
173
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
174
  "display Social Login buttons in %2$s login form!"
175
  msgstr ""
176
 
177
+ #: nextend-facebook-connect/admin/admin.php:573
178
  msgid "Dismiss and check Pro Addon"
179
  msgstr ""
180
 
181
+ #: nextend-facebook-connect/admin/admin.php:573
182
  msgid "Dismiss"
183
  msgstr ""
184
 
185
+ #: nextend-facebook-connect/admin/admin.php:579
186
+ #, php-format
187
+ msgid ""
188
+ "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
189
+ "register flow</b>\" and \"<b>OAuth redirect uri proxy page</b>\" in %1$s to "
190
+ "work properly."
191
+ msgstr ""
192
+
193
+ #: nextend-facebook-connect/admin/admin.php:580
194
+ msgid "Fix now"
195
+ msgstr ""
196
+
197
+ #: nextend-facebook-connect/admin/admin.php:604
198
+ msgid "Authorize your Pro Addon"
199
+ msgstr ""
200
+
201
+ #: nextend-facebook-connect/admin/admin.php:605
202
+ msgid ""
203
+ "To be able to use the Pro features, you need to authorize Nextend Social "
204
+ "Connect Pro Addon. You can do this by clicking on the Authorize button below "
205
+ "then select the related purchase."
206
+ msgstr ""
207
+
208
+ #: nextend-facebook-connect/admin/admin.php:610
209
+ msgid "Authorize"
210
+ msgstr ""
211
+
212
+ #: nextend-facebook-connect/admin/admin.php:667
213
+ msgid "License key"
214
+ msgstr ""
215
+
216
+ #: nextend-facebook-connect/admin/admin.php:682
217
+ msgid "OAuth proxy page"
218
+ msgstr ""
219
+
220
+ #: nextend-facebook-connect/admin/admin.php:685
221
+ msgid "Register flow page"
222
+ msgstr ""
223
+
224
+ #: nextend-facebook-connect/admin/interim.php:12
225
+ #: nextend-facebook-connect/admin/interim.php:23
226
+ msgid "You have logged in successfully."
227
+ msgstr ""
228
+
229
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:81
230
  msgid "Login label"
231
  msgstr ""
232
 
233
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
234
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:97
235
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:108
236
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
237
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
238
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
239
  msgid "Reset to default"
240
  msgstr ""
241
 
242
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
243
  msgid "Link label"
244
  msgstr ""
245
 
246
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:103
247
  msgid "Unlink label"
248
  msgstr ""
249
 
250
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
251
  msgid "Default button"
252
  msgstr ""
253
 
254
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:130
255
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
256
  msgid "Use custom button"
257
  msgstr ""
258
 
259
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
260
  #, php-format
261
  msgid "Use the %s in your custom button's code to make the label show up."
262
  msgstr ""
263
 
264
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:145
265
  msgid "Icon button"
266
  msgstr ""
267
 
268
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:176
269
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
270
+ #: nextend-facebook-connect/admin/templates-provider/sync-data.php:93
271
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
272
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:54
273
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
274
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:79
275
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
276
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
277
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:153
278
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:108
279
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:168
280
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:149
281
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:232
282
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:55
283
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
284
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
285
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
286
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
287
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
288
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
289
  msgid "Save Changes"
290
  msgstr ""
291
 
292
  #: nextend-facebook-connect/admin/templates-provider/menu.php:13
293
  #: nextend-facebook-connect/admin/templates/providers.php:64
294
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:15
295
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
296
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
297
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
298
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
299
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
300
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
301
  msgid "Getting Started"
302
  msgstr ""
326
  msgstr ""
327
 
328
  #: nextend-facebook-connect/admin/templates-provider/settings-other.php:25
329
+ msgid "Used when username is invalid or not stored"
330
+ msgstr ""
331
+
332
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:29
333
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
334
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
335
+ msgid "Terms and conditions"
336
+ msgstr ""
337
+
338
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:40
339
+ #, php-format
340
+ msgid "Override global \"%1$s\""
341
  msgstr ""
342
 
343
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
390
 
391
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
392
  #: nextend-facebook-connect/admin/templates/providers.php:39
393
+ #: nextend-facebook-connect/admin/templates/settings/general.php:53
394
+ #: nextend-facebook-connect/admin/templates/settings/general.php:189
395
+ #: nextend-facebook-connect/includes/provider-admin.php:215
396
  msgid "Disabled"
397
  msgstr ""
398
 
410
 
411
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
412
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
413
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:38
414
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
415
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
416
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:24
417
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
418
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
419
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
420
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
421
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
422
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
423
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
424
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
425
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
426
  #: nextend-facebook-connect/widget.php:40
427
  msgid "Default"
428
  msgstr ""
429
 
430
  #: nextend-facebook-connect/admin/templates-provider/sync-data.php:39
431
+ #: nextend-facebook-connect/includes/userData.php:172
432
  msgid "Register"
433
  msgstr ""
434
 
444
  msgid "Store in meta key"
445
  msgstr ""
446
 
 
 
 
 
 
447
  #: nextend-facebook-connect/admin/templates-provider/usage.php:9
448
  msgid "Shortcode"
449
  msgstr ""
464
  msgid "Image url"
465
  msgstr ""
466
 
467
+ #: nextend-facebook-connect/admin/templates/debug.php:7
468
+ #: nextend-facebook-connect/admin/templates/header.php:20
469
+ msgid "Debug"
470
+ msgstr ""
471
+
472
+ #: nextend-facebook-connect/admin/templates/debug.php:40
473
+ msgid "Test network connection with providers"
474
+ msgstr ""
475
+
476
+ #: nextend-facebook-connect/admin/templates/debug.php:47
477
+ msgid "You don't have cURL support, please enable it in php.ini!"
478
+ msgstr ""
479
+
480
+ #: nextend-facebook-connect/admin/templates/debug.php:57
481
+ #, php-format
482
+ msgid "Test %1$s connection"
483
+ msgstr ""
484
+
485
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:7
486
+ msgid "Pro Addon - Authorized domain has been changed"
487
+ msgstr ""
488
+
489
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:15
490
+ msgid ""
491
+ "<b>You must authorize your new domain</b> to receive <b>updates and support</"
492
+ "b> in the future."
493
+ msgstr ""
494
+
495
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:21
496
+ msgid "You can authorize your new domain by completing the following steps:"
497
+ msgstr ""
498
+
499
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:25
500
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
501
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
502
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
503
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
504
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
505
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
506
+ #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
507
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
508
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
509
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
510
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
511
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
512
+ #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
513
+ #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
514
+ #, php-format
515
+ msgid "Navigate to %s"
516
+ msgstr ""
517
+
518
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:26
519
+ msgid "Log in with your credentials if you are not logged in"
520
+ msgstr ""
521
+
522
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:27
523
+ #, php-format
524
+ msgid "Find your old domain name: <b>%s</b>"
525
+ msgstr ""
526
+
527
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:28
528
+ #, php-format
529
+ msgid "Click on the %1$s next to your domain name."
530
+ msgstr ""
531
+
532
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:29
533
+ #, php-format
534
+ msgid "Authorize your %1$s by clicking on the following button."
535
+ msgstr ""
536
+
537
+ #: nextend-facebook-connect/admin/templates/domain-changed.php:34
538
+ msgid "The authorized domain name of your site is fine!"
539
+ msgstr ""
540
+
541
  #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
542
  msgid "Fix Oauth Redirect URIs"
543
  msgstr ""
550
  msgid "Got it"
551
  msgstr ""
552
 
553
+ #: nextend-facebook-connect/admin/templates/global-settings.php:28
554
  #: nextend-facebook-connect/admin/templates/menu.php:8
555
  msgid "Global Settings"
556
  msgstr ""
557
 
558
+ #: nextend-facebook-connect/admin/templates/global-settings.php:31
559
  msgid "General"
560
  msgstr ""
561
 
562
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
563
+ msgid "Privacy"
564
+ msgstr ""
565
+
566
+ #: nextend-facebook-connect/admin/templates/global-settings.php:35
567
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
568
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
569
  msgid "Login Form"
570
  msgstr ""
571
 
572
+ #: nextend-facebook-connect/admin/templates/global-settings.php:39
573
  msgid "Comment"
574
  msgstr ""
575
 
581
  msgid "Support"
582
  msgstr ""
583
 
584
+ #: nextend-facebook-connect/admin/templates/header.php:23
585
  #: nextend-facebook-connect/admin/templates/menu.php:12
586
  msgid "Pro Addon"
587
  msgstr ""
613
  msgstr ""
614
 
615
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
616
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
617
  msgid "Deauthorize Pro Addon"
618
  msgstr ""
619
 
641
  msgid "Activating..."
642
  msgstr ""
643
 
644
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:118
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645
  msgid "Pro Addon is installed and activated"
646
  msgstr ""
647
 
648
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:120
649
  msgid ""
650
  "You installed and activated the Pro Addon. If you don’t want to use it "
651
  "anymore, you can deauthorize using the button below."
700
  msgstr ""
701
 
702
  #: nextend-facebook-connect/admin/templates/providers.php:42
703
+ #: nextend-facebook-connect/admin/templates/settings/general.php:56
704
+ #: nextend-facebook-connect/admin/templates/settings/general.php:192
705
+ #: nextend-facebook-connect/includes/provider-admin.php:218
706
  msgid "Enabled"
707
  msgstr ""
708
 
715
  msgstr ""
716
 
717
  #: nextend-facebook-connect/admin/templates/providers.php:72
718
+ #: nextend-facebook-connect/includes/provider-admin.php:202
719
  msgid "Verify Settings"
720
  msgstr ""
721
 
722
  #: nextend-facebook-connect/admin/templates/providers.php:80
723
+ #: nextend-facebook-connect/includes/provider-admin.php:247
724
  msgid "Enable"
725
  msgstr ""
726
 
727
  #: nextend-facebook-connect/admin/templates/providers.php:92
728
+ #: nextend-facebook-connect/includes/provider-admin.php:255
729
  msgid "Disable"
730
  msgstr ""
731
 
733
  msgid "Import"
734
  msgstr ""
735
 
736
+ #: nextend-facebook-connect/admin/templates/providers.php:124
737
+ msgid "Stay Updated"
738
+ msgstr ""
739
+
740
+ #: nextend-facebook-connect/admin/templates/providers.php:125
741
+ msgid ""
742
+ "Receive info on the latest plugin updates and social provider related "
743
+ "changes."
744
+ msgstr ""
745
+
746
+ #: nextend-facebook-connect/admin/templates/providers.php:126
747
+ msgid "Enter your email address"
748
+ msgstr ""
749
+
750
+ #: nextend-facebook-connect/admin/templates/providers.php:130
751
+ msgid "Subscribe"
752
+ msgstr ""
753
+
754
+ #: nextend-facebook-connect/admin/templates/providers.php:146
755
  msgid "Saving..."
756
  msgstr ""
757
 
758
+ #: nextend-facebook-connect/admin/templates/providers.php:147
759
  msgid "Saving failed"
760
  msgstr ""
761
 
762
+ #: nextend-facebook-connect/admin/templates/providers.php:148
763
  msgid "Order Saved"
764
  msgstr ""
765
 
766
+ #: nextend-facebook-connect/admin/templates/providers.php:217
767
+ msgid "Successfully subscribed!"
768
+ msgstr ""
769
+
770
+ #: nextend-facebook-connect/admin/templates/providers.php:217
771
+ msgid ""
772
+ "We'll be bringing you all the latest news and updates about Social Login - "
773
+ "right to your inbox."
774
+ msgstr ""
775
+
776
+ #: nextend-facebook-connect/admin/templates/providers.php:224
777
+ msgid "The entered email address is invalid!"
778
+ msgstr ""
779
+
780
  #: nextend-facebook-connect/admin/templates/review.php:14
781
  msgid "Rate your experience!"
782
  msgstr ""
816
  msgstr ""
817
 
818
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
819
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:84
820
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:96
821
+ msgid "Register form"
822
  msgstr ""
823
 
824
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
832
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
833
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
834
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
835
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:78
836
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:144
837
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
838
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:93
839
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:159
840
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
841
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
842
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
843
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
844
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:163
845
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
846
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:218
847
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
848
  msgid "Action:"
849
  msgstr ""
850
 
857
  msgstr ""
858
 
859
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
860
+ msgid "Register button style"
861
  msgstr ""
862
 
863
  #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
864
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:44
865
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
866
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
867
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:30
868
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:96
869
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
870
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
871
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
872
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
873
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
874
  #: nextend-facebook-connect/widget.php:45
875
  msgid "Icon"
876
  msgstr ""
877
 
878
  #: nextend-facebook-connect/admin/templates/settings/comment.php:18
879
+ msgid "Login button"
 
880
  msgstr ""
881
 
882
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:23
883
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
884
  msgid "Show"
885
  msgstr ""
886
 
887
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:26
888
  msgid "Hide"
889
  msgstr ""
890
 
891
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
892
  #, php-format
893
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
894
  msgstr ""
895
 
896
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
897
  msgid "Discussion"
898
  msgstr ""
899
 
900
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
901
  msgid "Users must be registered and logged in to comment"
902
  msgstr ""
903
 
904
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:32
905
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
906
+ msgid "Button style"
907
  msgstr ""
908
 
909
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
931
  msgstr ""
932
 
933
  #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
 
934
  msgid "Registration notification sent to"
935
  msgstr ""
936
 
937
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:59
938
  msgid "WordPress default"
939
  msgstr ""
940
 
941
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:62
942
  msgid "Nobody"
943
  msgstr ""
944
 
945
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:68
 
 
 
 
946
  msgid "Admin"
947
  msgstr ""
948
 
949
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:71
950
  msgid "User and Admin"
951
  msgstr ""
952
 
953
  #: nextend-facebook-connect/admin/templates/settings/general.php:48
 
954
  msgid "Debug mode"
955
  msgstr ""
956
 
957
+ #: nextend-facebook-connect/admin/templates/settings/general.php:61
958
+ msgid "Page for register flow"
959
+ msgstr ""
960
+
961
+ #: nextend-facebook-connect/admin/templates/settings/general.php:65
962
+ #: nextend-facebook-connect/admin/templates/settings/general.php:76
963
+ msgid "None"
964
+ msgstr ""
965
+
966
+ #: nextend-facebook-connect/admin/templates/settings/general.php:68
967
+ #, php-format
968
+ msgid ""
969
+ "First create a new page for register flow and insert the following "
970
+ "shortcode: %1$s then select this page above"
971
+ msgstr ""
972
+
973
+ #: nextend-facebook-connect/admin/templates/settings/general.php:72
974
+ msgid "OAuth redirect uri proxy page"
975
  msgstr ""
976
 
977
  #: nextend-facebook-connect/admin/templates/settings/general.php:79
978
+ msgid ""
979
+ "If your wp-login.php is not available to handle the OAuth flow create a new "
980
+ "page and select it here. Otherwise don't select any page."
981
+ msgstr ""
982
+
983
+ #: nextend-facebook-connect/admin/templates/settings/general.php:85
984
+ msgid "Prevent external redirect overrides"
985
+ msgstr ""
986
+
987
+ #: nextend-facebook-connect/admin/templates/settings/general.php:91
988
+ msgid "Disable external redirects"
989
+ msgstr ""
990
+
991
+ #: nextend-facebook-connect/admin/templates/settings/general.php:98
992
  msgid "Default redirect url"
993
  msgstr ""
994
 
995
+ #: nextend-facebook-connect/admin/templates/settings/general.php:111
996
+ #: nextend-facebook-connect/admin/templates/settings/general.php:149
997
  msgid "for Login"
998
  msgstr ""
999
 
1000
+ #: nextend-facebook-connect/admin/templates/settings/general.php:126
1001
+ #: nextend-facebook-connect/admin/templates/settings/general.php:164
1002
  msgid "for Register"
1003
  msgstr ""
1004
 
1005
+ #: nextend-facebook-connect/admin/templates/settings/general.php:136
1006
  msgid "Fixed redirect url"
1007
  msgstr ""
1008
 
1009
+ #: nextend-facebook-connect/admin/templates/settings/general.php:173
1010
+ msgid "Blacklisted redirects"
1011
+ msgstr ""
1012
+
1013
+ #: nextend-facebook-connect/admin/templates/settings/general.php:179
1014
+ msgid "If you want to blacklist redirect url params. One pattern per line."
1015
+ msgstr ""
1016
+
1017
+ #: nextend-facebook-connect/admin/templates/settings/general.php:184
1018
+ msgid "Support login restrictions"
1019
+ msgstr ""
1020
+
1021
+ #: nextend-facebook-connect/admin/templates/settings/general.php:194
1022
+ #, php-format
1023
+ msgid "Please visit to our %1$s to check what plugins are supported!"
1024
+ msgstr ""
1025
+
1026
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
1027
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1028
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1029
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1030
  msgid "Login form button style"
1031
  msgstr ""
1032
 
1033
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
1034
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:37
1035
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:52
1036
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:64
1037
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
1038
  msgid "Login layout"
1039
  msgstr ""
1040
 
1041
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
1042
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
1043
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:43
1044
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:109
1045
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1046
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:124
1047
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1048
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:121
1049
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
1050
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
1051
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
1052
  msgid "Below"
1053
  msgstr ""
1054
 
1055
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
1056
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
1057
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:49
1058
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:115
1059
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1060
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
1061
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1062
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
1063
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1064
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1065
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:192
1066
  msgid "Below with separator"
1067
  msgstr ""
1068
 
1073
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
1074
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
1075
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:55
1076
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:121
1077
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1078
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1079
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1080
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1081
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1082
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1083
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:198
1084
  msgid "Above"
1085
  msgstr ""
1086
 
1087
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
1088
  #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
1089
  #: nextend-facebook-connect/admin/templates/settings/memberpress.php:61
1090
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:127
1091
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1092
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1093
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1094
  #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1095
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1096
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1097
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:204
1098
  msgid "Above with separator"
1099
  msgstr ""
1100
 
1124
  msgstr ""
1125
 
1126
  #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1127
+ #: nextend-facebook-connect/includes/userData.php:122
1128
  msgid "Registration Form"
1129
  msgstr ""
1130
 
1132
  msgid "Embedded login form"
1133
  msgstr ""
1134
 
1135
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:69
1136
+ msgid "Sign Up form"
1137
  msgstr ""
1138
 
1139
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:74
1140
+ msgid "No Connect button in Sign Up form"
1141
+ msgstr ""
1142
+
1143
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:77
1144
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1145
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:92
1146
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:46
1147
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:51
1148
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:104
1149
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
1150
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:162
1151
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:167
1152
+ msgid "Connect button on"
1153
+ msgstr ""
1154
+
1155
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:84
1156
+ msgid "Sign Up form button style"
1157
+ msgstr ""
1158
+
1159
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:103
1160
+ msgid "Sign Up layout"
1161
+ msgstr ""
1162
+
1163
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:135
1164
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:150
1165
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:212
1166
+ msgid "Account details"
1167
+ msgstr ""
1168
+
1169
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:140
1170
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:155
1171
  msgid "No link buttons"
1172
  msgstr ""
1173
 
1174
+ #: nextend-facebook-connect/admin/templates/settings/memberpress.php:143
1175
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:158
1176
  msgid "Link buttons after account details"
1177
  msgstr ""
1178
 
1179
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1180
+ #: nextend-facebook-connect/nextend-social-login.php:155
1181
+ msgid ""
1182
+ "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1183
+ "\"_blank\">Privacy Policy</a>"
1184
  msgstr ""
1185
 
1186
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1187
+ msgid "Store"
1188
  msgstr ""
1189
 
1190
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1191
+ msgid "First and last name"
1192
  msgstr ""
1193
 
1194
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1195
+ msgid "When not enabled, username will be randomly generated."
1196
  msgstr ""
1197
 
1198
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1199
+ #: nextend-social-login-pro/class-provider-extension.php:320
1200
+ msgid "Email"
1201
  msgstr ""
1202
 
1203
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1204
+ msgid "When not enabled, email will be empty."
1205
  msgstr ""
1206
 
1207
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1208
+ #: nextend-facebook-connect/includes/avatar.php:46
1209
+ msgid "Avatar"
1210
  msgstr ""
1211
 
1212
+ #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1213
+ #: nextend-facebook-connect/includes/provider.php:985
1214
+ msgid "Access token"
1215
  msgstr ""
1216
 
1217
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1218
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:38
1219
+ msgid "Login form"
1220
  msgstr ""
1221
 
1222
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1223
+ msgid "No Connect button in Login form"
1224
  msgstr ""
1225
 
1226
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:89
1227
+ msgid "No Connect button in Register form"
1228
  msgstr ""
1229
 
1230
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
1231
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:96
1232
+ msgid "Register form button style"
1233
  msgstr ""
1234
 
1235
+ #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:118
1236
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:115
1237
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
1238
+ msgid "Register layout"
1239
  msgstr ""
1240
 
1241
+ #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1242
+ msgid "Register Form"
1243
  msgstr ""
1244
 
1245
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:43
1246
+ msgid "No Connect button in login form"
1247
  msgstr ""
1248
 
1249
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
1250
+ msgid "No Connect button in register form"
 
1251
  msgstr ""
1252
 
1253
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:154
1254
+ msgid "Billing form"
1255
  msgstr ""
1256
 
1257
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:159
1258
+ msgid "No Connect button in billing form"
 
1259
  msgstr ""
1260
 
1261
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
1262
+ msgid "Billing layout"
1263
  msgstr ""
1264
 
1265
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1266
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:222
1267
+ msgid "Link buttons on"
1268
+ msgstr ""
1269
+
1270
+ #: nextend-facebook-connect/admin/templates/test-connection.php:41
1271
+ #, php-format
1272
+ msgid "Network connection successful: %1$s"
1273
+ msgstr ""
1274
+
1275
+ #: nextend-facebook-connect/admin/templates/test-connection.php:47
1276
+ #, php-format
1277
+ msgid "Network connection failed: %1$s"
1278
+ msgstr ""
1279
+
1280
+ #: nextend-facebook-connect/admin/templates/test-connection.php:50
1281
+ msgid ""
1282
+ "Please contact with your hosting provider to resolve the network issue "
1283
+ "between your server and the provider."
1284
  msgstr ""
1285
 
1286
  #: nextend-facebook-connect/includes/avatar.php:47
1287
+ msgid "Manage Avatar"
1288
+ msgstr ""
1289
+
1290
+ #: nextend-facebook-connect/includes/avatar.php:48
1291
  #, php-format
1292
  msgid "Avatar <span class=\"count\">(%s)</span>"
1293
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1294
  msgstr[0] ""
1295
  msgstr[1] ""
1296
 
1297
+ #. translators: Login screen title. 1: Login screen name, 2: Network or site name
1298
+ #: nextend-facebook-connect/includes/compat-wp-login.php:42
1299
+ #, php-format
1300
+ msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1301
+ msgstr ""
1302
+
1303
+ #: nextend-facebook-connect/includes/compat-wp-login.php:97
1304
+ msgid "https://wordpress.org/"
1305
+ msgstr ""
1306
+
1307
+ #: nextend-facebook-connect/includes/compat-wp-login.php:98
1308
+ msgid "Powered by WordPress"
1309
+ msgstr ""
1310
+
1311
+ #. translators: %s: site title
1312
+ #: nextend-facebook-connect/includes/compat-wp-login.php:234
1313
+ #, php-format
1314
+ msgctxt "site"
1315
+ msgid "&larr; Back to %s"
1316
+ msgstr ""
1317
+
1318
+ #: nextend-facebook-connect/includes/provider-admin.php:196
1319
  msgid "Your configuration needs to be verified"
1320
  msgstr ""
1321
 
1322
+ #: nextend-facebook-connect/includes/provider-admin.php:197
1323
  msgid ""
1324
  "Before you can start letting your users register with your app it needs to "
1325
  "be tested. This test makes sure that no users will have troubles with the "
1328
  "are fine."
1329
  msgstr ""
1330
 
1331
+ #: nextend-facebook-connect/includes/provider-admin.php:203
1332
  msgid "Please save your changes to verify settings."
1333
  msgstr ""
1334
 
1335
+ #: nextend-facebook-connect/includes/provider-admin.php:211
1336
  msgid "Works Fine"
1337
  msgstr ""
1338
 
1339
+ #: nextend-facebook-connect/includes/provider-admin.php:225
1340
  #, php-format
1341
  msgid ""
1342
  "This provider is currently disabled, which means that users can’t register "
1343
  "or login via their %s account."
1344
  msgstr ""
1345
 
1346
+ #: nextend-facebook-connect/includes/provider-admin.php:228
1347
  #, php-format
1348
  msgid ""
1349
  "This provider works fine, but you can test it again. If you don’t want to "
1350
  "let users register or login with %s anymore you can disable it."
1351
  msgstr ""
1352
 
1353
+ #: nextend-facebook-connect/includes/provider-admin.php:231
1354
  #, php-format
1355
  msgid ""
1356
  "This provider is currently enabled, which means that users can register or "
1357
  "login via their %s account."
1358
  msgstr ""
1359
 
1360
+ #: nextend-facebook-connect/includes/provider-admin.php:239
1361
  msgid "Verify Settings Again"
1362
  msgstr ""
1363
 
1364
+ #: nextend-facebook-connect/includes/provider-admin.php:240
1365
  msgid "Please save your changes before verifying settings."
1366
  msgstr ""
1367
 
1368
+ #: nextend-facebook-connect/includes/provider.php:347
1369
+ #: nextend-facebook-connect/includes/provider.php:643
1370
+ #: nextend-facebook-connect/includes/provider.php:648
1371
  msgid "Authentication successful"
1372
  msgstr ""
1373
 
1374
+ #: nextend-facebook-connect/includes/provider.php:587
1375
+ #: nextend-facebook-connect/includes/user.php:109
1376
  msgid "Authentication error"
1377
  msgstr ""
1378
 
1379
+ #: nextend-facebook-connect/includes/provider.php:602
1380
  msgid "Unlink successful."
1381
  msgstr ""
1382
 
1383
+ #: nextend-facebook-connect/includes/provider.php:799
1384
+ #: nextend-facebook-connect/includes/provider.php:806
1385
  msgid "The test was successful"
1386
  msgstr ""
1387
 
1388
+ #: nextend-facebook-connect/includes/provider.php:852
1389
  msgid "Authentication failed"
1390
  msgstr ""
1391
 
1392
+ #: nextend-facebook-connect/includes/provider.php:977
1393
+ msgid "Identifier"
1394
+ msgstr ""
1395
+
1396
+ #: nextend-facebook-connect/includes/provider.php:993
1397
+ msgid "Profile picture"
1398
+ msgstr ""
1399
+
1400
+ #: nextend-facebook-connect/includes/user.php:69
1401
  #, php-format
1402
  msgid ""
1403
  "Your %1$s account is successfully linked with your account. Now you can sign "
1404
  "in with %2$s easily."
1405
  msgstr ""
1406
 
1407
+ #: nextend-facebook-connect/includes/user.php:72
1408
  #, php-format
1409
  msgid ""
1410
  "You have already linked a(n) %s account. Please unlink the current and then "
1411
  "you can link other %s account."
1412
  msgstr ""
1413
 
1414
+ #: nextend-facebook-connect/includes/user.php:77
1415
  #, php-format
1416
  msgid "This %s account is already linked to other user."
1417
  msgstr ""
1418
 
1419
+ #: nextend-facebook-connect/includes/userData.php:122
1420
+ msgid "Register For This Site!"
1421
+ msgstr ""
1422
+
1423
  #. translators: %2$s: PHP version
1424
  #: nextend-facebook-connect/nextend-facebook-connect.php:34
1425
  #, php-format
1434
  "version, the plugin is currently NOT ACTIVE."
1435
  msgstr ""
1436
 
1437
+ #: nextend-facebook-connect/nextend-social-login.php:77
1438
+ #: nextend-facebook-connect/nextend-social-login.php:84
1439
  #, php-format
1440
  msgid "Please update %1$s to version %2$s or newer."
1441
  msgstr ""
1442
 
1443
+ #: nextend-facebook-connect/nextend-social-login.php:77
1444
+ #: nextend-facebook-connect/nextend-social-login.php:84
1445
  msgid "Update now!"
1446
  msgstr ""
1447
 
1448
+ #: nextend-facebook-connect/nextend-social-login.php:91
1449
+ #, php-format
1450
+ msgid "Your domain name changed so you must authorize %1$s again."
1451
+ msgstr ""
1452
+
1453
+ #: nextend-facebook-connect/nextend-social-login.php:485
1454
  #, php-format
1455
  msgid ""
1456
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1457
  "Connect as it is not needed anymore."
1458
  msgstr ""
1459
 
1460
+ #: nextend-facebook-connect/nextend-social-login.php:496
1461
  #, php-format
1462
  msgid ""
1463
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1464
  "Connect as it is not needed anymore."
1465
  msgstr ""
1466
 
1467
+ #: nextend-facebook-connect/nextend-social-login.php:760
1468
+ #: nextend-facebook-connect/nextend-social-login.php:1106
 
 
 
 
1469
  msgid "Social Login"
1470
  msgstr ""
1471
 
1472
+ #: nextend-facebook-connect/nextend-social-login.php:1087
1473
  msgid "Social Accounts"
1474
  msgstr ""
1475
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1476
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1477
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1478
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1479
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1480
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
 
1481
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1482
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1483
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1496
  msgstr ""
1497
 
1498
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:12
1499
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1500
  #, php-format
1501
  msgid ""
1502
  "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1503
  msgstr ""
1504
 
1505
  #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:13
1506
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1507
  msgid "Click on \"Save Changes\""
1508
  msgstr ""
1509
 
1522
  msgid "How to get SSL for my WordPress site?"
1523
  msgstr ""
1524
 
1525
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
1526
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1527
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1528
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1536
  "%1$s App."
1537
  msgstr ""
1538
 
1539
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1540
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1541
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1542
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1543
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1544
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1545
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1546
  #, php-format
1547
  msgctxt "App creation"
1548
  msgid "Create %s"
1549
  msgstr ""
1550
 
1551
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1552
  msgid "Click on the \"Add a New App\" button"
1553
  msgstr ""
1554
 
1555
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1556
  msgid "Fill \"Display Name\" and \"Contact Email\""
1557
  msgstr ""
1558
 
1559
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1560
  msgid "Click on blue \"Create App ID\" button"
1561
  msgstr ""
1562
 
1563
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1564
  msgid ""
1565
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1566
  "button"
1567
  msgstr ""
1568
 
1569
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1570
  msgid "Choose Web"
1571
  msgstr ""
1572
 
1573
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1574
  #, php-format
1575
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1576
  msgstr ""
1577
 
1578
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1579
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:13
1580
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:13
1581
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:14
1582
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
1583
  msgid "Click on \"Save\""
1584
  msgstr ""
1585
 
1586
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1587
  msgid "In the left sidebar, click on \"Facebook Login\""
1588
  msgstr ""
1589
 
1590
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1591
  msgid "In the top of the left sidebar, click on \"Settings\""
1592
  msgstr ""
1593
 
1594
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1595
  msgid ""
1596
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1597
  "click on the \"Show\" button. These will be needed in plugin's settings."
1598
  msgstr ""
1599
 
1600
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1601
  msgid "Enter your domain name to the App Domains"
1602
  msgstr ""
1603
 
1604
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:37
1605
  msgid ""
1606
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1607
  "accessible privacy policy that explains what data you are collecting and how "
1608
  "you will use that data."
1609
  msgstr ""
1610
 
1611
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:38
1612
  #: nextend-facebook-connect/providers/facebook/admin/import.php:19
1613
  #: nextend-facebook-connect/providers/google/admin/import.php:19
1614
  #: nextend-facebook-connect/providers/twitter/admin/import.php:19
1615
  msgid "Save your changes."
1616
  msgstr ""
1617
 
1618
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1619
  msgid ""
1620
  "Your application is currently private, which means that only you can log in "
1621
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1622
  msgstr ""
1623
 
1624
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1625
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
1626
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1627
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1628
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1629
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1630
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1631
  #, php-format
1632
  msgid "I am done setting up my %s"
1763
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1764
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1765
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1766
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1767
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1768
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1769
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1770
  msgid "Required"
1775
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1776
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1777
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1778
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1779
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1780
  #, php-format
1781
  msgid ""
1799
  msgid "Unlink account from <b>Facebook</b>"
1800
  msgstr ""
1801
 
1802
+ #: nextend-facebook-connect/providers/facebook/facebook.php:154
1803
+ #: nextend-facebook-connect/providers/google/google.php:144
1804
+ #: nextend-facebook-connect/providers/twitter/twitter.php:105
1805
+ #: nextend-social-login-pro/providers/amazon/amazon.php:63
1806
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1807
+ #: nextend-social-login-pro/providers/paypal/paypal.php:125
1808
+ #: nextend-social-login-pro/providers/vk/vk.php:60
1809
  #, php-format
1810
  msgid ""
1811
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1812
  msgstr ""
1813
 
1814
+ #: nextend-facebook-connect/providers/facebook/facebook.php:333
1815
+ #: nextend-social-login-pro/providers/paypal/paypal.php:201
1816
+ #, php-format
1817
+ msgid "Required scope: %1$s"
1818
+ msgstr ""
1819
+
1820
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1821
+ msgid "Button skin"
1822
+ msgstr ""
1823
+
1824
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1825
+ msgid "Uniform"
1826
+ msgstr ""
1827
+
1828
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1829
+ msgid "Light"
1830
+ msgstr ""
1831
+
1832
+ #: nextend-facebook-connect/providers/google/admin/buttons.php:20
1833
+ msgid "Dark"
1834
+ msgstr ""
1835
+
1836
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1837
  msgid "Click on the \"Credentials\" in the left hand menu"
1838
  msgstr ""
1843
  msgstr ""
1844
 
1845
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1846
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1847
  #, php-format
1848
  msgid ""
1849
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1852
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1853
  msgid ""
1854
  "If you don't have a project yet, you'll need to create one. You can do this "
1855
+ "by clicking on the blue \"Create project\" button on the right side! ( If "
1856
+ "you already have a project, click on the name of your project in the "
1857
+ "dashboard instead, which will bring up a modal and click New Project. )"
1858
  msgstr ""
1859
 
1860
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1861
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
1862
+ msgid "Click the Create button."
1863
  msgstr ""
1864
 
1865
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
1866
+ msgid "Name your project and then click on the Create button again"
1867
  msgstr ""
1868
 
1869
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1870
+ msgid "Once you have a project, you'll end up in the dashboard."
 
 
1871
  msgstr ""
1872
 
1873
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1874
  msgid ""
1875
+ "Click on the \"Credentials\" in the left hand menu to create new API "
1876
+ "credentials"
1877
  msgstr ""
1878
 
1879
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1880
+ msgid "Select \"OAuth client ID\" from the dropdown."
 
 
 
1881
  msgstr ""
1882
 
1883
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1884
+ msgid ""
1885
+ "If you're prompted to set a product name, do so. Provide the Privacy Policy "
1886
+ "URL as well then click on the save button"
1887
  msgstr ""
1888
 
1889
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1890
+ msgid "Your application type should be \"Web application\""
1891
+ msgstr ""
1892
+
1893
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1894
  msgid "Name your application"
1895
  msgstr ""
1896
 
1897
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1898
  msgid "Click on the Create button"
1899
  msgstr ""
1900
 
1901
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
1902
  msgid ""
1903
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1904
  "the Credentials in the left hand menu and select your app by clicking on its "
1921
  #: nextend-facebook-connect/providers/google/admin/settings.php:27
1922
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1923
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
1924
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
1925
  msgid "Client ID"
1926
  msgstr ""
1927
 
1931
  msgid "Client Secret"
1932
  msgstr ""
1933
 
1934
+ #: nextend-facebook-connect/providers/google/google.php:89
1935
  msgid "Continue with <b>Google</b>"
1936
  msgstr ""
1937
 
1938
+ #: nextend-facebook-connect/providers/google/google.php:90
1939
  msgid "Link account with <b>Google</b>"
1940
  msgstr ""
1941
 
1942
+ #: nextend-facebook-connect/providers/google/google.php:91
1943
  msgid "Unlink account from <b>Google</b>"
1944
  msgstr ""
1945
 
1946
+ #: nextend-facebook-connect/providers/google/google.php:329
1947
+ #, php-format
1948
+ msgid "Required API: %1$s"
1949
+ msgstr ""
1950
+
1951
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1952
+ msgid "Find your App and click on the Details button"
 
1953
  msgstr ""
1954
 
1955
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1956
+ msgid ""
1957
+ "The Edit button can be found on the App details tab. Click on it and select "
1958
+ "Edit details"
1959
  msgstr ""
1960
 
1961
  #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:12
1962
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
1963
  #, php-format
1964
+ msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
1965
  msgstr ""
1966
 
1967
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1968
+ #, php-format
1969
+ msgid "Log in with your %s credentials if you are not logged in yet"
1970
  msgstr ""
1971
 
1972
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1973
+ msgid ""
1974
+ "If you don't have a developer account yet, please apply one by filling all "
1975
+ "the required details! This is required for the next steps!"
1976
  msgstr ""
1977
 
1978
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1979
  #, php-format
1980
  msgid ""
1981
+ "Once your developer account is complete, navigate back to %s if you aren't "
1982
+ "already there!"
1983
+ msgstr ""
1984
+
1985
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1986
+ #, php-format
1987
+ msgid ""
1988
+ "Fill the App name, Application description fields. Then enter your site's "
1989
+ "URL to the Website URL field: <b>%s</b>"
1990
  msgstr ""
1991
 
1992
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1993
+ msgid "Tick the checkbox next to Enable Sign in with Twitter!"
1994
  msgstr ""
1995
 
1996
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
1997
  msgid ""
1998
+ "Fill the “Terms of Service URL\", \"Privacy policy URL\" and \"Tell us how "
1999
+ "this app will be used” fields!"
2000
  msgstr ""
2001
 
2002
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2003
+ msgid "Read the Developer Terms and click the Create button again!"
2004
+ msgstr ""
2005
+
2006
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2007
+ msgid "Select the Permissions tab and click Edit."
2008
+ msgstr ""
2009
+
2010
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2011
  msgid ""
2012
+ "Tick the Request email address from users under the Additional permissions "
2013
+ "section and click Save."
2014
+ msgstr ""
2015
+
2016
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2017
+ msgid "Go to the Keys and tokens tab and find the API key and API secret key"
2018
  msgstr ""
2019
 
2020
  #: nextend-facebook-connect/providers/twitter/admin/import.php:9
2026
  msgstr ""
2027
 
2028
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2029
+ msgid "API Key"
2030
  msgstr ""
2031
 
2032
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2033
+ msgid "API secret key"
2034
+ msgstr ""
2035
+
2036
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2037
+ msgid "Profile image size"
2038
  msgstr ""
2039
 
2040
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2041
+ msgid "Original"
2042
+ msgstr ""
2043
+
2044
+ #: nextend-facebook-connect/providers/twitter/twitter.php:72
2045
  msgid "Continue with <b>Twitter</b>"
2046
  msgstr ""
2047
 
2048
+ #: nextend-facebook-connect/providers/twitter/twitter.php:73
2049
  msgid "Link account with <b>Twitter</b>"
2050
  msgstr ""
2051
 
2052
+ #: nextend-facebook-connect/providers/twitter/twitter.php:74
2053
  msgid "Unlink account from <b>Twitter</b>"
2054
  msgstr ""
2055
 
2074
  msgid "Show unlink buttons"
2075
  msgstr ""
2076
 
2077
+ #: nextend-social-login-pro/class-provider-extension.php:115
2078
  msgid "Social login is not allowed with this role!"
2079
  msgstr ""
2080
 
 
2081
  #: nextend-social-login-pro/class-provider-extension.php:211
2082
+ #: nextend-social-login-pro/class-provider-extension.php:214
2083
+ #: nextend-social-login-pro/class-provider-extension.php:220
2084
+ #: nextend-social-login-pro/class-provider-extension.php:227
2085
+ #: nextend-social-login-pro/class-provider-extension.php:298
2086
+ #: nextend-social-login-pro/class-provider-extension.php:301
2087
+ #: nextend-social-login-pro/class-provider-extension.php:305
2088
  msgid "ERROR"
2089
  msgstr ""
2090
 
2091
+ #: nextend-social-login-pro/class-provider-extension.php:211
2092
  msgid "Please enter a username."
2093
  msgstr ""
2094
 
2095
+ #: nextend-social-login-pro/class-provider-extension.php:214
2096
  msgid ""
2097
  "This username is invalid because it uses illegal characters. Please enter a "
2098
  "valid username."
2099
  msgstr ""
2100
 
2101
+ #: nextend-social-login-pro/class-provider-extension.php:220
2102
  msgid "This username is already registered. Please choose another one."
2103
  msgstr ""
2104
 
2105
+ #: nextend-social-login-pro/class-provider-extension.php:227
2106
  msgid "Sorry, that username is not allowed."
2107
  msgstr ""
2108
 
2109
+ #: nextend-social-login-pro/class-provider-extension.php:245
2110
+ msgid "Username"
2111
+ msgstr ""
2112
+
2113
+ #: nextend-social-login-pro/class-provider-extension.php:298
2114
  msgid "Please enter an email address."
2115
  msgstr ""
2116
 
2117
+ #: nextend-social-login-pro/class-provider-extension.php:301
2118
  msgid "The email address isn&#8217;t correct."
2119
  msgstr ""
2120
 
2121
+ #: nextend-social-login-pro/class-provider-extension.php:305
2122
  msgid "This email is already registered, please choose another one."
2123
  msgstr ""
2124
 
2125
+ #: nextend-social-login-pro/class-provider-extension.php:325
2126
+ msgid "Registration confirmation will be emailed to you."
2127
+ msgstr ""
2128
+
2129
+ #: nextend-social-login-pro/class-provider-extension.php:376
2130
  msgid "<strong>ERROR</strong>: Please enter a password."
2131
  msgstr ""
2132
 
2133
+ #: nextend-social-login-pro/class-provider-extension.php:382
2134
  msgid "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
2135
  msgstr ""
2136
 
2137
+ #: nextend-social-login-pro/class-provider-extension.php:388
2138
  msgid ""
2139
  "<strong>ERROR</strong>: Please enter the same password in both password "
2140
  "fields."
2141
  msgstr ""
2142
 
2143
+ #: nextend-social-login-pro/class-provider-extension.php:405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2144
  msgid "Password"
2145
  msgstr ""
2146
 
2147
+ #: nextend-social-login-pro/class-provider-extension.php:415
2148
  msgid "Strength indicator"
2149
  msgstr ""
2150
 
2151
+ #: nextend-social-login-pro/class-provider-extension.php:420
2152
  msgid "Confirm use of weak password"
2153
  msgstr ""
2154
 
2155
+ #: nextend-social-login-pro/class-provider-extension.php:426
2156
  msgid "Confirm password"
2157
  msgstr ""
2158
 
2159
+ #: nextend-social-login-pro/class-provider-extension.php:438
2160
  #, php-format
2161
  msgid ""
2162
  "This email is already registered, please login in to your account to link "
2181
  msgstr ""
2182
 
2183
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2184
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:24
2185
  #, php-format
2186
  msgid "Visit %s"
2187
  msgstr ""
2188
 
2189
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2190
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2191
  msgid ""
2192
  "On the right side, under \"Manage\", hover over the gear icon and select "
2193
  "\"Web Settings\" option."
2194
  msgstr ""
2195
 
2196
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2197
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2198
  msgid "Click \"Edit\"."
2199
  msgstr ""
2200
 
2201
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:13
2202
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2203
  #, php-format
2204
  msgid "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2205
  msgstr ""
2206
 
2207
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2208
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2209
  #, php-format
2210
  msgid ""
2211
  "To allow your visitors to log in with their %1$s account, first you must "
2215
  "%1$s App."
2216
  msgstr ""
2217
 
2218
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2219
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2220
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2221
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2222
  #, php-format
2223
  msgid "Log in with your %s credentials if you are not logged in."
2224
  msgstr ""
2225
 
2226
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:25
2227
  msgid ""
2228
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2229
  "do this by clicking on the orange \"Create a New Security Profile\" button "
2230
  "on the left side."
2231
  msgstr ""
2232
 
2233
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2234
  msgid ""
2235
  "Fill \"Security Profile Name\", \"Security Profile Description\" and "
2236
  "\"Consent Privacy Notice URL\"."
2237
  msgstr ""
2238
 
2239
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2240
  msgid "Once you filled all the required fields, click \"Save\"."
2241
  msgstr ""
2242
 
2243
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2244
  #, php-format
2245
  msgid ""
2246
  "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</b>"
2247
  msgstr ""
2248
 
2249
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2250
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
2251
  msgid "When all fields are filled, click \"Save\"."
2252
  msgstr ""
2253
 
2254
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2255
  msgid "Pick \"General\" tab, which is next to the \"Web Settings\" tab."
2256
  msgstr ""
2257
 
2258
+ #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2259
  msgid ""
2260
  "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of the "
2261
  "page."
2273
  msgid "Unlink account from <b>Amazon</b>"
2274
  msgstr ""
2275
 
2276
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2277
+ msgid "Click on the App"
2278
+ msgstr ""
2279
+
2280
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:11
2281
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
2282
  #, php-format
2317
  "Application Permissions"
2318
  msgstr ""
2319
 
2320
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:62
2321
  msgid "Continue with <b>LinkedIn</b>"
2322
  msgstr ""
2323
 
2324
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:63
2325
  msgid "Link account with <b>LinkedIn</b>"
2326
  msgstr ""
2327
 
2328
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:64
2329
  msgid "Unlink account from <b>LinkedIn</b>"
2330
  msgstr ""
2331
 
2332
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
2333
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
2334
+ msgid "Scroll down to \"REST API apps\"."
2335
+ msgstr ""
2336
+
2337
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2338
+ #, php-format
2339
+ msgid "Click on the name of your %s App."
2340
+ msgstr ""
2341
+
2342
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2343
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2344
+ msgid "Select the \"Live\" option on the top-right side. "
2345
+ msgstr ""
2346
+
2347
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:13
2348
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2349
+ msgid ""
2350
+ "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" heading "
2351
+ "and click \"Show\"."
2352
+ msgstr ""
2353
+
2354
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:14
2355
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
2356
+ #, php-format
2357
+ msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2358
+ msgstr ""
2359
+
2360
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
2361
+ msgid "Click the \"Create App\" button."
2362
+ msgstr ""
2363
+
2364
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
2365
+ msgid "Fill the \"App Name\" field and click \"Create App\" button."
2366
+ msgstr ""
2367
+
2368
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
2369
+ msgid ""
2370
+ "Scroll down to \"App feature options\" section and tick \"Log In with PayPal"
2371
+ "\"."
2372
+ msgstr ""
2373
+
2374
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
2375
+ msgid ""
2376
+ "Click \"Advanced Options\" which can be found at the end of text \"Log In "
2377
+ "with PayPal\"."
2378
+ msgstr ""
2379
+
2380
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
2381
+ msgid "Tick \"Full name\" and \"Email address\"."
2382
+ msgstr ""
2383
+
2384
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:27
2385
+ msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
2386
+ msgstr ""
2387
+
2388
+ #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:29
2389
+ msgid ""
2390
+ "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary "
2391
+ "\"Client ID\" and \"Secret\"! ( Make sure you are in \"Live\" mode and not "
2392
+ "\"Sandbox\" )."
2393
+ msgstr ""
2394
+
2395
+ #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
2396
+ msgid "Secret"
2397
+ msgstr ""
2398
+
2399
+ #: nextend-social-login-pro/providers/paypal/paypal.php:99
2400
+ msgid "Continue with <b>PayPal</b>"
2401
+ msgstr ""
2402
+
2403
+ #: nextend-social-login-pro/providers/paypal/paypal.php:100
2404
+ msgid "Link account with <b>PayPal</b>"
2405
+ msgstr ""
2406
+
2407
+ #: nextend-social-login-pro/providers/paypal/paypal.php:101
2408
+ msgid "Unlink account from <b>PayPal</b>"
2409
+ msgstr ""
2410
+
2411
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
2412
  msgid "Click on the Manage button at the App"
2413
  msgstr ""
2495
  msgid "Unlink account from <b>VK</b>"
2496
  msgstr ""
2497
 
2498
+ #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2499
+ #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2500
+ #: nextend-social-login-pro/template-parts/login/above-separator.php:11
2501
+ #: nextend-social-login-pro/template-parts/login/below-separator.php:8
2502
+ #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:10
2503
+ #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:10
2504
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:10
2505
+ #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:10
2506
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:10
2507
+ #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:10
2508
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:10
2509
+ #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:10
2510
+ #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:10
2511
+ #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:10
2512
+ #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:10
2513
+ #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:10
2514
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:11
2515
+ #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:11
2516
+ #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:10
2517
+ #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:10
2518
+ #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:10
2519
+ #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:10
2520
  msgid "OR"
2521
  msgstr ""
2522
 
2523
  #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
2524
+ #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:1
2525
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
2526
  #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
2527
  msgid "Social accounts"
nextend-facebook-connect.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Nextend Social Login
4
  Plugin URI: https://nextendweb.com/
5
  Description: Nextend Social Login displays social login buttons for Facebook, Google and Twitter.
6
- Version: 3.0.12
7
  Author: Nextendweb
8
  License: GPL2
9
  Text Domain: nextend-facebook-connect
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.13
7
  Author: Nextendweb
8
  License: GPL2
9
  Text Domain: nextend-facebook-connect
nextend-social-login.php CHANGED
@@ -16,9 +16,9 @@ require_once(NSL_PATH . '/compat.php');
16
 
17
  class NextendSocialLogin {
18
 
19
- public static $version = '3.0.12';
20
 
21
- public static $nslPROMinVersion = '3.0.12';
22
 
23
  public static $proxyPage = false;
24
 
@@ -193,6 +193,7 @@ class NextendSocialLogin {
193
  'memberpress_account_details' => 'after',
194
  'registration_notification_notify' => '0',
195
  'debug' => '0',
 
196
  'review_state' => -1,
197
  'woocommerce_dismissed' => 0,
198
 
@@ -586,8 +587,10 @@ class NextendSocialLogin {
586
  break;
587
  }
588
  } else {
589
- wp_redirect(site_url());
590
- exit;
 
 
591
  }
592
  }
593
  }
16
 
17
  class NextendSocialLogin {
18
 
19
+ public static $version = '3.0.13';
20
 
21
+ public static $nslPROMinVersion = '3.0.13';
22
 
23
  public static $proxyPage = false;
24
 
193
  'memberpress_account_details' => 'after',
194
  'registration_notification_notify' => '0',
195
  'debug' => '0',
196
+ 'login_restriction' => '0',
197
  'review_state' => -1,
198
  'woocommerce_dismissed' => 0,
199
 
587
  break;
588
  }
589
  } else {
590
+ if (!is_front_page() && !is_home()) {
591
+ wp_redirect(home_url());
592
+ exit;
593
+ }
594
  }
595
  }
596
  }
providers/facebook/admin/getting-started.php CHANGED
@@ -12,6 +12,7 @@ $provider = $this->getProvider();
12
  <p><a href="https://nextendweb.com/nextend-social-login-docs/facebook-api-changes/#enforce-https" target="_blank"><?php _e('How to get SSL for my WordPress site?', 'nextend-facebook-connect'); ?></a></p>
13
  </div>
14
  <?php else: ?>
 
15
 
16
  <p style="max-width:55em;"><?php printf(__('To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.', 'nextend-facebook-connect'), "Facebook", "App ID", "App secret"); ?></p>
17
 
12
  <p><a href="https://nextendweb.com/nextend-social-login-docs/facebook-api-changes/#enforce-https" target="_blank"><?php _e('How to get SSL for my WordPress site?', 'nextend-facebook-connect'); ?></a></p>
13
  </div>
14
  <?php else: ?>
15
+ <h2 class="title"><?php _e('Getting Started', 'nextend-facebook-connect'); ?></h2>
16
 
17
  <p style="max-width:55em;"><?php printf(__('To allow your visitors to log in with their %1$s account, first you must create a %1$s App. The following guide will help you through the %1$s App creation process. After you have created your %1$s App, head over to "Settings" and configure the given "%2$s" and "%3$s" according to your %1$s App.', 'nextend-facebook-connect'), "Facebook", "App ID", "App secret"); ?></p>
18
 
providers/google/admin/buttons.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <tr>
2
+ <th scope="row"><?php _e('Button skin', 'nextend-facebook-connect'); ?></th>
3
+ <td>
4
+ <fieldset>
5
+ <label>
6
+ <input type="radio" name="skin"
7
+ value="default" <?php if ($settings->get('skin') == 'uniform') : ?> checked="checked" <?php endif; ?>>
8
+ <span><?php _e('Uniform', 'nextend-facebook-connect'); ?></span><br/>
9
+ <img src="<?php echo plugins_url('images/google/uniform.png', NSL_ADMIN_PATH) ?>"/>
10
+ </label>
11
+ <label>
12
+ <input type="radio" name="skin"
13
+ value="light" <?php if ($settings->get('skin') == 'light') : ?> checked="checked" <?php endif; ?>>
14
+ <span><?php _e('Light', 'nextend-facebook-connect'); ?></span><br/>
15
+ <img src="<?php echo plugins_url('images/google/light.png', NSL_ADMIN_PATH) ?>"/>
16
+ </label>
17
+ <label>
18
+ <input type="radio" name="skin"
19
+ value="dark" <?php if ($settings->get('skin') == 'dark') : ?> checked="checked" <?php endif; ?>>
20
+ <span><?php _e('Dark', 'nextend-facebook-connect'); ?></span><br/>
21
+ <img src="<?php echo plugins_url('images/google/dark.png', NSL_ADMIN_PATH) ?>"/>
22
+ </label><br>
23
+ </fieldset>
24
+ </td>
25
+ </tr>
providers/google/admin/getting-started.php CHANGED
@@ -15,12 +15,13 @@ $provider = $this->getProvider();
15
  <ol>
16
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://console.developers.google.com/apis/" target="_blank">https://console.developers.google.com/apis/</a>'); ?></li>
17
  <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Google'); ?></li>
18
- <li><?php _e('If you don\'t have a project yet, you\'ll need to create one. You can do this by clicking on the blue "Create project" button on the right side', 'nextend-facebook-connect'); ?></li>
19
- <li><?php _e('Name your project and then click on the Create button', 'nextend-facebook-connect'); ?></li>
 
20
  <li><?php _e('Once you have a project, you\'ll end up in the dashboard.', 'nextend-facebook-connect'); ?></li>
21
  <li><?php _e('Click on the "Credentials" in the left hand menu to create new API credentials', 'nextend-facebook-connect'); ?></li>
22
- <li><?php _e('Go to the OAuth consent screen tab and enter a product name and provide the Privacy Policy URL, then click on the save button.', 'nextend-facebook-connect'); ?></li>
23
- <li><?php _e('Go back to the Credentials tab and locate the small box at the middle. Click on the blue "Create credentials" button. Chose the "OAuth client ID" from the dropdown list.', 'nextend-facebook-connect'); ?></li>
24
  <li><?php _e('Your application type should be "Web application"', 'nextend-facebook-connect'); ?></li>
25
  <li><?php _e('Name your application', 'nextend-facebook-connect'); ?></li>
26
  <li><?php printf(__('Add the following URL to the "Authorised redirect URIs" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?></li>
15
  <ol>
16
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://console.developers.google.com/apis/" target="_blank">https://console.developers.google.com/apis/</a>'); ?></li>
17
  <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Google'); ?></li>
18
+ <li><?php _e('If you don\'t have a project yet, you\'ll need to create one. You can do this by clicking on the blue "Create project" button on the right side! ( If you already have a project, click on the name of your project in the dashboard instead, which will bring up a modal and click New Project. )', 'nextend-facebook-connect'); ?></li>
19
+ <li><?php _e('Click the Create button.', 'nextend-facebook-connect'); ?></li>
20
+ <li><?php _e('Name your project and then click on the Create button again', 'nextend-facebook-connect'); ?></li>
21
  <li><?php _e('Once you have a project, you\'ll end up in the dashboard.', 'nextend-facebook-connect'); ?></li>
22
  <li><?php _e('Click on the "Credentials" in the left hand menu to create new API credentials', 'nextend-facebook-connect'); ?></li>
23
+ <li><?php _e('Select "OAuth client ID" from the dropdown.', 'nextend-facebook-connect'); ?></li>
24
+ <li><?php _e('If you\'re prompted to set a product name, do so. Provide the Privacy Policy URL as well then click on the save button', 'nextend-facebook-connect'); ?></li>
25
  <li><?php _e('Your application type should be "Web application"', 'nextend-facebook-connect'); ?></li>
26
  <li><?php _e('Name your application', 'nextend-facebook-connect'); ?></li>
27
  <li><?php printf(__('Add the following URL to the "Authorised redirect URIs" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?></li>
providers/google/google.php CHANGED
@@ -9,6 +9,8 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
9
 
10
  protected $svg = '<svg xmlns="http://www.w3.org/2000/svg"><path fill="#fff" d="M7.636 11.545v2.619h4.331c-.174 1.123-1.309 3.294-4.33 3.294-2.608 0-4.735-2.16-4.735-4.822 0-2.661 2.127-4.821 4.734-4.821 1.484 0 2.477.632 3.044 1.178l2.073-1.997C11.422 5.753 9.698 5 7.636 5A7.63 7.63 0 0 0 0 12.636a7.63 7.63 0 0 0 7.636 7.637c4.408 0 7.331-3.098 7.331-7.462 0-.502-.054-.884-.12-1.266h-7.21zm16.364 0h-2.182V9.364h-2.182v2.181h-2.181v2.182h2.181v2.182h2.182v-2.182H24"/></svg>';
11
 
 
 
12
  const requiredApi1 = 'Google+ API';
13
 
14
  protected $sync_fields = array(
@@ -71,6 +73,7 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
71
  parent::__construct(array(
72
  'client_id' => '',
73
  'client_secret' => '',
 
74
  'login_label' => 'Continue with <b>Google</b>',
75
  'link_label' => 'Link account with <b>Google</b>',
76
  'unlink_label' => 'Unlink account from <b>Google</b>',
@@ -88,6 +91,25 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
88
  __('Unlink account from <b>Google</b>', 'nextend-facebook-connect');
89
  }
90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
91
  public function validateSettings($newData, $postedData) {
92
  $newData = parent::validateSettings($newData, $postedData);
93
 
@@ -108,6 +130,9 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
108
  $newData['tested'] = 0;
109
  }
110
  break;
 
 
 
111
  case 'client_id':
112
  case 'client_secret':
113
  $newData[$key] = trim(sanitize_text_field($value));
@@ -171,8 +196,12 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
171
  public function getMyGooglePlus() {
172
  $extra_gplus_fields = apply_filters('nsl_google_sync_node_fields', array(), 'gplus');
173
 
174
- return $this->getClient()
175
- ->get('people/me?fields=' . implode(',', $extra_gplus_fields), array(), 'https://www.googleapis.com/plus/v1/');
 
 
 
 
176
  }
177
 
178
  /**
9
 
10
  protected $svg = '<svg xmlns="http://www.w3.org/2000/svg"><path fill="#fff" d="M7.636 11.545v2.619h4.331c-.174 1.123-1.309 3.294-4.33 3.294-2.608 0-4.735-2.16-4.735-4.822 0-2.661 2.127-4.821 4.734-4.821 1.484 0 2.477.632 3.044 1.178l2.073-1.997C11.422 5.753 9.698 5 7.636 5A7.63 7.63 0 0 0 0 12.636a7.63 7.63 0 0 0 7.636 7.637c4.408 0 7.331-3.098 7.331-7.462 0-.502-.054-.884-.12-1.266h-7.21zm16.364 0h-2.182V9.364h-2.182v2.181h-2.181v2.182h2.181v2.182h2.182v-2.182H24"/></svg>';
11
 
12
+ protected $svgOfficial = '<svg xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path fill="#4285F4" fill-rule="nonzero" d="M20.64 12.2045c0-.6381-.0573-1.2518-.1636-1.8409H12v3.4814h4.8436c-.2086 1.125-.8427 2.0782-1.7959 2.7164v2.2581h2.9087c1.7018-1.5668 2.6836-3.874 2.6836-6.615z"/><path fill="#34A853" fill-rule="nonzero" d="M12 21c2.43 0 4.4673-.806 5.9564-2.1805l-2.9087-2.2581c-.8059.54-1.8368.859-3.0477.859-2.344 0-4.3282-1.5831-5.036-3.7104H3.9574v2.3318C5.4382 18.9832 8.4818 21 12 21z"/><path fill="#FBBC05" fill-rule="nonzero" d="M6.964 13.71c-.18-.54-.2822-1.1168-.2822-1.71s.1023-1.17.2823-1.71V7.9582H3.9573A8.9965 8.9965 0 0 0 3 12c0 1.4523.3477 2.8268.9573 4.0418L6.964 13.71z"/><path fill="#EA4335" fill-rule="nonzero" d="M12 6.5795c1.3214 0 2.5077.4541 3.4405 1.346l2.5813-2.5814C16.4632 3.8918 14.426 3 12 3 8.4818 3 5.4382 5.0168 3.9573 7.9582L6.964 10.29C7.6718 8.1627 9.6559 6.5795 12 6.5795z"/><path d="M3 3h18v18H3z"/></g></svg>';
13
+
14
  const requiredApi1 = 'Google+ API';
15
 
16
  protected $sync_fields = array(
73
  parent::__construct(array(
74
  'client_id' => '',
75
  'client_secret' => '',
76
+ 'skin' => 'uniform',
77
  'login_label' => 'Continue with <b>Google</b>',
78
  'link_label' => 'Link account with <b>Google</b>',
79
  'unlink_label' => 'Unlink account from <b>Google</b>',
91
  __('Unlink account from <b>Google</b>', 'nextend-facebook-connect');
92
  }
93
 
94
+ public function getRawDefaultButton() {
95
+ $skin = $this->settings->get('skin');
96
+ switch ($skin) {
97
+ case 'dark':
98
+ $color = '#4285f4';
99
+ $svg = $this->svgOfficial;
100
+ break;
101
+ case 'light':
102
+ $color = '#fff';
103
+ $svg = $this->svgOfficial;
104
+ break;
105
+ default:
106
+ $color = $this->color;
107
+ $svg = $this->svg;
108
+ }
109
+
110
+ return '<span class="nsl-button nsl-button-default nsl-button-' . $this->id . '" data-skin="' . $skin . '" style="background-color:' . $color . ';"><span class="nsl-button-svg-container">' . $svg . '</span><span class="nsl-button-label-container">{{label}}</span></span>';
111
+ }
112
+
113
  public function validateSettings($newData, $postedData) {
114
  $newData = parent::validateSettings($newData, $postedData);
115
 
130
  $newData['tested'] = 0;
131
  }
132
  break;
133
+ case 'skin':
134
+ $newData[$key] = trim(sanitize_text_field($value));
135
+ break;
136
  case 'client_id':
137
  case 'client_secret':
138
  $newData[$key] = trim(sanitize_text_field($value));
196
  public function getMyGooglePlus() {
197
  $extra_gplus_fields = apply_filters('nsl_google_sync_node_fields', array(), 'gplus');
198
 
199
+ if (!empty($extra_gplus_fields)) {
200
+ return $this->getClient()
201
+ ->get('people/me?fields=' . implode(',', $extra_gplus_fields), array(), 'https://www.googleapis.com/plus/v1/');
202
+ }
203
+
204
+ return $extra_gplus_fields;
205
  }
206
 
207
  /**
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 %s', 'nextend-facebook-connect'), '<a href="https://apps.twitter.com/" target="_blank">https://apps.twitter.com/</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('Click on the App', 'nextend-facebook-connect'); ?></li>
11
- <li><?php _e('Click on the "Settings" tab', 'nextend-facebook-connect'); ?></li>
12
- <li><?php printf(__('Add the following URL to the "Callback URL" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?></li>
13
- <li><?php _e('Click on "Update Settings"', 'nextend-facebook-connect'); ?></li>
14
  </ol>
5
  $provider = $this->getProvider();
6
  ?>
7
  <ol>
8
+ <li><?php printf(__('Navigate to %s', '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 Details button', 'nextend-facebook-connect'); ?></li>
11
+ <li><?php _e('The Edit button can be found on the App details tab. Click on it and select Edit details', 'nextend-facebook-connect'); ?></li>
12
+ <li><?php printf(__('Add the following URL to the "Callback URLs" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
13
+ <li><?php _e('Click on "Save"', 'nextend-facebook-connect'); ?></li>
14
  </ol>
providers/twitter/admin/getting-started.php CHANGED
@@ -13,14 +13,19 @@ $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 %s', 'nextend-facebook-connect'), '<a href="https://apps.twitter.com/" target="_blank">https://apps.twitter.com/</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('Click on the "Create New App" button', 'nextend-facebook-connect'); ?></li>
19
- <li><?php printf(__('Fill the name and description fields. Then enter your site\'s URL to the Website field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
20
- <li><?php printf(__('Add the following URL to the "Callback URL" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getLoginUrl()); ?></li>
21
- <li><?php _e('Accept the Twitter Developer Agreement', 'nextend-facebook-connect'); ?></li>
22
- <li><?php _e('Create your application by clicking on the Create your Twitter application button', 'nextend-facebook-connect'); ?></li>
23
- <li><?php _e('Go to the Keys and Access Tokens tab and find the Consumer Key and Secret', 'nextend-facebook-connect'); ?></li>
 
 
 
 
 
24
  </ol>
25
 
26
  <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 %s', '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 %s 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 App name, Application description fields. Then enter your site\'s URL to the Website URL field: <b>%s</b>', 'nextend-facebook-connect'), site_url()); ?></li>
21
+ <li><?php _e('Tick the checkbox next to Enable Sign in with Twitter!', 'nextend-facebook-connect'); ?></li>
22
+ <li><?php printf(__('Add the following URL to the "Callback URLs" field: <b>%s</b>', 'nextend-facebook-connect'), $provider->getRedirectUriForApp()); ?></li>
23
+ <li><?php _e('Fill the “Terms of Service URL", "Privacy policy URL" and "Tell us how this app will be used” fields!', 'nextend-facebook-connect'); ?></li>
24
+ <li><?php _e('Click the Create button.', 'nextend-facebook-connect'); ?></li>
25
+ <li><?php _e('Read the Developer Terms and click the Create button again!', 'nextend-facebook-connect'); ?></li>
26
+ <li><?php _e('Select the Permissions tab and click Edit.', 'nextend-facebook-connect'); ?></li>
27
+ <li><?php _e('Tick the Request email address from users under the Additional permissions section and click Save.', 'nextend-facebook-connect'); ?></li>
28
+ <li><?php _e('Go to the Keys and tokens tab and find the API key and API secret key', 'nextend-facebook-connect'); ?></li>
29
  </ol>
30
 
31
  <a href="<?php echo $this->getUrl('settings'); ?>"
providers/twitter/admin/settings.php CHANGED
@@ -24,18 +24,18 @@ $settings = $provider->settings;
24
  <tbody>
25
  <tr>
26
  <th scope="row"><label
27
- for="consumer_key"><?php _e('Consumer Key', 'nextend-facebook-connect'); ?></label>
28
  - <em>(<?php _e('Required', 'nextend-facebook-connect'); ?>)</em></label></th>
29
  <td>
30
  <input name="consumer_key" type="text" id="consumer_key"
31
  value="<?php echo esc_attr($settings->get('consumer_key')); ?>" class="regular-text">
32
  <p class="description"
33
- id="tagline-consumer_key"><?php printf(__('If you are not sure what is your %1$s, please head over to <a href="%2$s">Getting Started</a>', 'nextend-facebook-connect'), 'Consumer Key', $this->getUrl()); ?></p>
34
  </td>
35
  </tr>
36
  <tr>
37
  <th scope="row"><label
38
- for="consumer_secret"><?php _e('Consumer Secret', 'nextend-facebook-connect'); ?></label>
39
  </th>
40
  <td><input name="consumer_secret" type="text" id="consumer_secret"
41
  value="<?php echo esc_attr($settings->get('consumer_secret')); ?>" class="regular-text"
24
  <tbody>
25
  <tr>
26
  <th scope="row"><label
27
+ for="consumer_key"><?php _e('API Key', 'nextend-facebook-connect'); ?></label>
28
  - <em>(<?php _e('Required', 'nextend-facebook-connect'); ?>)</em></label></th>
29
  <td>
30
  <input name="consumer_key" type="text" id="consumer_key"
31
  value="<?php echo esc_attr($settings->get('consumer_key')); ?>" class="regular-text">
32
  <p class="description"
33
+ id="tagline-consumer_key"><?php printf(__('If you are not sure what is your %1$s, please head over to <a href="%2$s">Getting Started</a>', 'nextend-facebook-connect'), 'API secret key', $this->getUrl()); ?></p>
34
  </td>
35
  </tr>
36
  <tr>
37
  <th scope="row"><label
38
+ for="consumer_secret"><?php _e('API secret key', 'nextend-facebook-connect'); ?></label>
39
  </th>
40
  <td><input name="consumer_secret" type="text" id="consumer_secret"
41
  value="<?php echo esc_attr($settings->get('consumer_secret')); ?>" class="regular-text"
providers/twitter/twitter.php CHANGED
@@ -114,6 +114,12 @@ class NextendSocialProviderTwitter extends NextendSocialProvider {
114
  return $newData;
115
  }
116
 
 
 
 
 
 
 
117
  /**
118
  * @return NextendSocialProviderTwitterClient
119
  */
@@ -187,7 +193,7 @@ class NextendSocialProviderTwitter extends NextendSocialProvider {
187
 
188
  if ($this->needUpdateAvatar($user_id)) {
189
  $profile_image_size = $this->settings->get('profile_image_size');
190
- $profile_image = $this->authUserData['profile_image_url_https'];
191
  if (!empty($profile_image)) {
192
  switch ($profile_image_size) {
193
  case 'mini':
114
  return $newData;
115
  }
116
 
117
+ public function getRedirectUriForApp() {
118
+ $parts = explode('?', $this->getRedirectUri());
119
+
120
+ return $parts[0];
121
+ }
122
+
123
  /**
124
  * @return NextendSocialProviderTwitterClient
125
  */
193
 
194
  if ($this->needUpdateAvatar($user_id)) {
195
  $profile_image_size = $this->settings->get('profile_image_size');
196
+ $profile_image = $this->authUserData['profile_image_url_https'];
197
  if (!empty($profile_image)) {
198
  switch ($profile_image_size) {
199
  case 'mini':
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: social login, facebook, google, twitter, linkedin, register, login, social
4
  Donate link: https://www.facebook.com/nextendweb
5
  Requires at least: 4.5
6
  Tested up to: 4.9
7
- Stable tag: 3.0.12
8
  Requires PHP: 5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -65,26 +65,32 @@ After you activated the plugin configure and enable the provider you want to use
65
  = Can I make my site GDPR compliant with Nextend Social Login installed? =
66
  Sure, Nextend Social Login provides you the tools to make your site GDPR compliant. [Check out the Nextend Social Login GDPR documentation](https://nextendweb.com/nextend-social-login-docs/gdpr/) to learn more about the topic.
67
 
68
- = 1. How can I get the email address from the Twitter users? =
 
 
 
 
69
  After you set up your APP go to the Settings tab and enter the URL of your Terms of Service and Privacy Policy page. Then hit the Update your settings button. Then go to the Permissions tab and check the "Request email addresses from users" under "Additional Permissions". [There's a documentation](https://nextendweb.com/nextend-social-login-docs/provider-twitter/#get-email) that explains the process with screenshots.
70
 
71
- = 2. Why are random email addresses generated for users registering with their FaceBook account? =
72
  When the user tries to register with their Facebook account Facebook pops up a window where each user can view what kind of access they give for the app. In this modal they can chose not to share their email address. When they're doing so we generate a random email address for them. They can of course change this at their profile.
73
  If the permission is given to the app, there are still [other factors](https://nextendweb.com/nextend-social-login-docs/provider-facebook/#get-email) which can result Facebook not sending back any email address.
74
 
75
  In the Pro Addon it's possible to ask an email address if it's not returned by Facebook.
76
 
77
- = 3. What should I do when I experience any problems? =
78
  [Contact us](https://nextendweb.com/contact-us/) via email and explain the issue you have.
79
 
80
- = 4. How can I translate the plugin? =
81
  Find the `.pot` file at the /languages folder. From that you can start the translation process. [Drop us](https://nextendweb.com/contact-us/) the final `.po` and `.mo` files and we'll put them to the next releases.
82
 
83
- = 5. I have a feature request... =
84
  That's awesome! [Contact us](https://nextendweb.com/contact-us/) and let's discuss the details.
85
 
86
- = 6. Does Nextend Social Login work with BuddyPress? =
87
- Unfortunately, currently there are no BuddyPress specific settings. However your users will still be able login and register at the normal WordPress login page. Then when logged in they can use every BuddyPress feature their current user role have access to.
 
 
88
 
89
  == Installation ==
90
 
@@ -113,6 +119,18 @@ Unfortunately, currently there are no BuddyPress specific settings. However your
113
  2. Nextend Social Login and Register in the profile page for account linking
114
 
115
  == Changelog ==
 
 
 
 
 
 
 
 
 
 
 
 
116
 
117
  = 3.0.12 =
118
  * Fix: Further changes to prevent some issues with Theme My Login.
4
  Donate link: https://www.facebook.com/nextendweb
5
  Requires at least: 4.5
6
  Tested up to: 4.9
7
+ Stable tag: 3.0.13
8
  Requires PHP: 5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
65
  = Can I make my site GDPR compliant with Nextend Social Login installed? =
66
  Sure, Nextend Social Login provides you the tools to make your site GDPR compliant. [Check out the Nextend Social Login GDPR documentation](https://nextendweb.com/nextend-social-login-docs/gdpr/) to learn more about the topic.
67
 
68
+ = 1. Where does Nextend Social Login display the social login buttons? =
69
+ The free version of Nextend Social Login displays the social login buttons automatically on the /wp-login.php's login form and all forms made using the wp_login_form action.
70
+ You can use Nextend Social Login's widget and shortcodes if you need to display the buttons anywhere. If you need to publish the login buttons in your theme, you can use the [PHP code](https://nextendweb.com/nextend-social-login-docs/theme-developer/).
71
+
72
+ = 2. How can I get the email address from the Twitter users? =
73
  After you set up your APP go to the Settings tab and enter the URL of your Terms of Service and Privacy Policy page. Then hit the Update your settings button. Then go to the Permissions tab and check the "Request email addresses from users" under "Additional Permissions". [There's a documentation](https://nextendweb.com/nextend-social-login-docs/provider-twitter/#get-email) that explains the process with screenshots.
74
 
75
+ = 3. Why are random email addresses generated for users registering with their FaceBook account? =
76
  When the user tries to register with their Facebook account Facebook pops up a window where each user can view what kind of access they give for the app. In this modal they can chose not to share their email address. When they're doing so we generate a random email address for them. They can of course change this at their profile.
77
  If the permission is given to the app, there are still [other factors](https://nextendweb.com/nextend-social-login-docs/provider-facebook/#get-email) which can result Facebook not sending back any email address.
78
 
79
  In the Pro Addon it's possible to ask an email address if it's not returned by Facebook.
80
 
81
+ = 4. What should I do when I experience any problems? =
82
  [Contact us](https://nextendweb.com/contact-us/) via email and explain the issue you have.
83
 
84
+ = 5. How can I translate the plugin? =
85
  Find the `.pot` file at the /languages folder. From that you can start the translation process. [Drop us](https://nextendweb.com/contact-us/) the final `.po` and `.mo` files and we'll put them to the next releases.
86
 
87
+ = 6. I have a feature request... =
88
  That's awesome! [Contact us](https://nextendweb.com/contact-us/) and let's discuss the details.
89
 
90
+ = 7. Does Nextend Social Login work with BuddyPress? =
91
+ Nextend Social Login Free version does not have BuddyPress specific settings and the login buttons will not appear there. However your users will still be able login and register at the normal WordPress login page. Then when logged in they can use every BuddyPress feature their current user role have access to.
92
+
93
+ Using the Pro Addon you can set where the login buttons should appear on the Register form and how they should look like.
94
 
95
  == Installation ==
96
 
119
  2. Nextend Social Login and Register in the profile page for account linking
120
 
121
  == Changelog ==
122
+ = 3.0.13 =
123
+ * Fix: Twitter Getting Started and Settings page updated according to the new Twitter App creation.
124
+ * Fix: Won't stuck on a blank page anymore when the login and registration is blocked by WP Cerber.
125
+ * Fix: Infinite redirect loop when home page was selected as OAuth redirect uri proxy page.
126
+ * Fix: Safari will no longer close the page automatically after logging in with NSL.
127
+ * Feature: Login restriction - Some plugins are now able to prevent the login of NSL when admin approval or email verification is necessary!
128
+ * Feature: Google button skins.
129
+ * Feature: Portuguese (Brazilian) translation added.
130
+
131
+ * PRO: Fix: USM Premium prevented the authorization of NSL Pro Addon.
132
+ * PRO: Fix: WooCommerce default button layout fix for Billing.
133
+ * PRO: Fix: Separator duplication by some themes.
134
 
135
  = 3.0.12 =
136
  * Fix: Further changes to prevent some issues with Theme My Login.
template-parts/style.css CHANGED
@@ -39,15 +39,23 @@ div.nsl-container .nsl-button-icon {
39
  display: inline-block;
40
  }
41
 
 
 
 
 
 
 
 
 
 
 
42
  div.nsl-container svg {
43
  height: 24px;
44
  width: 24px;
45
  vertical-align: top;
46
- margin: 8px;
47
- flex: 0 0 auto;
48
  }
49
 
50
- div.nsl-container .nsl-button-default span {
51
  margin: 0 24px 0 12px;
52
  padding: 10px 0;
53
  font-family: Helvetica, Arial, sans-serif;
@@ -61,4 +69,17 @@ div.nsl-container .nsl-button-default span {
61
  flex: 1 1 auto;
62
  -webkit-font-smoothing: antialiased;
63
  -moz-osx-font-smoothing: grayscale;
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  }
39
  display: inline-block;
40
  }
41
 
42
+ div.nsl-container .nsl-button-svg-container {
43
+ flex: 0 0 auto;
44
+ padding: 8px;
45
+ display: flex;
46
+ }
47
+
48
+ div.nsl-container span {
49
+ display: inline-block;
50
+ }
51
+
52
  div.nsl-container svg {
53
  height: 24px;
54
  width: 24px;
55
  vertical-align: top;
 
 
56
  }
57
 
58
+ div.nsl-container .nsl-button-default span.nsl-button-label-container {
59
  margin: 0 24px 0 12px;
60
  padding: 10px 0;
61
  font-family: Helvetica, Arial, sans-serif;
69
  flex: 1 1 auto;
70
  -webkit-font-smoothing: antialiased;
71
  -moz-osx-font-smoothing: grayscale;
72
+ }
73
+
74
+ div.nsl-container .nsl-button-google[data-skin="dark"] .nsl-button-svg-container {
75
+ margin: 1px;
76
+ padding: 7px;
77
+ border-radius: 3px;
78
+ background: #fff;
79
+ }
80
+
81
+ div.nsl-container .nsl-button-google[data-skin="light"] {
82
+ border-radius: 1px;
83
+ box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .25);
84
+ color: RGBA(0, 0, 0, 0.54);
85
  }