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

Version Description

  • Fix: Conflict with Login with Ajax reset password.
  • Fix: BuddyPress related themes, that render the avatar with the bp_displayed_user_avatar() will be able to get the avatar of the user.
  • Fix: New email and profile Google scopes, since old ones became deprecated.
  • Fix: WooCommerce User Email Verification plugin prevented users with NSL from logging in.
  • Fix: registerComplete function is hooked later to let other plugins send their email notifications.
  • Old Nextend Twitter/Google Connect - backwards compatibility notice added. In the next release the backward compatibility will be removed.

  • PRO: Fix: Ultimate Member - missing avatar when Support login restriction is disabled.

  • PRO: Fix: Authorized domain notification when the page was authorized on non www but was visited on www or vice versa.

  • PRO: New provider - WordPress.com

  • PRO: New provider - Disqus

Download this release

Release Info

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

Code changes from version 3.0.13 to 3.0.14

admin/EditUser.php CHANGED
@@ -16,26 +16,31 @@
16
  <tbody>
17
  <?php foreach ($provider->getSyncFields() AS $fieldName => $fieldData): ?>
18
  <tr>
19
- <th><label><?php echo $fieldData['label'] ?></label></th>
20
- <td>
21
- <?php
22
- $meta_key = $settings->get('sync_fields/fields/' . $fieldName . '/meta_key');
23
- $value = get_user_meta($user->ID, $meta_key, true);
24
- if (!empty($value)) {
25
- $unSerialized = maybe_unserialize($value);
26
- if (is_array($unSerialized) || is_object($unSerialized)) {
27
 
28
- echo "<pre>";
29
- print_r(formatUserMeta((array)$unSerialized));
30
 
31
- echo "</pre>";
32
- } else {
33
- echo esc_html($value);
34
- }
35
- $hasData = true;
36
- }
37
- ?>
38
- </td>
 
 
 
 
 
39
  </tr>
40
  <?php endforeach; ?>
41
 
16
  <tbody>
17
  <?php foreach ($provider->getSyncFields() AS $fieldName => $fieldData): ?>
18
  <tr>
19
+ <?php
20
+ $meta_key = $settings->get('sync_fields/fields/' . $fieldName . '/meta_key');
21
+ $value = get_user_meta($user->ID, $meta_key, true);
22
+ if (isset($value) && $value !== '') {
23
+ ?>
24
+ <th><label><?php echo $fieldData['label'] ?></label></th>
25
+ <td>
26
+ <?php
27
 
28
+ $unSerialized = maybe_unserialize($value);
29
+ if (is_array($unSerialized) || is_object($unSerialized)) {
30
 
31
+ echo "<pre>";
32
+ print_r(formatUserMeta((array)$unSerialized));
33
+
34
+ echo "</pre>";
35
+ } else {
36
+ echo esc_html($value);
37
+ }
38
+ $hasData = true;
39
+ ?>
40
+ </td>
41
+ <?php
42
+ }
43
+ ?>
44
  </tr>
45
  <?php endforeach; ?>
46
 
admin/admin.php CHANGED
@@ -241,7 +241,7 @@ class NextendSocialLoginAdmin {
241
  NextendSocialLogin::$settings->update($_POST);
242
 
243
  if (NextendSocialLogin::$settings->get('license_key_ok') == '1') {
244
- \NSL\Notices::addSuccess(__('The authorization was successful', 'nextend-facebook-connect'));
245
  }
246
 
247
  wp_redirect(self::getAdminUrl($view));
@@ -252,7 +252,7 @@ class NextendSocialLoginAdmin {
252
  'license_key' => ''
253
  ));
254
 
255
- \NSL\Notices::addSuccess(__('Deauthorize completed.', 'nextend-facebook-connect'));
256
 
257
  wp_redirect(self::getAdminUrl('pro-addon'));
258
  exit;
@@ -566,6 +566,44 @@ class NextendSocialLoginAdmin {
566
  }
567
  }
568
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
569
  public static function show_woocommerce_notice() {
570
  $dismissUrl = wp_nonce_url(add_query_arg(array('redirect_to' => NextendSocialLogin::getCurrentPageURL()), NextendSocialLoginAdmin::getAdminUrl('dismiss_woocommerce')), 'nsl_dismiss_woocommerce');
571
  echo '<div class="notice notice-info">
@@ -601,13 +639,13 @@ class NextendSocialLoginAdmin {
601
  $authorizeUrl = NextendSocialLoginAdmin::trackUrl('https://secure.nextendweb.com/authorize/', 'authorize');
602
  ?>
603
  <div class="nsl-box nsl-box-yellow nsl-box-padlock">
604
- <h2 class="title"><?php _e('Authorize your Pro Addon', 'nextend-facebook-connect'); ?></h2>
605
- <p><?php _e('To be able to use the Pro features, you need to authorize Nextend Social Connect Pro Addon. You can do this by clicking on the Authorize button below then select the related purchase.', 'nextend-facebook-connect'); ?></p>
606
 
607
  <p>
608
  <a href="#"
609
  onclick="window.authorizeWindow = NSLPopupCenter('<?php echo $authorizeUrl; ?>', 'authorize-window', 800, 800);return false;"
610
- class="button button-primary"><?php _e('Authorize', 'nextend-facebook-connect'); ?></a>
611
  </p>
612
  </div>
613
 
241
  NextendSocialLogin::$settings->update($_POST);
242
 
243
  if (NextendSocialLogin::$settings->get('license_key_ok') == '1') {
244
+ \NSL\Notices::addSuccess(__('The activation was successful', 'nextend-facebook-connect'));
245
  }
246
 
247
  wp_redirect(self::getAdminUrl($view));
252
  'license_key' => ''
253
  ));
254
 
255
+ \NSL\Notices::addSuccess(__('Deactivate completed.', 'nextend-facebook-connect'));
256
 
257
  wp_redirect(self::getAdminUrl('pro-addon'));
258
  exit;
566
  }
567
  }
568
 
569
+ /* Legacy compatibility cessation notice */
570
+ public static function show_facebook_compat_cessation_notice() {
571
+ global $pagenow;
572
+ if (!($pagenow == 'options-general.php' && $_GET['view'] == 'provider-facebook' && $_GET['subview'] == 'import' )) {
573
+ echo '<div class="error">
574
+ <p>' . sprintf(__('%2$s detected that you have saved configurations related to %1$s, which is discontinued and the backwards compatibility will be removed in the next release of %2$s. Please import the current settings of %1$s and replace your old social buttons with NSL!', 'nextend-facebook-connect'), 'Nextend Facebook Connect', '<b>Nextend Social Login</b>') . '</p>
575
+ <p class="submit"><a href="' . add_query_arg(array(
576
+ 'subview' => 'import'
577
+ ), NextendSocialLoginAdmin::getAdminUrl('provider-google')) . '" class="button button-primary">' . __('Import', 'nextend-facebook-connect') . ' - Facebook ' . __('Legacy Settings', 'nextend-facebook-connect') . '</a></p>
578
+ </div>';
579
+ }
580
+ }
581
+
582
+ public static function show_google_compat_cessation_notice() {
583
+ global $pagenow;
584
+ if (!($pagenow == 'options-general.php' && $_GET['view'] == 'provider-google' && $_GET['subview'] == 'import' )) {
585
+ echo '<div class="error">
586
+ <p>' . sprintf(__('%2$s detected that you have saved configurations related to %1$s, which is discontinued and the backwards compatibility will be removed in the next release of %2$s. Please import the current settings of %1$s and replace your old social buttons with NSL!', 'nextend-facebook-connect'), 'Nextend Google Connect', '<b>Nextend Social Login</b>') . '</p>
587
+ <p class="submit"><a href="' . add_query_arg(array(
588
+ 'subview' => 'import'
589
+ ), NextendSocialLoginAdmin::getAdminUrl('provider-google')) . '" class="button button-primary">' . __('Import', 'nextend-facebook-connect') . ' - Google ' . __('Legacy Settings', 'nextend-facebook-connect') . '</a></p>
590
+ </div>';
591
+ }
592
+ }
593
+
594
+ public static function show_twitter_compat_cessation_notice() {
595
+ global $pagenow;
596
+ if (!($pagenow == 'options-general.php' && $_GET['view'] == 'provider-twitter' && $_GET['subview'] == 'import' )) {
597
+ echo '<div class="error">
598
+ <p>' . sprintf(__('%2$s detected that you have saved configurations related to %1$s, which is discontinued and the backwards compatibility will be removed in the next release of %2$s. Please import the current settings of %1$s and replace your old social buttons with NSL!', 'nextend-facebook-connect'), 'Nextend Twitter Connect', '<b>Nextend Social Login</b>') . '</p>
599
+ <p class="submit"><a href="' . add_query_arg(array(
600
+ 'subview' => 'import'
601
+ ), NextendSocialLoginAdmin::getAdminUrl('provider-twitter')) . '" class="button button-primary">' . __('Import', 'nextend-facebook-connect') . ' - Twitter ' . __('Legacy Settings', 'nextend-facebook-connect') . '</a></p>
602
+ </div>';
603
+ }
604
+ }
605
+ /* Legacy compatibility cessation notice end */
606
+
607
  public static function show_woocommerce_notice() {
608
  $dismissUrl = wp_nonce_url(add_query_arg(array('redirect_to' => NextendSocialLogin::getCurrentPageURL()), NextendSocialLoginAdmin::getAdminUrl('dismiss_woocommerce')), 'nsl_dismiss_woocommerce');
609
  echo '<div class="notice notice-info">
639
  $authorizeUrl = NextendSocialLoginAdmin::trackUrl('https://secure.nextendweb.com/authorize/', 'authorize');
640
  ?>
641
  <div class="nsl-box nsl-box-yellow nsl-box-padlock">
642
+ <h2 class="title"><?php _e('Activate your Pro Addon', 'nextend-facebook-connect'); ?></h2>
643
+ <p><?php _e('To be able to use the Pro features, you need to activate Nextend Social Connect Pro Addon. You can do this by clicking on the Activate button below then select the related purchase.', 'nextend-facebook-connect'); ?></p>
644
 
645
  <p>
646
  <a href="#"
647
  onclick="window.authorizeWindow = NSLPopupCenter('<?php echo $authorizeUrl; ?>', 'authorize-window', 800, 800);return false;"
648
+ class="button button-primary"><?php _e('Activate', 'nextend-facebook-connect'); ?></a>
649
  </p>
650
  </div>
651
 
admin/templates/debug.php CHANGED
@@ -10,32 +10,32 @@
10
 
11
  if (NextendSocialLoginAdmin::isPro()) {
12
  $proAddonState = NextendSocialLoginAdmin::getProState();
13
- echo "<p><b>Pro Addon State</b> : " . $proAddonState . "</p>";
14
 
15
  $authorizedDomain = NextendSocialLogin::$settings->get('authorized_domain');
16
- echo "<p><b>Authorized Domain</b> : " . $authorizedDomain . "</p>";
17
 
18
  $currentDomain = NextendSocialLogin::getDomain();
19
- echo "<p><b>Current Domain</b> : " . $currentDomain . "</p><br>";
20
 
21
  $licenseKey = substr(NextendSocialLogin::$settings->get('license_key'), 0, 8);
22
- echo "<p><b>License Key</b> : " . $licenseKey . "...</p>";
23
 
24
  $isLicenseKeyOk = NextendSocialLogin::$settings->get('license_key_ok');
25
- echo "<p><b>License Key OK</b> : " . (boolval($isLicenseKeyOk) ? 'Yes' : 'No') . "</p><br>";
26
  }
27
 
28
  $defaultRedirect = NextendSocialLogin::$settings->get('default_redirect');
29
- echo "<p><b>Default Redirect URL</b> : " . $defaultRedirect . "</p>";
30
 
31
  $defaultRedirectReg = NextendSocialLogin::$settings->get('default_redirect_reg');
32
- echo "<p><b>Default Reg Redirect URL</b> : " . $defaultRedirectReg . "</p><br>";
33
 
34
  $fixRedirect = NextendSocialLogin::$settings->get('redirect');
35
- echo "<p><b>Fix Redirect URL</b> : " . $fixRedirect . "</p>";
36
 
37
  $fixRedirectReg = NextendSocialLogin::$settings->get('redirect_reg');
38
- echo "<p><b>Fix Reg Redirect URL</b> : " . $fixRedirectReg . "</p><br>";
39
 
40
  echo '<h1>' . __('Test network connection with providers', 'nextend-facebook-connect') . '</h1>';
41
 
10
 
11
  if (NextendSocialLoginAdmin::isPro()) {
12
  $proAddonState = NextendSocialLoginAdmin::getProState();
13
+ echo "<p><b>Pro Addon State</b>: " . $proAddonState . "</p>";
14
 
15
  $authorizedDomain = NextendSocialLogin::$settings->get('authorized_domain');
16
+ echo "<p><b>Authorized Domain</b>: " . $authorizedDomain . "</p>";
17
 
18
  $currentDomain = NextendSocialLogin::getDomain();
19
+ echo "<p><b>Current Domain</b>: " . $currentDomain . "</p><br>";
20
 
21
  $licenseKey = substr(NextendSocialLogin::$settings->get('license_key'), 0, 8);
22
+ echo "<p><b>License Key</b>: " . $licenseKey . "...</p>";
23
 
24
  $isLicenseKeyOk = NextendSocialLogin::$settings->get('license_key_ok');
25
+ echo "<p><b>License Key OK</b>: " . (boolval($isLicenseKeyOk) ? 'Yes' : 'No') . "</p><br>";
26
  }
27
 
28
  $defaultRedirect = NextendSocialLogin::$settings->get('default_redirect');
29
+ echo "<p><b>Default Redirect URL</b>: " . $defaultRedirect . "</p>";
30
 
31
  $defaultRedirectReg = NextendSocialLogin::$settings->get('default_redirect_reg');
32
+ echo "<p><b>Default Reg Redirect URL</b>: " . $defaultRedirectReg . "</p><br>";
33
 
34
  $fixRedirect = NextendSocialLogin::$settings->get('redirect');
35
+ echo "<p><b>Fix Redirect URL</b>: " . $fixRedirect . "</p>";
36
 
37
  $fixRedirectReg = NextendSocialLogin::$settings->get('redirect_reg');
38
+ echo "<p><b>Fix Reg Redirect URL</b>: " . $fixRedirectReg . "</p><br>";
39
 
40
  echo '<h1>' . __('Test network connection with providers', 'nextend-facebook-connect') . '</h1>';
41
 
admin/templates/domain-changed.php CHANGED
@@ -25,7 +25,7 @@
25
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://secure.nextendweb.com/" target="_blank">https://secure.nextendweb.com/</a>'); ?></li>
26
  <li><?php _e('Log in with your credentials if you are not logged in', 'nextend-facebook-connect'); ?></li>
27
  <li><?php printf(__('Find your old domain name: <b>%s</b>', 'nextend-facebook-connect'), $authorizedDomain); ?></li>
28
- <li><?php printf(__('Click on the %1$s next to your domain name.', 'nextend-facebook-connect'), '"Deauthorize"'); ?></li>
29
  <li><?php printf(__('Authorize your %1$s by clicking on the following button.', 'nextend-facebook-connect'), "Nextend Social Login Pro Addon"); ?></li>
30
  </ol>
31
  <?php
25
  <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://secure.nextendweb.com/" target="_blank">https://secure.nextendweb.com/</a>'); ?></li>
26
  <li><?php _e('Log in with your credentials if you are not logged in', 'nextend-facebook-connect'); ?></li>
27
  <li><?php printf(__('Find your old domain name: <b>%s</b>', 'nextend-facebook-connect'), $authorizedDomain); ?></li>
28
+ <li><?php printf(__('Click on the %1$s next to your domain name.', 'nextend-facebook-connect'), '"Deactivate"'); ?></li>
29
  <li><?php printf(__('Authorize your %1$s by clicking on the following button.', 'nextend-facebook-connect'), "Nextend Social Login Pro Addon"); ?></li>
30
  </ol>
31
  <?php
admin/templates/pro-addon.php CHANGED
@@ -34,7 +34,7 @@ function nsl_license_installed($view) {
34
  'action' => 'nextend-social-login',
35
  'view' => 'pro-addon-deauthorize'
36
  ), admin_url('admin-post.php')), 'nextend-social-login'); ?>" class="button button-secondary">
37
- <?php _e('Deauthorize Pro Addon', 'nextend-facebook-connect'); ?>
38
  </a>
39
  </p>
40
  </div>
@@ -117,14 +117,14 @@ function nsl_license_activated($view) {
117
  <div class="nsl-box nsl-box-green">
118
  <h2 class="title"><?php _e('Pro Addon is installed and activated', 'nextend-facebook-connect'); ?></h2>
119
 
120
- <p><?php _e('You installed and activated the Pro Addon. If you don’t want to use it anymore, you can deauthorize using the button below.', 'nextend-facebook-connect'); ?></p>
121
 
122
  <p class="submit">
123
  <a href="<?php echo wp_nonce_url(add_query_arg(array(
124
  'action' => 'nextend-social-login',
125
  'view' => 'pro-addon-deauthorize'
126
  ), admin_url('admin-post.php')), 'nextend-social-login'); ?>" class="button button-secondary">
127
- <?php _e('Deauthorize Pro Addon', 'nextend-facebook-connect'); ?>
128
  </a>
129
  </p>
130
  </div>
34
  'action' => 'nextend-social-login',
35
  'view' => 'pro-addon-deauthorize'
36
  ), admin_url('admin-post.php')), 'nextend-social-login'); ?>" class="button button-secondary">
37
+ <?php _e('Deactivate Pro Addon', 'nextend-facebook-connect'); ?>
38
  </a>
39
  </p>
40
  </div>
117
  <div class="nsl-box nsl-box-green">
118
  <h2 class="title"><?php _e('Pro Addon is installed and activated', 'nextend-facebook-connect'); ?></h2>
119
 
120
+ <p><?php _e('You installed and activated the Pro Addon. If you don’t want to use it anymore, you can deactivate using the button below.', 'nextend-facebook-connect'); ?></p>
121
 
122
  <p class="submit">
123
  <a href="<?php echo wp_nonce_url(add_query_arg(array(
124
  'action' => 'nextend-social-login',
125
  'view' => 'pro-addon-deauthorize'
126
  ), admin_url('admin-post.php')), 'nextend-social-login'); ?>" class="button button-secondary">
127
+ <?php _e('Deactivate Pro Addon', 'nextend-facebook-connect'); ?>
128
  </a>
129
  </p>
130
  </div>
includes/avatar.php CHANGED
@@ -103,12 +103,49 @@ class NextendSocialLoginAvatar {
103
  }
104
  }
105
 
106
- UM()->user()->remove_cache($user_id);
 
 
107
  };
108
 
109
  return;
110
  }
111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  /**
113
  * $original_attachment_id is false, if the user has had avatar set but the path is not found.
114
  */
103
  }
104
  }
105
 
106
+ UM()
107
+ ->user()
108
+ ->remove_cache($user_id);
109
  };
110
 
111
  return;
112
  }
113
 
114
+ //upload user avatar for BuddyPress - bp_displayed_user_avatar() function
115
+ if (class_exists('BuddyPress', false)) {
116
+ if (!empty($avatarUrl)) {
117
+ $extension = 'jpg';
118
+ if (preg_match('/\.(jpg|jpeg|gif|png)/', $avatarUrl, $match)) {
119
+ $extension = $match[1];
120
+ }
121
+
122
+ require_once(ABSPATH . '/wp-admin/includes/file.php');
123
+ $avatarTempPath = download_url($avatarUrl);
124
+
125
+ if (!is_wp_error($avatarTempPath)) {
126
+ $pathInfo = xprofile_avatar_upload_dir('avatars', $user_id);
127
+
128
+ if (wp_mkdir_p($pathInfo['path'])) {
129
+ if ($av_dir = opendir($pathInfo['path'] . '/')) {
130
+ $hasAvatar = false;
131
+ while (false !== ($avatar_file = readdir($av_dir))) {
132
+ if ((preg_match("/-bpfull/", $avatar_file) || preg_match("/-bpthumb/", $avatar_file))) {
133
+ $hasAvatar = true;
134
+ break;
135
+ }
136
+ }
137
+ if (!$hasAvatar) {
138
+ copy($avatarTempPath, $pathInfo['path'] . '/' . 'avatar-bpfull.' . $extension);
139
+ rename($avatarTempPath, $pathInfo['path'] . '/' . 'avatar-bpthumb.' . $extension);
140
+ }
141
+ }
142
+ closedir($av_dir);
143
+ }
144
+ }
145
+ }
146
+ }
147
+
148
+
149
  /**
150
  * $original_attachment_id is false, if the user has had avatar set but the path is not found.
151
  */
includes/user.php CHANGED
@@ -265,7 +265,7 @@ class NextendSocialUser {
265
  add_action('user_register', array(
266
  $this,
267
  'registerComplete'
268
- ), 11);
269
 
270
  $this->userExtraData = $userData;
271
 
@@ -292,6 +292,19 @@ class NextendSocialUser {
292
  }
293
  }
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  $error = wp_insert_user($user_data);
296
 
297
  if (is_wp_error($error)) {
@@ -360,8 +373,9 @@ class NextendSocialUser {
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()
@@ -369,6 +383,12 @@ class NextendSocialUser {
369
  do_action('um_user_register', $user_id, array());
370
  }
371
 
 
 
 
 
 
 
372
  $this->login($user_id);
373
 
374
  return true;
265
  add_action('user_register', array(
266
  $this,
267
  'registerComplete'
268
+ ), 31);
269
 
270
  $this->userExtraData = $userData;
271
 
292
  }
293
  }
294
 
295
+ //Prevent sending the Woocommerce User Email Verification notification if Login restriction is turned off.
296
+ if (class_exists('XLWUEV_Core', false) && !$loginRestriction) {
297
+ remove_action('user_register', array(
298
+ XLWUEV_Woocommerce_Confirmation_Email_Public::instance(),
299
+ 'custom_form_user_register'
300
+ ), 10);
301
+ remove_action('woocommerce_created_customer_notification', array(
302
+ XLWUEV_Woocommerce_Confirmation_Email_Public::instance(),
303
+ 'new_user_registration_from_registration_form'
304
+ ), 10);
305
+ }
306
+
307
+
308
  $error = wp_insert_user($user_data);
309
 
310
  if (is_wp_error($error)) {
373
 
374
  do_action('register_new_user', $user_id);
375
 
376
+ /*Ultimate Member Registration integration -> Registration notificationhoz*/
377
+ $loginRestriction = NextendSocialLogin::$settings->get('login_restriction');
378
+ if (class_exists('UM', false) && $loginRestriction) {
379
  //Necessary to clear the UM user cache that was generated by: um\core\User:set_gravatar
380
  UM()
381
  ->user()
383
  do_action('um_user_register', $user_id, array());
384
  }
385
 
386
+
387
+ //Woocommerce User Email Verification integration - By default it blocks login with NSL
388
+ if (class_exists('XLWUEV_Core', false) && !$loginRestriction) {
389
+ update_user_meta($user_id, 'wcemailverified', 'true');
390
+ }
391
+
392
  $this->login($user_id);
393
 
394
  return true;
languages/nextend-facebook-connect-es_LA.mo CHANGED
Binary file
languages/nextend-facebook-connect-es_LA.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 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"
@@ -129,11 +129,15 @@ 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
@@ -203,13 +207,20 @@ 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 "
@@ -217,8 +228,9 @@ msgstr ""
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"
@@ -298,9 +310,11 @@ msgstr "Botón de icono"
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
 
@@ -310,9 +324,11 @@ msgstr "Guardar Cambios"
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"
318
 
@@ -525,12 +541,16 @@ msgstr ""
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"
@@ -640,8 +660,10 @@ msgstr ""
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
 
646
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
647
  #: nextend-facebook-connect/admin/templates/pro.php:43
@@ -673,9 +695,13 @@ 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."
679
  msgstr ""
680
  "Instalaste y activaste el Pro Addon. Si no deseas volver a utilizarlo, "
681
  "puedes eliminar la autorización utilizando el siguiente botón."
@@ -1242,7 +1268,7 @@ 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>"
@@ -1530,23 +1556,23 @@ msgstr ""
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,7 +1581,7 @@ msgstr ""
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,12 +1590,12 @@ msgstr ""
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
 
@@ -1648,9 +1674,11 @@ msgstr ""
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"
@@ -1744,12 +1772,14 @@ msgstr ""
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"
1755
  msgstr "He terminado de configurar mi %s"
@@ -1899,12 +1929,16 @@ msgstr "App ID"
1899
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1900
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
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"
1909
  msgstr "Obligatorio"
1910
 
@@ -1912,9 +1946,11 @@ msgstr "Obligatorio"
1912
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
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 ""
1920
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -1943,9 +1979,11 @@ msgstr "Desenlazar cuenta de <b>Facebook</b>"
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."
@@ -1986,7 +2024,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
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>"
@@ -2033,35 +2071,55 @@ msgstr ""
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 "
@@ -2091,12 +2149,14 @@ msgstr ""
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
 
2097
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
2098
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2099
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
 
2100
  msgid "Client Secret"
2101
  msgstr "Client Secret"
2102
 
@@ -2211,6 +2271,7 @@ msgid "Go to the Settings tab."
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
 
@@ -2362,10 +2423,6 @@ msgstr ""
2362
  msgid "Please install and activate %1$s to use the %2$s"
2363
  msgstr "Por favor instala y activa %1$s para usar el %2$s"
2364
 
2365
- #: nextend-social-login-pro/nextend-social-login-pro.php:57
2366
- msgid "Activate"
2367
- msgstr "Activar"
2368
-
2369
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2370
  msgid "Network Activate"
2371
  msgstr "Activar Red"
@@ -2401,7 +2458,9 @@ 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 "
@@ -2417,9 +2476,13 @@ msgstr ""
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."
@@ -2486,6 +2549,115 @@ msgstr "Enlazar cuenta con <b>Amazon</b>"
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"
@@ -2513,6 +2685,7 @@ msgid "Fill the fields marked with *"
2513
  msgstr "Llena los campos marcados con *"
2514
 
2515
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
 
2516
  #, php-format
2517
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2518
  msgstr ""
@@ -2552,12 +2725,6 @@ msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
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. "
@@ -2733,6 +2900,86 @@ msgstr "Enlazar cuenta con <b>VK</b>"
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
@@ -2765,65 +3012,32 @@ msgstr "O"
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"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2018-09-20 13:46+0200\n"
5
+ "PO-Revision-Date: 2018-09-20 13:47+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
129
  msgstr "Ajustes guardados."
130
 
131
  #: nextend-facebook-connect/admin/admin.php:244
132
+ #, fuzzy
133
+ #| msgid "The authorization was successful"
134
+ msgid "The activation was successful"
135
  msgstr "La autorización fue exitosa"
136
 
137
  #: nextend-facebook-connect/admin/admin.php:255
138
+ #, fuzzy
139
+ #| msgid "Deauthorize completed."
140
+ msgid "Deactivate completed."
141
  msgstr "Desautorizar completado."
142
 
143
  #: nextend-facebook-connect/admin/admin.php:429
207
  msgstr "Arreglar Error"
208
 
209
  #: nextend-facebook-connect/admin/admin.php:604
210
+ #, fuzzy
211
+ #| msgid "Activate Pro Addon"
212
+ msgid "Activate your Pro Addon"
213
+ msgstr "Activar Pro Addon"
214
 
215
  #: nextend-facebook-connect/admin/admin.php:605
216
+ #, fuzzy
217
+ #| msgid ""
218
+ #| "To be able to use the Pro features, you need to authorize Nextend Social "
219
+ #| "Connect Pro Addon. You can do this by clicking on the Authorize button "
220
+ #| "below then select the related purchase."
221
  msgid ""
222
+ "To be able to use the Pro features, you need to activate Nextend Social "
223
+ "Connect Pro Addon. You can do this by clicking on the Activate button below "
224
  "then select the related purchase."
225
  msgstr ""
226
  "Para poder usar las funciones Pro, debes autorizar Nextend Social Connect "
228
  "continuación y luego seleccionar la compra relacionada."
229
 
230
  #: nextend-facebook-connect/admin/admin.php:610
231
+ #: nextend-social-login-pro/nextend-social-login-pro.php:57
232
+ msgid "Activate"
233
+ msgstr "Activar"
234
 
235
  #: nextend-facebook-connect/admin/admin.php:667
236
  msgid "License key"
310
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
311
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
312
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
313
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
314
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
315
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
316
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
317
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
318
  msgid "Save Changes"
319
  msgstr "Guardar Cambios"
320
 
324
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
325
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
326
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
327
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
328
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
329
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
330
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
331
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
332
  msgid "Getting Started"
333
  msgstr "Empezando"
334
 
541
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
542
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
543
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
544
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
545
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15
546
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
547
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
548
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
549
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
550
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
551
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
552
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
553
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15
554
  #, php-format
555
  msgid "Navigate to %s"
556
  msgstr "Navegar a %s"
660
 
661
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
662
  #: nextend-facebook-connect/admin/templates/pro-addon.php:127
663
+ #, fuzzy
664
+ #| msgid "Activate Pro Addon"
665
+ msgid "Deactivate Pro Addon"
666
+ msgstr "Activar Pro Addon"
667
 
668
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
669
  #: nextend-facebook-connect/admin/templates/pro.php:43
695
  msgstr "Pro Addon está instalado y activado"
696
 
697
  #: nextend-facebook-connect/admin/templates/pro-addon.php:120
698
+ #, fuzzy
699
+ #| msgid ""
700
+ #| "You installed and activated the Pro Addon. If you don’t want to use it "
701
+ #| "anymore, you can deauthorize using the button below."
702
  msgid ""
703
  "You installed and activated the Pro Addon. If you don’t want to use it "
704
+ "anymore, you can deactivate using the button below."
705
  msgstr ""
706
  "Instalaste y activaste el Pro Addon. Si no deseas volver a utilizarlo, "
707
  "puedes eliminar la autorización utilizando el siguiente botón."
1268
  msgstr "Enlazar botones de enlace después de los detalles de la cuenta"
1269
 
1270
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1271
+ #: nextend-facebook-connect/nextend-social-login.php:158
1272
  msgid ""
1273
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1274
  "\"_blank\">Privacy Policy</a>"
1556
  "%1$s requiere la versión de WordPress %2$s+. Desde estás utilizando una "
1557
  "versión anterior, el plugin NO ESTÁ ACTIVO."
1558
 
1559
+ #: nextend-facebook-connect/nextend-social-login.php:80
1560
+ #: nextend-facebook-connect/nextend-social-login.php:87
1561
  #, php-format
1562
  msgid "Please update %1$s to version %2$s or newer."
1563
  msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
1564
 
1565
+ #: nextend-facebook-connect/nextend-social-login.php:80
1566
+ #: nextend-facebook-connect/nextend-social-login.php:87
1567
  msgid "Update now!"
1568
  msgstr "¡Actualizar ahora!"
1569
 
1570
+ #: nextend-facebook-connect/nextend-social-login.php:94
1571
  #, php-format
1572
  msgid "Your domain name changed so you must authorize %1$s again."
1573
  msgstr ""
1574
 
1575
+ #: nextend-facebook-connect/nextend-social-login.php:488
1576
  #, php-format
1577
  msgid ""
1578
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1581
  "%s ha reemplazado Nextend Google Connect. Puedes eliminar Nextend Google "
1582
  "Connect porque ya no es necesario."
1583
 
1584
+ #: nextend-facebook-connect/nextend-social-login.php:499
1585
  #, php-format
1586
  msgid ""
1587
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1590
  "%s ha reemplazado Nextend Twitter Connect. Puedes eliminar Nextend Twitter "
1591
  "Connect porque ya no es necesario."
1592
 
1593
+ #: nextend-facebook-connect/nextend-social-login.php:763
1594
+ #: nextend-facebook-connect/nextend-social-login.php:1109
1595
  msgid "Social Login"
1596
  msgstr "Social Login"
1597
 
1598
+ #: nextend-facebook-connect/nextend-social-login.php:1090
1599
  msgid "Social Accounts"
1600
  msgstr "Cuentas Sociales"
1601
 
1674
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1675
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1676
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1677
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12
1678
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1679
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1680
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1681
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12
1682
  #, php-format
1683
  msgctxt "App creation"
1684
  msgid "Create %s"
1772
  "sea pública"
1773
 
1774
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1775
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
1776
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1777
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1778
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
1779
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1780
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1781
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1782
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30
1783
  #, php-format
1784
  msgid "I am done setting up my %s"
1785
  msgstr "He terminado de configurar mi %s"
1929
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1930
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
1931
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1932
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
1933
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
1934
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1935
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1936
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1937
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1938
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1939
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1940
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
1941
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
1942
  msgid "Required"
1943
  msgstr "Obligatorio"
1944
 
1946
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
1947
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1948
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1949
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
1950
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1951
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1952
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1953
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
1954
  #, php-format
1955
  msgid ""
1956
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1979
  #: nextend-facebook-connect/providers/google/google.php:144
1980
  #: nextend-facebook-connect/providers/twitter/twitter.php:105
1981
  #: nextend-social-login-pro/providers/amazon/amazon.php:63
1982
+ #: nextend-social-login-pro/providers/disqus/disqus.php:110
1983
  #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1984
  #: nextend-social-login-pro/providers/paypal/paypal.php:125
1985
  #: nextend-social-login-pro/providers/vk/vk.php:60
1986
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:97
1987
  #, php-format
1988
  msgid ""
1989
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2024
  msgstr "Haz clic en la ID del cliente de OAuth 2.0: %s"
2025
 
2026
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2027
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2028
  #, php-format
2029
  msgid ""
2030
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2071
  "credenciales de API"
2072
 
2073
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2074
+ msgid "Select the OAuth consent screen!"
2075
  msgstr ""
2076
 
2077
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2078
+ msgid ""
2079
+ "Enter a name for your App under the \"Application name\" field, which will "
2080
+ "appear as the name of the app asking for consent."
2081
+ msgstr ""
2082
+
2083
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
2084
+ #, fuzzy, php-format
2085
+ #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2086
+ msgid ""
2087
+ "Fill the \"Authorized domains\" field with your domain name probably: <b>%s</"
2088
+ "b> without subdomains!"
2089
+ msgstr ""
2090
+ "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2091
+
2092
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2093
+ msgid "Press \"Save\" and you will be redirected back to Credentials screen."
2094
+ msgstr ""
2095
+
2096
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2097
  #, fuzzy
2098
  #| msgid ""
2099
+ #| "Go back to the Credentials tab and locate the small box at the middle. "
2100
+ #| "Click on the blue \"Create credentials\" button. Chose the \"OAuth client "
2101
+ #| "ID\" from the dropdown list."
2102
  msgid ""
2103
+ "Click the Create credentials button and select \"OAuth client ID\" from the "
2104
+ "dropdown."
2105
  msgstr ""
2106
+ "Regresa a la pestaña de Credentials y ubica la pequeña caja en el medio. Haz "
2107
+ "clic en el botón azul \"Create credentials\". Elija la \"OAuth client ID\" "
2108
+ "de la lista desplegable."
2109
 
2110
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2111
  msgid "Your application type should be \"Web application\""
2112
  msgstr "Tu tipo de aplicación debe ser \"Web application\""
2113
 
2114
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2115
  msgid "Name your application"
2116
  msgstr "Nombra tu aplicación"
2117
 
2118
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2119
  msgid "Click on the Create button"
2120
  msgstr "Haz clic en el botón Create"
2121
 
2122
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2123
  msgid ""
2124
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2125
  "the Credentials in the left hand menu and select your app by clicking on its "
2149
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2150
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2151
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2152
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2153
  msgid "Client ID"
2154
  msgstr "Client ID"
2155
 
2156
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
2157
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2158
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2159
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2160
  msgid "Client Secret"
2161
  msgstr "Client Secret"
2162
 
2271
  msgstr "Ve a la pestaña de Ajustes."
2272
 
2273
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2274
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2275
  msgid "API Key"
2276
  msgstr ""
2277
 
2423
  msgid "Please install and activate %1$s to use the %2$s"
2424
  msgstr "Por favor instala y activa %1$s para usar el %2$s"
2425
 
 
 
 
 
2426
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2427
  msgid "Network Activate"
2428
  msgstr "Activar Red"
2458
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2459
 
2460
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2461
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2462
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2463
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2464
  #, php-format
2465
  msgid ""
2466
  "To allow your visitors to log in with their %1$s account, first you must "
2476
  "dados según tu aplicación %1$s."
2477
 
2478
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2479
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2480
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2481
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2482
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2483
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2484
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2485
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2486
  #, php-format
2487
  msgid "Log in with your %s credentials if you are not logged in."
2488
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
2549
  msgid "Unlink account from <b>Amazon</b>"
2550
  msgstr "Desenlazar cuenta de <b>Amazon</b>"
2551
 
2552
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
2553
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2554
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
2555
+ #, fuzzy, php-format
2556
+ #| msgid "Click on the Manage button at the App"
2557
+ msgid "Click on the name of your %s App."
2558
+ msgstr "Haz clic en el botón Manage en la App"
2559
+
2560
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12
2561
+ msgid ""
2562
+ "Select the \"Settings\" tab and scroll down to the Authentication section!"
2563
+ msgstr ""
2564
+
2565
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13
2566
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
2567
+ #, fuzzy, php-format
2568
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2569
+ msgid "Add the following URL to the \"Callback URL\" field <b>%s</b> "
2570
+ msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2571
+
2572
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
2573
+ #, fuzzy
2574
+ #| msgid "Click on \"Save Changes\""
2575
+ msgid "Click on the \"Save Changes\" button."
2576
+ msgstr "Haz clic en \"Guardar Cambios\""
2577
+
2578
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2579
+ #, fuzzy
2580
+ #| msgid "Click on the \"Create New App\" button"
2581
+ msgid ""
2582
+ "Click on the link \"registering an application\" under the Applications tab."
2583
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2584
+
2585
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2586
+ msgid "Enter a \"Label\" and \"Description\" for your App."
2587
+ msgstr ""
2588
+
2589
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
2590
+ #, fuzzy, php-format
2591
+ #| msgid ""
2592
+ #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2593
+ msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
2594
+ msgstr ""
2595
+ "Llena \"Website URL\" con la URL de tu página principal, probablemente: <b>"
2596
+ "%s</b>"
2597
+
2598
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
2599
+ #, fuzzy
2600
+ #| msgid "Click on the \"Create New App\" button"
2601
+ msgid ""
2602
+ "Complete the Human test and click the \"Register my application\" button."
2603
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2604
+
2605
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
2606
+ #, fuzzy, php-format
2607
+ #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2608
+ msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2609
+ msgstr ""
2610
+ "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2611
+
2612
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
2613
+ #, fuzzy
2614
+ #| msgid "Find the necessary Authentication Keys under the Authentication menu"
2615
+ msgid ""
2616
+ "Select \"Read only\" at Default Access under the Authentication section."
2617
+ msgstr "Busca las Authentication Keys abajo del menú Authentication"
2618
+
2619
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
2620
+ #, fuzzy
2621
+ #| msgid "Click on the \"Create New App\" button"
2622
+ msgid "Click the \"Save Changes\" button!"
2623
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2624
+
2625
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25
2626
+ msgid "Navigate to the \"Details\" tab of your Application!"
2627
+ msgstr ""
2628
+
2629
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26
2630
+ #, fuzzy
2631
+ #| msgid ""
2632
+ #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2633
+ #| "you click on the \"Show\" button. These will be needed in plugin's "
2634
+ #| "settings."
2635
+ msgid ""
2636
+ "Here you can see your \"API Key\" and \"API Secret:\". These will be needed "
2637
+ "in the plugin's settings."
2638
+ msgstr ""
2639
+ "Aquí puedes ver tu \"APP ID\" y puedes ver tu \"App secret\" si haces clic "
2640
+ "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
2641
+ "plugin."
2642
+
2643
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
2644
+ #, fuzzy
2645
+ #| msgid "App Secret"
2646
+ msgid "API Secret"
2647
+ msgstr "App Secret"
2648
+
2649
+ #: nextend-social-login-pro/providers/disqus/disqus.php:84
2650
+ msgid "Continue with <b>Disqus</b>"
2651
+ msgstr "Sigue con <b>Disqus</b>"
2652
+
2653
+ #: nextend-social-login-pro/providers/disqus/disqus.php:85
2654
+ msgid "Link account with <b>Disqus</b>"
2655
+ msgstr "Enlazar cuenta con <b>Disqus</b>"
2656
+
2657
+ #: nextend-social-login-pro/providers/disqus/disqus.php:86
2658
+ msgid "Unlink account from <b>Disqus</b>"
2659
+ msgstr "Desenlazar cuenta de <b>Disqus</b>"
2660
+
2661
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2662
  msgid "Click on the App"
2663
  msgstr "Haz clic en la App"
2685
  msgstr "Llena los campos marcados con *"
2686
 
2687
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
2688
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
2689
  #, php-format
2690
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2691
  msgstr ""
2725
  msgid "Scroll down to \"REST API apps\"."
2726
  msgstr ""
2727
 
 
 
 
 
 
 
2728
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2729
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2730
  msgid "Select the \"Live\" option on the top-right side. "
2900
  msgid "Unlink account from <b>VK</b>"
2901
  msgstr "Desenlazar cuenta de <b>VK</b>"
2902
 
2903
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12
2904
+ msgid "Click \"Manage Settings\" under the Tools section!"
2905
+ msgstr ""
2906
+
2907
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13
2908
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
2909
+ #, fuzzy, php-format
2910
+ #| msgid ""
2911
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2912
+ #| "b>"
2913
+ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2914
+ msgstr ""
2915
+ "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2916
+
2917
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
2918
+ #, fuzzy
2919
+ #| msgid "Click on \"Save\""
2920
+ msgid "Click on \"Update\""
2921
+ msgstr "Haz clic en \"Guardar Cambios\""
2922
+
2923
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2924
+ #, fuzzy
2925
+ #| msgid "Click on the \"Create New App\" button"
2926
+ msgid "Click on the \"Create New Application\" button."
2927
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2928
+
2929
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2930
+ msgid "Enter a \"Name\" and \"Description\" for your App."
2931
+ msgstr ""
2932
+
2933
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
2934
+ msgid "You can leave the \"Javascript Origins\" field blank!"
2935
+ msgstr ""
2936
+
2937
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22
2938
+ msgid "Complete the human verification test."
2939
+ msgstr ""
2940
+
2941
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23
2942
+ msgid "At the \"Type\" make sure \"Web\" is selected!"
2943
+ msgstr ""
2944
+
2945
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
2946
+ #, fuzzy
2947
+ #| msgid "Click on the \"Create New App\" button"
2948
+ msgid "Click the \"Create\" button!"
2949
+ msgstr "Haz clic en el botón de \"Create New App\" por favor"
2950
+
2951
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25
2952
+ msgid ""
2953
+ "Click the name of your App either in the Breadcrumb navigation or next to "
2954
+ "Editing!"
2955
+ msgstr ""
2956
+
2957
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26
2958
+ #, fuzzy
2959
+ #| msgid ""
2960
+ #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2961
+ #| "you click on the \"Show\" button. These will be needed in plugin's "
2962
+ #| "settings."
2963
+ msgid ""
2964
+ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2965
+ "needed in the plugin's settings."
2966
+ msgstr ""
2967
+ "Aquí puedes ver tu \"APP ID\" y puedes ver tu \"App secret\" si haces clic "
2968
+ "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
2969
+ "plugin."
2970
+
2971
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:71
2972
+ msgid "Continue with <b>WordPress.com</b>"
2973
+ msgstr "Sigue con <b>WordPress.com</b>"
2974
+
2975
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:72
2976
+ msgid "Link account with <b>WordPress.com</b>"
2977
+ msgstr "Enlazar cuenta con <b>WordPress.com</b>"
2978
+
2979
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
2980
+ msgid "Unlink account from <b>WordPress.com</b>"
2981
+ msgstr "Desenlazar cuenta de <b>WordPress.com</b>"
2982
+
2983
  #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2984
  #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2985
  #: nextend-social-login-pro/template-parts/login/above-separator.php:11
3012
  msgid "Social accounts"
3013
  msgstr "Cuentas sociales"
3014
 
 
 
 
 
 
 
3015
  #, fuzzy
3016
  #~| msgid ""
3017
+ #~| "Go to the OAuth consent screen tab and enter a product name and provide "
3018
+ #~| "the Privacy Policy URL, then click on the save button."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3019
  #~ msgid ""
3020
+ #~ "If you're prompted to set a product name, do so. Provide the Privacy "
3021
+ #~ "Policy URL as well then click on the save button"
3022
  #~ msgstr ""
3023
+ #~ "Ve a la pestaña de la pantalla de consentimiento de OAuth e ingresa el "
3024
+ #~ "nombre de un producto y proporciona la URL de la Privacy Policy, luego "
3025
+ #~ "haz clic en el botón guardar."
3026
 
3027
+ #~ msgid "Authorize your Pro Addon"
3028
+ #~ msgstr "Autoriza tu Pro Addon"
3029
 
3030
+ #~ msgid "Authorize"
3031
+ #~ msgstr "Autorizar"
3032
 
3033
+ #~ msgid "Deauthorize Pro Addon"
3034
+ #~ msgstr "Desautorizar Pro Addon"
3035
 
3036
+ #~ msgid "Click on the \"Settings\" tab"
3037
+ #~ msgstr "Haz clic en la pestaña de Ajustes"
3038
+
3039
+ #~ msgid "Click on \"Update Settings\""
3040
+ #~ msgstr "Haz clic en \"Actualizar Ajustes\""
 
 
 
3041
 
3042
  #~ msgid "Accept the Twitter Developer Agreement"
3043
  #~ msgstr "Aceptar el Twitter Developer Agreement"
languages/nextend-facebook-connect-fr_FR.mo CHANGED
Binary file
languages/nextend-facebook-connect-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 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"
@@ -132,11 +132,11 @@ 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
@@ -200,18 +200,19 @@ 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
@@ -288,9 +289,11 @@ msgstr ""
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
 
@@ -300,9 +303,11 @@ msgstr ""
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 ""
308
 
@@ -510,12 +515,16 @@ msgstr ""
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 ""
@@ -619,7 +628,7 @@ 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
 
625
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
@@ -653,7 +662,7 @@ msgstr ""
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."
657
  msgstr ""
658
 
659
  #: nextend-facebook-connect/admin/templates/pro.php:8
@@ -1182,7 +1191,7 @@ 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>"
@@ -1439,42 +1448,42 @@ msgid ""
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
 
@@ -1545,9 +1554,11 @@ msgstr ""
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"
@@ -1627,12 +1638,14 @@ msgid ""
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"
1638
  msgstr ""
@@ -1766,12 +1779,16 @@ msgstr ""
1766
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1767
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
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"
1776
  msgstr ""
1777
 
@@ -1779,9 +1796,11 @@ msgstr ""
1779
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
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 ""
1787
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -1808,9 +1827,11 @@ msgstr ""
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."
@@ -1848,7 +1869,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
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>"
@@ -1882,28 +1903,45 @@ msgid ""
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 "
@@ -1927,12 +1965,14 @@ msgstr ""
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
 
1933
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
1934
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
1935
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
 
1936
  msgid "Client Secret"
1937
  msgstr ""
1938
 
@@ -2031,6 +2071,7 @@ msgid "Go to the Settings tab."
2031
  msgstr ""
2032
 
2033
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
 
2034
  msgid "API Key"
2035
  msgstr ""
2036
 
@@ -2173,10 +2214,6 @@ msgstr ""
2173
  msgid "Please install and activate %1$s to use the %2$s"
2174
  msgstr ""
2175
 
2176
- #: nextend-social-login-pro/nextend-social-login-pro.php:57
2177
- msgid "Activate"
2178
- msgstr ""
2179
-
2180
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2181
  msgid "Network Activate"
2182
  msgstr ""
@@ -2210,7 +2247,9 @@ 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 "
@@ -2221,9 +2260,13 @@ msgid ""
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 ""
@@ -2278,6 +2321,87 @@ msgstr ""
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 ""
@@ -2304,6 +2428,7 @@ msgid "Fill the fields marked with *"
2304
  msgstr ""
2305
 
2306
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
 
2307
  #, php-format
2308
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2309
  msgstr ""
@@ -2339,11 +2464,6 @@ msgstr ""
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. "
@@ -2500,6 +2620,68 @@ 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
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2018-09-20 13:47+0200\n"
5
+ "PO-Revision-Date: 2018-09-20 13:47+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
132
  msgstr ""
133
 
134
  #: nextend-facebook-connect/admin/admin.php:244
135
+ msgid "The activation was successful"
136
  msgstr ""
137
 
138
  #: nextend-facebook-connect/admin/admin.php:255
139
+ msgid "Deactivate completed."
140
  msgstr ""
141
 
142
  #: nextend-facebook-connect/admin/admin.php:429
200
  msgstr ""
201
 
202
  #: nextend-facebook-connect/admin/admin.php:604
203
+ msgid "Activate 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 activate Nextend Social "
209
+ "Connect Pro Addon. You can do this by clicking on the Activate button below "
210
  "then select the related purchase."
211
  msgstr ""
212
 
213
  #: nextend-facebook-connect/admin/admin.php:610
214
+ #: nextend-social-login-pro/nextend-social-login-pro.php:57
215
+ msgid "Activate"
216
  msgstr ""
217
 
218
  #: nextend-facebook-connect/admin/admin.php:667
289
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
290
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
291
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
292
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
293
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
294
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
295
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
296
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
297
  msgid "Save Changes"
298
  msgstr ""
299
 
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/disqus/admin/getting-started.php:8
307
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
308
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
309
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
310
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
311
  msgid "Getting Started"
312
  msgstr ""
313
 
515
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
516
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
517
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
518
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
519
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15
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
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
527
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15
528
  #, php-format
529
  msgid "Navigate to %s"
530
  msgstr ""
628
 
629
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
630
  #: nextend-facebook-connect/admin/templates/pro-addon.php:127
631
+ msgid "Deactivate Pro Addon"
632
  msgstr ""
633
 
634
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
662
  #: nextend-facebook-connect/admin/templates/pro-addon.php:120
663
  msgid ""
664
  "You installed and activated the Pro Addon. If you don’t want to use it "
665
+ "anymore, you can deactivate using the button below."
666
  msgstr ""
667
 
668
  #: nextend-facebook-connect/admin/templates/pro.php:8
1191
  msgstr ""
1192
 
1193
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1194
+ #: nextend-facebook-connect/nextend-social-login.php:158
1195
  msgid ""
1196
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1197
  "\"_blank\">Privacy Policy</a>"
1448
  "version, the plugin is currently NOT ACTIVE."
1449
  msgstr ""
1450
 
1451
+ #: nextend-facebook-connect/nextend-social-login.php:80
1452
+ #: nextend-facebook-connect/nextend-social-login.php:87
1453
  #, php-format
1454
  msgid "Please update %1$s to version %2$s or newer."
1455
  msgstr ""
1456
 
1457
+ #: nextend-facebook-connect/nextend-social-login.php:80
1458
+ #: nextend-facebook-connect/nextend-social-login.php:87
1459
  msgid "Update now!"
1460
  msgstr ""
1461
 
1462
+ #: nextend-facebook-connect/nextend-social-login.php:94
1463
  #, php-format
1464
  msgid "Your domain name changed so you must authorize %1$s again."
1465
  msgstr ""
1466
 
1467
+ #: nextend-facebook-connect/nextend-social-login.php:488
1468
  #, php-format
1469
  msgid ""
1470
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1471
  "Connect as it is not needed anymore."
1472
  msgstr ""
1473
 
1474
+ #: nextend-facebook-connect/nextend-social-login.php:499
1475
  #, php-format
1476
  msgid ""
1477
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1478
  "Connect as it is not needed anymore."
1479
  msgstr ""
1480
 
1481
+ #: nextend-facebook-connect/nextend-social-login.php:763
1482
+ #: nextend-facebook-connect/nextend-social-login.php:1109
1483
  msgid "Social Login"
1484
  msgstr ""
1485
 
1486
+ #: nextend-facebook-connect/nextend-social-login.php:1090
1487
  msgid "Social Accounts"
1488
  msgstr ""
1489
 
1554
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1555
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1556
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1557
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12
1558
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1559
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1560
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1561
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12
1562
  #, php-format
1563
  msgctxt "App creation"
1564
  msgid "Create %s"
1638
  msgstr ""
1639
 
1640
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1641
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
1642
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1643
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1644
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
1645
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1646
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1647
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1648
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30
1649
  #, php-format
1650
  msgid "I am done setting up my %s"
1651
  msgstr ""
1779
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1780
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
1781
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1782
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
1783
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
1784
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1785
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1786
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1787
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1788
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1789
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1790
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
1791
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
1792
  msgid "Required"
1793
  msgstr ""
1794
 
1796
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
1797
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1798
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1799
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
1800
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1801
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1802
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1803
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
1804
  #, php-format
1805
  msgid ""
1806
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1827
  #: nextend-facebook-connect/providers/google/google.php:144
1828
  #: nextend-facebook-connect/providers/twitter/twitter.php:105
1829
  #: nextend-social-login-pro/providers/amazon/amazon.php:63
1830
+ #: nextend-social-login-pro/providers/disqus/disqus.php:110
1831
  #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1832
  #: nextend-social-login-pro/providers/paypal/paypal.php:125
1833
  #: nextend-social-login-pro/providers/vk/vk.php:60
1834
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:97
1835
  #, php-format
1836
  msgid ""
1837
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1869
  msgstr ""
1870
 
1871
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1872
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
1873
  #, php-format
1874
  msgid ""
1875
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1903
  msgstr ""
1904
 
1905
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1906
+ msgid "Select the OAuth consent screen!"
1907
  msgstr ""
1908
 
1909
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1910
  msgid ""
1911
+ "Enter a name for your App under the \"Application name\" field, which will "
1912
+ "appear as the name of the app asking for consent."
1913
  msgstr ""
1914
 
1915
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1916
+ #, php-format
1917
+ msgid ""
1918
+ "Fill the \"Authorized domains\" field with your domain name probably: <b>%s</"
1919
+ "b> without subdomains!"
1920
  msgstr ""
1921
 
1922
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1923
+ msgid "Press \"Save\" and you will be redirected back to Credentials screen."
1924
+ msgstr ""
1925
+
1926
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1927
+ msgid ""
1928
+ "Click the Create credentials button and select \"OAuth client ID\" from the "
1929
+ "dropdown."
1930
  msgstr ""
1931
 
1932
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1933
+ msgid "Your application type should be \"Web application\""
1934
  msgstr ""
1935
 
1936
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
1937
+ msgid "Name your application"
1938
+ msgstr ""
1939
+
1940
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
1941
+ msgid "Click on the Create button"
1942
+ msgstr ""
1943
+
1944
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
1945
  msgid ""
1946
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1947
  "the Credentials in the left hand menu and select your app by clicking on its "
1965
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1966
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
1967
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
1968
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
1969
  msgid "Client ID"
1970
  msgstr ""
1971
 
1972
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
1973
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
1974
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
1975
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
1976
  msgid "Client Secret"
1977
  msgstr ""
1978
 
2071
  msgstr ""
2072
 
2073
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2074
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2075
  msgid "API Key"
2076
  msgstr ""
2077
 
2214
  msgid "Please install and activate %1$s to use the %2$s"
2215
  msgstr ""
2216
 
 
 
 
 
2217
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2218
  msgid "Network Activate"
2219
  msgstr ""
2247
  msgstr ""
2248
 
2249
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2250
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2251
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2252
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2253
  #, php-format
2254
  msgid ""
2255
  "To allow your visitors to log in with their %1$s account, first you must "
2260
  msgstr ""
2261
 
2262
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2263
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2264
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2265
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2266
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2267
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2268
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2269
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2270
  #, php-format
2271
  msgid "Log in with your %s credentials if you are not logged in."
2272
  msgstr ""
2321
  msgid "Unlink account from <b>Amazon</b>"
2322
  msgstr ""
2323
 
2324
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
2325
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2326
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
2327
+ #, php-format
2328
+ msgid "Click on the name of your %s App."
2329
+ msgstr ""
2330
+
2331
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12
2332
+ msgid ""
2333
+ "Select the \"Settings\" tab and scroll down to the Authentication section!"
2334
+ msgstr ""
2335
+
2336
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13
2337
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
2338
+ #, php-format
2339
+ msgid "Add the following URL to the \"Callback URL\" field <b>%s</b> "
2340
+ msgstr ""
2341
+
2342
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
2343
+ msgid "Click on the \"Save Changes\" button."
2344
+ msgstr ""
2345
+
2346
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2347
+ msgid ""
2348
+ "Click on the link \"registering an application\" under the Applications tab."
2349
+ msgstr ""
2350
+
2351
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2352
+ msgid "Enter a \"Label\" and \"Description\" for your App."
2353
+ msgstr ""
2354
+
2355
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
2356
+ #, php-format
2357
+ msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
2358
+ msgstr ""
2359
+
2360
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
2361
+ msgid ""
2362
+ "Complete the Human test and click the \"Register my application\" button."
2363
+ msgstr ""
2364
+
2365
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
2366
+ #, php-format
2367
+ msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2368
+ msgstr ""
2369
+
2370
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
2371
+ msgid ""
2372
+ "Select \"Read only\" at Default Access under the Authentication section."
2373
+ msgstr ""
2374
+
2375
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
2376
+ msgid "Click the \"Save Changes\" button!"
2377
+ msgstr ""
2378
+
2379
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25
2380
+ msgid "Navigate to the \"Details\" tab of your Application!"
2381
+ msgstr ""
2382
+
2383
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26
2384
+ msgid ""
2385
+ "Here you can see your \"API Key\" and \"API Secret:\". These will be needed "
2386
+ "in the plugin's settings."
2387
+ msgstr ""
2388
+
2389
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
2390
+ msgid "API Secret"
2391
+ msgstr ""
2392
+
2393
+ #: nextend-social-login-pro/providers/disqus/disqus.php:84
2394
+ msgid "Continue with <b>Disqus</b>"
2395
+ msgstr ""
2396
+
2397
+ #: nextend-social-login-pro/providers/disqus/disqus.php:85
2398
+ msgid "Link account with <b>Disqus</b>"
2399
+ msgstr ""
2400
+
2401
+ #: nextend-social-login-pro/providers/disqus/disqus.php:86
2402
+ msgid "Unlink account from <b>Disqus</b>"
2403
+ msgstr ""
2404
+
2405
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2406
  msgid "Click on the App"
2407
  msgstr ""
2428
  msgstr ""
2429
 
2430
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
2431
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
2432
  #, php-format
2433
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2434
  msgstr ""
2464
  msgid "Scroll down to \"REST API apps\"."
2465
  msgstr ""
2466
 
 
 
 
 
 
2467
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2468
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2469
  msgid "Select the \"Live\" option on the top-right side. "
2620
  msgid "Unlink account from <b>VK</b>"
2621
  msgstr ""
2622
 
2623
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12
2624
+ msgid "Click \"Manage Settings\" under the Tools section!"
2625
+ msgstr ""
2626
+
2627
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13
2628
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
2629
+ #, php-format
2630
+ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2631
+ msgstr ""
2632
+
2633
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
2634
+ msgid "Click on \"Update\""
2635
+ msgstr ""
2636
+
2637
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2638
+ msgid "Click on the \"Create New Application\" button."
2639
+ msgstr ""
2640
+
2641
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2642
+ msgid "Enter a \"Name\" and \"Description\" for your App."
2643
+ msgstr ""
2644
+
2645
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
2646
+ msgid "You can leave the \"Javascript Origins\" field blank!"
2647
+ msgstr ""
2648
+
2649
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22
2650
+ msgid "Complete the human verification test."
2651
+ msgstr ""
2652
+
2653
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23
2654
+ msgid "At the \"Type\" make sure \"Web\" is selected!"
2655
+ msgstr ""
2656
+
2657
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
2658
+ msgid "Click the \"Create\" button!"
2659
+ msgstr ""
2660
+
2661
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25
2662
+ msgid ""
2663
+ "Click the name of your App either in the Breadcrumb navigation or next to "
2664
+ "Editing!"
2665
+ msgstr ""
2666
+
2667
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26
2668
+ msgid ""
2669
+ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2670
+ "needed in the plugin's settings."
2671
+ msgstr ""
2672
+
2673
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:71
2674
+ msgid "Continue with <b>WordPress.com</b>"
2675
+ msgstr ""
2676
+
2677
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:72
2678
+ msgid "Link account with <b>WordPress.com</b>"
2679
+ msgstr ""
2680
+
2681
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
2682
+ msgid "Unlink account from <b>WordPress.com</b>"
2683
+ msgstr ""
2684
+
2685
  #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2686
  #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2687
  #: nextend-social-login-pro/template-parts/login/above-separator.php:11
languages/nextend-facebook-connect-hu_HU.mo CHANGED
Binary file
languages/nextend-facebook-connect-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 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"
@@ -133,11 +133,15 @@ 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
@@ -201,19 +205,22 @@ 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"
@@ -291,9 +298,11 @@ msgstr "Ikon gomb"
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
 
@@ -303,9 +312,11 @@ msgstr "Változtatások Mentése"
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"
311
 
@@ -517,12 +528,16 @@ msgstr ""
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"
@@ -633,8 +648,10 @@ msgstr ""
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
 
639
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
640
  #: nextend-facebook-connect/admin/templates/pro.php:43
@@ -667,9 +684,13 @@ 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."
673
  msgstr ""
674
  "A Pro Kiegészítő fel van telepítve és aktiválva van. Ha nem akarod tovább "
675
  "használni, visszavonhatod az aktiválást a lenti gombra kattintva."
@@ -1232,7 +1253,7 @@ 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>"
@@ -1520,23 +1541,23 @@ msgid ""
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,7 +1566,7 @@ msgstr ""
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,12 +1575,12 @@ msgstr ""
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
 
@@ -1636,9 +1657,11 @@ msgstr ""
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"
@@ -1732,12 +1755,14 @@ msgstr ""
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"
1743
  msgstr "Befejeztem a %s appom elkészítését"
@@ -1887,12 +1912,16 @@ msgstr "App ID"
1887
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1888
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
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"
1897
  msgstr "Kötelező"
1898
 
@@ -1900,9 +1929,11 @@ msgstr "Kötelező"
1900
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
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 ""
1908
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -1931,9 +1962,11 @@ msgstr "Szétkapcsolás <b>Facebook</b>-kal"
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."
@@ -1975,7 +2008,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
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>"
@@ -2022,34 +2055,56 @@ msgstr ""
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 "
@@ -2078,12 +2133,14 @@ msgstr ""
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
 
2084
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
2085
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2086
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
 
2087
  msgid "Client Secret"
2088
  msgstr "Client Secret"
2089
 
@@ -2199,6 +2256,7 @@ msgid "Go to the Settings tab."
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
 
@@ -2343,10 +2401,6 @@ msgstr ""
2343
  msgid "Please install and activate %1$s to use the %2$s"
2344
  msgstr ""
2345
 
2346
- #: nextend-social-login-pro/nextend-social-login-pro.php:57
2347
- msgid "Activate"
2348
- msgstr ""
2349
-
2350
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2351
  msgid "Network Activate"
2352
  msgstr ""
@@ -2385,7 +2439,9 @@ 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 "
@@ -2407,9 +2463,13 @@ msgstr ""
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."
@@ -2474,6 +2534,112 @@ msgstr "Fiók összekapcsolása az <b>Amazon</b>-nal"
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 ""
@@ -2501,6 +2667,7 @@ msgid "Fill the fields marked with *"
2501
  msgstr "Töltsd ki a csillaggal jelölt mezőket"
2502
 
2503
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
 
2504
  #, php-format
2505
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2506
  msgstr ""
@@ -2542,12 +2709,6 @@ msgstr "Szétkapcsolás <b>LinkedIn</b>-nel"
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. "
@@ -2732,6 +2893,81 @@ msgstr "Fiók összekapcsolása a <b>VK</b>-val"
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
@@ -2766,52 +3002,23 @@ 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"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2018-09-20 13:47+0200\n"
5
+ "PO-Revision-Date: 2018-09-20 13:48+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
133
  msgstr "Beállítások elmentve."
134
 
135
  #: nextend-facebook-connect/admin/admin.php:244
136
+ #, fuzzy
137
+ #| msgid "The authorization was successful"
138
+ msgid "The activation was successful"
139
  msgstr "Az engedélyezés sikeres volt"
140
 
141
  #: nextend-facebook-connect/admin/admin.php:255
142
+ #, fuzzy
143
+ #| msgid "Deauthorize completed."
144
+ msgid "Deactivate completed."
145
  msgstr "A engedély visszavonása befejeződött."
146
 
147
  #: nextend-facebook-connect/admin/admin.php:429
205
  msgstr ""
206
 
207
  #: nextend-facebook-connect/admin/admin.php:604
208
+ #, fuzzy
209
+ #| msgid "Activate Pro Addon"
210
+ msgid "Activate your Pro Addon"
211
+ msgstr "Pro Addon aktiválása"
212
 
213
  #: nextend-facebook-connect/admin/admin.php:605
214
  msgid ""
215
+ "To be able to use the Pro features, you need to activate Nextend Social "
216
+ "Connect Pro Addon. You can do this by clicking on the Activate button below "
217
  "then select the related purchase."
218
  msgstr ""
219
 
220
  #: nextend-facebook-connect/admin/admin.php:610
221
+ #: nextend-social-login-pro/nextend-social-login-pro.php:57
222
+ msgid "Activate"
223
+ msgstr ""
224
 
225
  #: nextend-facebook-connect/admin/admin.php:667
226
  msgid "License key"
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/disqus/admin/settings.php:47
302
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
303
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
304
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
305
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
306
  msgid "Save Changes"
307
  msgstr "Változtatások Mentése"
308
 
312
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
313
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
314
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
315
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
316
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
317
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
318
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
319
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
320
  msgid "Getting Started"
321
  msgstr "Első Lépések"
322
 
528
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
529
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
530
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
531
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
532
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15
533
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
534
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
535
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
536
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
537
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
538
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
539
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
540
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15
541
  #, php-format
542
  msgid "Navigate to %s"
543
  msgstr "Látogasd meg ezt az oldalt: %s"
648
 
649
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
650
  #: nextend-facebook-connect/admin/templates/pro-addon.php:127
651
+ #, fuzzy
652
+ #| msgid "Activate Pro Addon"
653
+ msgid "Deactivate Pro Addon"
654
+ msgstr "Pro Addon aktiválása"
655
 
656
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
657
  #: nextend-facebook-connect/admin/templates/pro.php:43
684
  msgstr "A Pro Kiegészítő telepítve és aktiválva"
685
 
686
  #: nextend-facebook-connect/admin/templates/pro-addon.php:120
687
+ #, fuzzy
688
+ #| msgid ""
689
+ #| "You installed and activated the Pro Addon. If you don’t want to use it "
690
+ #| "anymore, you can deauthorize using the button below."
691
  msgid ""
692
  "You installed and activated the Pro Addon. If you don’t want to use it "
693
+ "anymore, you can deactivate using the button below."
694
  msgstr ""
695
  "A Pro Kiegészítő fel van telepítve és aktiválva van. Ha nem akarod tovább "
696
  "használni, visszavonhatod az aktiválást a lenti gombra kattintva."
1253
  msgstr "Összekapcsoló gombok a profil részletes beállításai után"
1254
 
1255
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1256
+ #: nextend-facebook-connect/nextend-social-login.php:158
1257
  msgid ""
1258
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1259
  "\"_blank\">Privacy Policy</a>"
1541
  "version, the plugin is currently NOT ACTIVE."
1542
  msgstr ""
1543
 
1544
+ #: nextend-facebook-connect/nextend-social-login.php:80
1545
+ #: nextend-facebook-connect/nextend-social-login.php:87
1546
  #, php-format
1547
  msgid "Please update %1$s to version %2$s or newer."
1548
  msgstr ""
1549
 
1550
+ #: nextend-facebook-connect/nextend-social-login.php:80
1551
+ #: nextend-facebook-connect/nextend-social-login.php:87
1552
  msgid "Update now!"
1553
  msgstr ""
1554
 
1555
+ #: nextend-facebook-connect/nextend-social-login.php:94
1556
  #, php-format
1557
  msgid "Your domain name changed so you must authorize %1$s again."
1558
  msgstr ""
1559
 
1560
+ #: nextend-facebook-connect/nextend-social-login.php:488
1561
  #, php-format
1562
  msgid ""
1563
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1566
  "%s átvette a Nextend Google Connect helyét. Letörölheted a Nextend Google "
1567
  "Connect plguint, mivel már nincs rá szükség."
1568
 
1569
+ #: nextend-facebook-connect/nextend-social-login.php:499
1570
  #, php-format
1571
  msgid ""
1572
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1575
  "%s átvette a Nextend Twitter Connect helyét. Letörölheted a Nextend Twitter "
1576
  "Connect plguint, mivel már nincs rá szükség."
1577
 
1578
+ #: nextend-facebook-connect/nextend-social-login.php:763
1579
+ #: nextend-facebook-connect/nextend-social-login.php:1109
1580
  msgid "Social Login"
1581
  msgstr "Közösségi belépés"
1582
 
1583
+ #: nextend-facebook-connect/nextend-social-login.php:1090
1584
  msgid "Social Accounts"
1585
  msgstr ""
1586
 
1657
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1658
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1659
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1660
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12
1661
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1662
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1663
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1664
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12
1665
  #, php-format
1666
  msgctxt "App creation"
1667
  msgid "Create %s"
1755
  "nyilvánossá az Appodat."
1756
 
1757
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1758
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
1759
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1760
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1761
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
1762
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1763
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1764
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1765
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30
1766
  #, php-format
1767
  msgid "I am done setting up my %s"
1768
  msgstr "Befejeztem a %s appom elkészítését"
1912
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1913
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
1914
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1915
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
1916
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
1917
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1918
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1919
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1920
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1921
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1922
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1923
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
1924
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
1925
  msgid "Required"
1926
  msgstr "Kötelező"
1927
 
1929
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
1930
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1931
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1932
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
1933
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1934
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1935
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1936
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
1937
  #, php-format
1938
  msgid ""
1939
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1962
  #: nextend-facebook-connect/providers/google/google.php:144
1963
  #: nextend-facebook-connect/providers/twitter/twitter.php:105
1964
  #: nextend-social-login-pro/providers/amazon/amazon.php:63
1965
+ #: nextend-social-login-pro/providers/disqus/disqus.php:110
1966
  #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1967
  #: nextend-social-login-pro/providers/paypal/paypal.php:125
1968
  #: nextend-social-login-pro/providers/vk/vk.php:60
1969
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:97
1970
  #, php-format
1971
  msgid ""
1972
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2008
  msgstr ""
2009
 
2010
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2011
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2012
  #, php-format
2013
  msgid ""
2014
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2055
  "adatokat készíts"
2056
 
2057
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2058
+ msgid "Select the OAuth consent screen!"
2059
  msgstr ""
2060
 
2061
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2062
+ msgid ""
2063
+ "Enter a name for your App under the \"Application name\" field, which will "
2064
+ "appear as the name of the app asking for consent."
2065
+ msgstr ""
2066
+
2067
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
2068
+ #, fuzzy, php-format
2069
+ #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2070
+ msgid ""
2071
+ "Fill the \"Authorized domains\" field with your domain name probably: <b>%s</"
2072
+ "b> without subdomains!"
2073
+ msgstr ""
2074
+ "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg ez "
2075
+ "lesz az: <b>%s</b>"
2076
+
2077
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2078
+ msgid "Press \"Save\" and you will be redirected back to Credentials screen."
2079
+ msgstr ""
2080
+
2081
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2082
  #, fuzzy
2083
  #| msgid ""
2084
+ #| "Go back to the Credentials tab and locate the small box at the middle. "
2085
+ #| "Click on the blue \"Create credentials\" button. Chose the \"OAuth client "
2086
+ #| "ID\" from the dropdown list."
2087
  msgid ""
2088
+ "Click the Create credentials button and select \"OAuth client ID\" from the "
2089
+ "dropdown."
2090
  msgstr ""
2091
+ "Menj vissza a \"Credentials\" fülre és keresd meg a kis dobozt középen. "
2092
+ "Kattints a kék \"Create credentials\" gombra. Válaszd ki az \"OAuth client ID"
2093
+ "\"-t a lenyíló listából."
2094
 
2095
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2096
  msgid "Your application type should be \"Web application\""
2097
  msgstr "Az applikációd típusa legyen \"Web application\""
2098
 
2099
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2100
  msgid "Name your application"
2101
  msgstr "Adj nevet az alkalmazásodnak"
2102
 
2103
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2104
  msgid "Click on the Create button"
2105
  msgstr "Kattints a \"Create\" gombra"
2106
 
2107
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2108
  msgid ""
2109
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2110
  "the Credentials in the left hand menu and select your app by clicking on its "
2133
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2134
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2135
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2136
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2137
  msgid "Client ID"
2138
  msgstr "Client ID"
2139
 
2140
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
2141
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2142
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2143
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2144
  msgid "Client Secret"
2145
  msgstr "Client Secret"
2146
 
2256
  msgstr "Menj a \"Settings\" fülre."
2257
 
2258
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2259
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2260
  msgid "API Key"
2261
  msgstr ""
2262
 
2401
  msgid "Please install and activate %1$s to use the %2$s"
2402
  msgstr ""
2403
 
 
 
 
 
2404
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2405
  msgid "Network Activate"
2406
  msgstr ""
2439
  "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: <b>%s</b>"
2440
 
2441
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2442
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2443
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2444
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2445
  #, fuzzy, php-format
2446
  #| msgid ""
2447
  #| "To allow your visitors to log in with their %1$s account, first you must "
2463
  "alapján."
2464
 
2465
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2466
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2467
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2468
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2469
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2470
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2471
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2472
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2473
  #, fuzzy, php-format
2474
  #| msgid "Log in with your %s credentials if you are not logged in"
2475
  msgid "Log in with your %s credentials if you are not logged in."
2534
  msgid "Unlink account from <b>Amazon</b>"
2535
  msgstr "Szétkapcsolás <b>Amazon</b>-tól"
2536
 
2537
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
2538
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2539
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
2540
+ #, fuzzy, php-format
2541
+ #| msgid "Click on the Create button"
2542
+ msgid "Click on the name of your %s App."
2543
+ msgstr "Kattints a \"Create\" gombra"
2544
+
2545
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12
2546
+ msgid ""
2547
+ "Select the \"Settings\" tab and scroll down to the Authentication section!"
2548
+ msgstr ""
2549
+
2550
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13
2551
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
2552
+ #, fuzzy, php-format
2553
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2554
+ msgid "Add the following URL to the \"Callback URL\" field <b>%s</b> "
2555
+ msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2556
+
2557
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
2558
+ #, fuzzy
2559
+ #| msgid "Click on \"Save Changes\""
2560
+ msgid "Click on the \"Save Changes\" button."
2561
+ msgstr "Kattints a \"Save Changes\"-re"
2562
+
2563
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2564
+ #, fuzzy
2565
+ #| msgid "Click on the \"Create New App\" button"
2566
+ msgid ""
2567
+ "Click on the link \"registering an application\" under the Applications tab."
2568
+ msgstr "Kattints a \"Create New App\" gombra"
2569
+
2570
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2571
+ msgid "Enter a \"Label\" and \"Description\" for your App."
2572
+ msgstr ""
2573
+
2574
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
2575
+ #, fuzzy, php-format
2576
+ #| msgid ""
2577
+ #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2578
+ msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
2579
+ msgstr ""
2580
+ "Írd be a weboldalad főoldalának címét a \"Website URL\" mezőbe. "
2581
+ "Valószínűleg ez lesz az: <b>%s</b>"
2582
+
2583
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
2584
+ #, fuzzy
2585
+ #| msgid "Click on the \"Create New App\" button"
2586
+ msgid ""
2587
+ "Complete the Human test and click the \"Register my application\" button."
2588
+ msgstr "Kattints a \"Create New App\" gombra"
2589
+
2590
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
2591
+ #, fuzzy, php-format
2592
+ #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2593
+ msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2594
+ msgstr ""
2595
+ "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg ez "
2596
+ "lesz az: <b>%s</b>"
2597
+
2598
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
2599
+ #, fuzzy
2600
+ #| msgid "Find the necessary Authentication Keys under the Authentication menu"
2601
+ msgid ""
2602
+ "Select \"Read only\" at Default Access under the Authentication section."
2603
+ msgstr ""
2604
+ "A szükséges \"Authentication Keys\"-t az Authentication menüben találod"
2605
+
2606
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
2607
+ #, fuzzy
2608
+ #| msgid "Click on the \"Create New App\" button"
2609
+ msgid "Click the \"Save Changes\" button!"
2610
+ msgstr "Kattints a \"Create New App\" gombra"
2611
+
2612
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25
2613
+ msgid "Navigate to the \"Details\" tab of your Application!"
2614
+ msgstr ""
2615
+
2616
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26
2617
+ #, fuzzy
2618
+ msgid ""
2619
+ "Here you can see your \"API Key\" and \"API Secret:\". These will be needed "
2620
+ "in the plugin's settings."
2621
+ msgstr ""
2622
+ "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
2623
+ "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
2624
+
2625
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
2626
+ #, fuzzy
2627
+ #| msgid "App Secret"
2628
+ msgid "API Secret"
2629
+ msgstr "App Secret"
2630
+
2631
+ #: nextend-social-login-pro/providers/disqus/disqus.php:84
2632
+ msgid "Continue with <b>Disqus</b>"
2633
+ msgstr "Folytatás a <b>Disqus</b>-szal"
2634
+
2635
+ #: nextend-social-login-pro/providers/disqus/disqus.php:85
2636
+ msgid "Link account with <b>Disqus</b>"
2637
+ msgstr "Fiók összekapcsolása a <b>Disqus</b>-szal"
2638
+
2639
+ #: nextend-social-login-pro/providers/disqus/disqus.php:86
2640
+ msgid "Unlink account from <b>Disqus</b>"
2641
+ msgstr "Szétkapcsolás <b>Disqus</b>-tól"
2642
+
2643
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2644
  msgid "Click on the App"
2645
  msgstr ""
2667
  msgstr "Töltsd ki a csillaggal jelölt mezőket"
2668
 
2669
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
2670
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
2671
  #, php-format
2672
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2673
  msgstr ""
2709
  msgid "Scroll down to \"REST API apps\"."
2710
  msgstr ""
2711
 
 
 
 
 
 
 
2712
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2713
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2714
  msgid "Select the \"Live\" option on the top-right side. "
2893
  msgid "Unlink account from <b>VK</b>"
2894
  msgstr "Szétkapcsolás <b>VK</b>-tól"
2895
 
2896
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12
2897
+ msgid "Click \"Manage Settings\" under the Tools section!"
2898
+ msgstr ""
2899
+
2900
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13
2901
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
2902
+ #, fuzzy, php-format
2903
+ #| msgid ""
2904
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2905
+ #| "b>"
2906
+ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2907
+ msgstr ""
2908
+ "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: <b>%s</b>"
2909
+
2910
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
2911
+ #, fuzzy
2912
+ #| msgid "Click on \"Save\""
2913
+ msgid "Click on \"Update\""
2914
+ msgstr "Kattints a \"Save\" gombra"
2915
+
2916
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2917
+ #, fuzzy
2918
+ #| msgid "Click on the \"Create New App\" button"
2919
+ msgid "Click on the \"Create New Application\" button."
2920
+ msgstr "Kattints a \"Create New App\" gombra"
2921
+
2922
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2923
+ msgid "Enter a \"Name\" and \"Description\" for your App."
2924
+ msgstr ""
2925
+
2926
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
2927
+ msgid "You can leave the \"Javascript Origins\" field blank!"
2928
+ msgstr ""
2929
+
2930
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22
2931
+ msgid "Complete the human verification test."
2932
+ msgstr ""
2933
+
2934
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23
2935
+ msgid "At the \"Type\" make sure \"Web\" is selected!"
2936
+ msgstr ""
2937
+
2938
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
2939
+ #, fuzzy
2940
+ #| msgid "Click on the \"Create New App\" button"
2941
+ msgid "Click the \"Create\" button!"
2942
+ msgstr "Kattints a \"Create New App\" gombra"
2943
+
2944
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25
2945
+ msgid ""
2946
+ "Click the name of your App either in the Breadcrumb navigation or next to "
2947
+ "Editing!"
2948
+ msgstr ""
2949
+
2950
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26
2951
+ #, fuzzy
2952
+ msgid ""
2953
+ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2954
+ "needed in the plugin's settings."
2955
+ msgstr ""
2956
+ "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
2957
+ "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
2958
+
2959
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:71
2960
+ msgid "Continue with <b>WordPress.com</b>"
2961
+ msgstr "Folytatás a <b>WordPress.com</b>-al"
2962
+
2963
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:72
2964
+ msgid "Link account with <b>WordPress.com</b>"
2965
+ msgstr "Fiók összekapcsolása a <b>WordPress.com</b>-al"
2966
+
2967
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
2968
+ msgid "Unlink account from <b>WordPress.com</b>"
2969
+ msgstr "Szétkapcsolás <b>WordPress.com</b>-tól"
2970
+
2971
  #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2972
  #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2973
  #: nextend-social-login-pro/template-parts/login/above-separator.php:11
3002
 
3003
  #, fuzzy
3004
  #~| msgid ""
3005
+ #~| "Go to the OAuth consent screen tab and enter a product name and provide "
3006
+ #~| "the Privacy Policy URL, then click on the save button."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3007
  #~ msgid ""
3008
+ #~ "If you're prompted to set a product name, do so. Provide the Privacy "
3009
+ #~ "Policy URL as well then click on the save button"
3010
  #~ msgstr ""
3011
+ #~ "Menj az \"OAuth consent screen\" fülre. Írd be a termék nevét és írd be a "
3012
+ #~ "linket az Adatvédelmi Irányelvek oldalad linkjét. Kattints a Save gombra."
 
 
 
3013
 
3014
+ #~ msgid "Authorize your Pro Addon"
3015
+ #~ msgstr "Aktiváld a Pro Kiegészítődet"
3016
 
3017
+ #~ msgid "Authorize"
3018
+ #~ msgstr "Aktiválás"
3019
 
3020
+ #~ msgid "Deauthorize Pro Addon"
3021
+ #~ msgstr "Pro kiegészítő deaktiválása"
 
 
 
 
 
 
3022
 
3023
  #~ msgid "Accept the Twitter Developer Agreement"
3024
  #~ msgstr "Fogadd el a Twitter Fejlesztői Megállapodást"
languages/nextend-facebook-connect-pt_BR.mo CHANGED
Binary file
languages/nextend-facebook-connect-pt_BR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 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"
@@ -153,11 +153,15 @@ 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
@@ -228,13 +232,20 @@ 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 "
@@ -242,8 +253,9 @@ msgstr ""
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"
@@ -320,9 +332,11 @@ msgstr "Ícone do botão"
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
 
@@ -332,9 +346,11 @@ msgstr "Salvar Alterações"
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"
340
 
@@ -544,12 +560,16 @@ msgstr "Você pode autorizar seu novo domínio concluindo as seguintes etapas:"
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"
@@ -657,8 +677,10 @@ msgstr ""
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
 
663
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
664
  #: nextend-facebook-connect/admin/templates/pro.php:43
@@ -690,9 +712,13 @@ 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."
696
  msgstr ""
697
  "Você instalou e ativou o Addon Pro. Se você não desejar usá-lo mais, você "
698
  "pode desautorizar usando o botão baixo."
@@ -1242,7 +1268,7 @@ 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>"
@@ -1521,24 +1547,24 @@ 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,7 +1573,7 @@ msgstr ""
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,12 +1582,12 @@ msgstr ""
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
 
@@ -1641,9 +1667,11 @@ msgstr ""
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"
@@ -1734,12 +1762,14 @@ msgstr ""
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"
1745
  msgstr "Terminei de configurar meu %s"
@@ -1888,12 +1918,16 @@ msgstr "ID do App"
1888
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1889
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
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"
1898
  msgstr "Obrigatório"
1899
 
@@ -1901,9 +1935,11 @@ msgstr "Obrigatório"
1901
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
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 ""
1909
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -1932,9 +1968,11 @@ msgstr "Desvincular conta do <b>Facebook</b>"
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."
@@ -1973,7 +2011,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
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>"
@@ -2013,30 +2051,49 @@ 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
- "Vá 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 "
@@ -2063,12 +2120,14 @@ msgstr "Clique em Credenciais no menu a esquerda, então selecione seu app."
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
 
2069
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
2070
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2071
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
 
2072
  msgid "Client Secret"
2073
  msgstr "Chave do Cliente"
2074
 
@@ -2187,6 +2246,7 @@ msgid "Go to the Settings tab."
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
 
@@ -2333,10 +2393,6 @@ msgstr ""
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"
@@ -2373,7 +2429,9 @@ 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 "
@@ -2389,9 +2447,13 @@ msgstr ""
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."
@@ -2455,6 +2517,114 @@ msgstr "Vincular conta com <b>Amazon</b>"
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"
@@ -2483,6 +2653,7 @@ msgid "Fill the fields marked with *"
2483
  msgstr "Preencha os campos marcados com *"
2484
 
2485
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
 
2486
  #, php-format
2487
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2488
  msgstr ""
@@ -2522,11 +2693,6 @@ msgstr "Desvincular conta do <b>LinkedIn</b>"
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. "
@@ -2707,6 +2873,72 @@ msgstr "Vincular conta com <b>VK</b>"
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
@@ -2739,61 +2971,27 @@ msgstr "OU"
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 "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2018-09-20 13:48+0200\n"
5
+ "PO-Revision-Date: 2018-09-20 13:48+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
153
  msgstr "Configurações salvas."
154
 
155
  #: nextend-facebook-connect/admin/admin.php:244
156
+ #, fuzzy
157
+ #| msgid "The authorization was successful"
158
+ msgid "The activation was successful"
159
  msgstr "A autorização foi bem sucedida"
160
 
161
  #: nextend-facebook-connect/admin/admin.php:255
162
+ #, fuzzy
163
+ #| msgid "Deauthorize completed."
164
+ msgid "Deactivate completed."
165
  msgstr "Desautorização concluída."
166
 
167
  #: nextend-facebook-connect/admin/admin.php:429
232
  msgstr "Corrigir erro"
233
 
234
  #: nextend-facebook-connect/admin/admin.php:604
235
+ #, fuzzy
236
+ #| msgid "Activate Pro Addon"
237
+ msgid "Activate your Pro Addon"
238
+ msgstr "Ativar Addon Pro"
239
 
240
  #: nextend-facebook-connect/admin/admin.php:605
241
+ #, fuzzy
242
+ #| msgid ""
243
+ #| "To be able to use the Pro features, you need to authorize Nextend Social "
244
+ #| "Connect Pro Addon. You can do this by clicking on the Authorize button "
245
+ #| "below then select the related purchase."
246
  msgid ""
247
+ "To be able to use the Pro features, you need to activate Nextend Social "
248
+ "Connect Pro Addon. You can do this by clicking on the Activate button below "
249
  "then select the related purchase."
250
  msgstr ""
251
  "Para ser capaz de usar os recursos do Pro, você precisa autorizar o Addon "
253
  "autorizar abaixo e então selecione a compra relacionada."
254
 
255
  #: nextend-facebook-connect/admin/admin.php:610
256
+ #: nextend-social-login-pro/nextend-social-login-pro.php:57
257
+ msgid "Activate"
258
+ msgstr "Ativar"
259
 
260
  #: nextend-facebook-connect/admin/admin.php:667
261
  msgid "License key"
332
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
333
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
334
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
335
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
336
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
337
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
338
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
339
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
340
  msgid "Save Changes"
341
  msgstr "Salvar Alterações"
342
 
346
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
347
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
348
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
349
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
350
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
351
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
352
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
353
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
354
  msgid "Getting Started"
355
  msgstr "Iniciando"
356
 
560
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
561
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
562
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
563
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
564
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15
565
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
566
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
567
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
568
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
569
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
570
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
571
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
572
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15
573
  #, php-format
574
  msgid "Navigate to %s"
575
  msgstr "Navegar para %s"
677
 
678
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
679
  #: nextend-facebook-connect/admin/templates/pro-addon.php:127
680
+ #, fuzzy
681
+ #| msgid "Activate Pro Addon"
682
+ msgid "Deactivate Pro Addon"
683
+ msgstr "Ativar Addon Pro"
684
 
685
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
686
  #: nextend-facebook-connect/admin/templates/pro.php:43
712
  msgstr "Addon Pro está instalado e ativado"
713
 
714
  #: nextend-facebook-connect/admin/templates/pro-addon.php:120
715
+ #, fuzzy
716
+ #| msgid ""
717
+ #| "You installed and activated the Pro Addon. If you don’t want to use it "
718
+ #| "anymore, you can deauthorize using the button below."
719
  msgid ""
720
  "You installed and activated the Pro Addon. If you don’t want to use it "
721
+ "anymore, you can deactivate using the button below."
722
  msgstr ""
723
  "Você instalou e ativou o Addon Pro. Se você não desejar usá-lo mais, você "
724
  "pode desautorizar usando o botão baixo."
1268
  msgstr "Botão Vincular após detalhes da conta"
1269
 
1270
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1271
+ #: nextend-facebook-connect/nextend-social-login.php:158
1272
  msgid ""
1273
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1274
  "\"_blank\">Privacy Policy</a>"
1547
  "%1$s requer versão do WordPress %2$s+. Como você está usando uma versão "
1548
  "anterior, o plugin não está ativo no momento."
1549
 
1550
+ #: nextend-facebook-connect/nextend-social-login.php:80
1551
+ #: nextend-facebook-connect/nextend-social-login.php:87
1552
  #, php-format
1553
  msgid "Please update %1$s to version %2$s or newer."
1554
  msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente."
1555
 
1556
+ #: nextend-facebook-connect/nextend-social-login.php:80
1557
+ #: nextend-facebook-connect/nextend-social-login.php:87
1558
  msgid "Update now!"
1559
  msgstr "Atualizar agora!"
1560
 
1561
+ #: nextend-facebook-connect/nextend-social-login.php:94
1562
  #, php-format
1563
  msgid "Your domain name changed so you must authorize %1$s again."
1564
  msgstr ""
1565
  "Seu nome de domínio foi alterado, então você deve autorizar %1$s novamente."
1566
 
1567
+ #: nextend-facebook-connect/nextend-social-login.php:488
1568
  #, php-format
1569
  msgid ""
1570
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1573
  "%s tomou o lugar do Nextend Google Connect. Você pode apagar o Nextend "
1574
  "Google Connect como ele não é mais necessário."
1575
 
1576
+ #: nextend-facebook-connect/nextend-social-login.php:499
1577
  #, php-format
1578
  msgid ""
1579
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1582
  "%s tomou o lugar do Nextend Twitter Connect. Você pode apagar o Nextend "
1583
  "Twitter Connect como ele não é mais necessário."
1584
 
1585
+ #: nextend-facebook-connect/nextend-social-login.php:763
1586
+ #: nextend-facebook-connect/nextend-social-login.php:1109
1587
  msgid "Social Login"
1588
  msgstr "Login Social"
1589
 
1590
+ #: nextend-facebook-connect/nextend-social-login.php:1090
1591
  msgid "Social Accounts"
1592
  msgstr "Redes Sociais"
1593
 
1667
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1668
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1669
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1670
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12
1671
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1672
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1673
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1674
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12
1675
  #, php-format
1676
  msgctxt "App creation"
1677
  msgid "Create %s"
1762
  "App público"
1763
 
1764
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1765
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
1766
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1767
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1768
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
1769
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1770
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1771
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1772
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30
1773
  #, php-format
1774
  msgid "I am done setting up my %s"
1775
  msgstr "Terminei de configurar meu %s"
1918
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1919
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
1920
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1921
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
1922
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
1923
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1924
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1925
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1926
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1927
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1928
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1929
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
1930
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
1931
  msgid "Required"
1932
  msgstr "Obrigatório"
1933
 
1935
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
1936
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1937
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1938
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
1939
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1940
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1941
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1942
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
1943
  #, php-format
1944
  msgid ""
1945
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1968
  #: nextend-facebook-connect/providers/google/google.php:144
1969
  #: nextend-facebook-connect/providers/twitter/twitter.php:105
1970
  #: nextend-social-login-pro/providers/amazon/amazon.php:63
1971
+ #: nextend-social-login-pro/providers/disqus/disqus.php:110
1972
  #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1973
  #: nextend-social-login-pro/providers/paypal/paypal.php:125
1974
  #: nextend-social-login-pro/providers/vk/vk.php:60
1975
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:97
1976
  #, php-format
1977
  msgid ""
1978
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2011
  msgstr "Clique no ID de Cliente OAuth 2.0: %s"
2012
 
2013
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
2014
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2015
  #, php-format
2016
  msgid ""
2017
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2051
  "Clique em “Credenciais” no menu esquerdo para criar uma nova credencial API"
2052
 
2053
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2054
+ msgid "Select the OAuth consent screen!"
2055
+ msgstr ""
2056
 
2057
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2058
  msgid ""
2059
+ "Enter a name for your App under the \"Application name\" field, which will "
2060
+ "appear as the name of the app asking for consent."
2061
  msgstr ""
 
 
2062
 
2063
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
2064
+ #, fuzzy, php-format
2065
+ #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2066
+ msgid ""
2067
+ "Fill the \"Authorized domains\" field with your domain name probably: <b>%s</"
2068
+ "b> without subdomains!"
2069
+ msgstr ""
2070
+ "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
2071
+
2072
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2073
+ msgid "Press \"Save\" and you will be redirected back to Credentials screen."
2074
+ msgstr ""
2075
+
2076
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2077
+ #, fuzzy
2078
+ #| msgid "Select \"OAuth client ID\" from the dropdown."
2079
+ msgid ""
2080
+ "Click the Create credentials button and select \"OAuth client ID\" from the "
2081
+ "dropdown."
2082
+ msgstr "Selecione \"OAuth client ID\" no menu suspenso."
2083
+
2084
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2085
  msgid "Your application type should be \"Web application\""
2086
  msgstr "Seu tipo de aplicação deve ser “Aplicação Web”"
2087
 
2088
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2089
  msgid "Name your application"
2090
  msgstr "Nomeie seu aplicativo"
2091
 
2092
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2093
  msgid "Click on the Create button"
2094
  msgstr "Clique no botão Criar"
2095
 
2096
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2097
  msgid ""
2098
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2099
  "the Credentials in the left hand menu and select your app by clicking on its "
2120
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2121
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2122
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2123
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2124
  msgid "Client ID"
2125
  msgstr "ID do Cliente"
2126
 
2127
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
2128
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2129
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2130
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2131
  msgid "Client Secret"
2132
  msgstr "Chave do Cliente"
2133
 
2246
  msgstr "Vá para a aba Configurações."
2247
 
2248
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2249
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2250
  msgid "API Key"
2251
  msgstr "Chave API"
2252
 
2393
  msgid "Please install and activate %1$s to use the %2$s"
2394
  msgstr "Instale e ative %1$s para usar o %2$s"
2395
 
 
 
 
 
2396
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2397
  msgid "Network Activate"
2398
  msgstr "Ativar rede"
2429
  "Adicione o seguinte URL ao campo \"URLs de retorno permitidos\" <b>%s</b>."
2430
 
2431
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2432
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2433
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2434
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2435
  #, php-format
2436
  msgid ""
2437
  "To allow your visitors to log in with their %1$s account, first you must "
2447
  "aplicativo %1$s."
2448
 
2449
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2450
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2451
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2452
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2453
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2454
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2455
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2456
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2457
  #, php-format
2458
  msgid "Log in with your %s credentials if you are not logged in."
2459
  msgstr "Faça o login com o seu %s credenciais se você não estiver logado."
2517
  msgid "Unlink account from <b>Amazon</b>"
2518
  msgstr "Desvincular conta do <b>Amazon</b>"
2519
 
2520
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
2521
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2522
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
2523
+ #, php-format
2524
+ msgid "Click on the name of your %s App."
2525
+ msgstr "Clique no nome do seu %s aplicativo."
2526
+
2527
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12
2528
+ msgid ""
2529
+ "Select the \"Settings\" tab and scroll down to the Authentication section!"
2530
+ msgstr ""
2531
+
2532
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13
2533
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
2534
+ #, fuzzy, php-format
2535
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2536
+ msgid "Add the following URL to the \"Callback URL\" field <b>%s</b> "
2537
+ msgstr "Adicione a URL seguinte no campo “URL de Retorno”: <b>%s</b>"
2538
+
2539
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
2540
+ #, fuzzy
2541
+ #| msgid "Click on \"Save Changes\""
2542
+ msgid "Click on the \"Save Changes\" button."
2543
+ msgstr "Clique em \"Salvar Alterações\""
2544
+
2545
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2546
+ #, fuzzy
2547
+ #| msgid "Click on the \"Create New Application\" button."
2548
+ msgid ""
2549
+ "Click on the link \"registering an application\" under the Applications tab."
2550
+ msgstr "Clique no botão \"Criar novo aplicativo\"."
2551
+
2552
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2553
+ #, fuzzy
2554
+ #| msgid "Enter a \"Name\" and \"Description\" for your App."
2555
+ msgid "Enter a \"Label\" and \"Description\" for your App."
2556
+ msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo."
2557
+
2558
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
2559
+ #, fuzzy, php-format
2560
+ #| msgid ""
2561
+ #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2562
+ msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
2563
+ msgstr ""
2564
+ "Preencha “URL Website” com a url de sua página, provavelmente: <b>%s</b>"
2565
+
2566
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
2567
+ #, fuzzy
2568
+ #| msgid "Click on the \"Create New Application\" button."
2569
+ msgid ""
2570
+ "Complete the Human test and click the \"Register my application\" button."
2571
+ msgstr "Clique no botão \"Criar novo aplicativo\"."
2572
+
2573
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
2574
+ #, fuzzy, php-format
2575
+ #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2576
+ msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2577
+ msgstr ""
2578
+ "Preencha o campo \"Domínio base\" com seu domínio, provavelmente: <b>%s</b>"
2579
+
2580
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
2581
+ #, fuzzy
2582
+ #| msgid "Find the necessary Authentication Keys under the Authentication menu"
2583
+ msgid ""
2584
+ "Select \"Read only\" at Default Access under the Authentication section."
2585
+ msgstr ""
2586
+ "Encontre a Chave de Autenticação necessária abaixo do menu Autenticação"
2587
+
2588
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
2589
+ #, fuzzy
2590
+ #| msgid "Click the \"Create\" button!"
2591
+ msgid "Click the \"Save Changes\" button!"
2592
+ msgstr "Clique no botão \"Criar\"!"
2593
+
2594
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25
2595
+ msgid "Navigate to the \"Details\" tab of your Application!"
2596
+ msgstr ""
2597
+
2598
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26
2599
+ #, fuzzy
2600
+ #| msgid ""
2601
+ #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2602
+ #| "needed in the plugin's settings."
2603
+ msgid ""
2604
+ "Here you can see your \"API Key\" and \"API Secret:\". These will be needed "
2605
+ "in the plugin's settings."
2606
+ msgstr ""
2607
+ "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes "
2608
+ "serão necessários nas configurações do plugin."
2609
+
2610
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
2611
+ #, fuzzy
2612
+ #| msgid "App Secret"
2613
+ msgid "API Secret"
2614
+ msgstr "Chave Secreta do App"
2615
+
2616
+ #: nextend-social-login-pro/providers/disqus/disqus.php:84
2617
+ msgid "Continue with <b>Disqus</b>"
2618
+ msgstr "Continuar com <b>Disqus</b>"
2619
+
2620
+ #: nextend-social-login-pro/providers/disqus/disqus.php:85
2621
+ msgid "Link account with <b>Disqus</b>"
2622
+ msgstr "Vincular conta com <b>Disqus</b>"
2623
+
2624
+ #: nextend-social-login-pro/providers/disqus/disqus.php:86
2625
+ msgid "Unlink account from <b>Disqus</b>"
2626
+ msgstr "Desvincular conta do <b>Disqus</b>"
2627
+
2628
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2629
  msgid "Click on the App"
2630
  msgstr "Clicar no App"
2653
  msgstr "Preencha os campos marcados com *"
2654
 
2655
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
2656
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
2657
  #, php-format
2658
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2659
  msgstr ""
2693
  msgid "Scroll down to \"REST API apps\"."
2694
  msgstr "Role para baixo até \"apps de API REST\"."
2695
 
 
 
 
 
 
2696
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2697
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2698
  msgid "Select the \"Live\" option on the top-right side. "
2873
  msgid "Unlink account from <b>VK</b>"
2874
  msgstr "Desvincular conta do <b>VK</b>"
2875
 
2876
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12
2877
+ msgid "Click \"Manage Settings\" under the Tools section!"
2878
+ msgstr "Clique em \"gerenciar configurações\" na seção ferramentas!"
2879
+
2880
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13
2881
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
2882
+ #, php-format
2883
+ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2884
+ msgstr "Adicione a seguinte URL ao campo \"Redirecionar URLs\"<b>%s</b> "
2885
+
2886
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
2887
+ msgid "Click on \"Update\""
2888
+ msgstr "Clique em \"Atualizar\""
2889
+
2890
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2891
+ msgid "Click on the \"Create New Application\" button."
2892
+ msgstr "Clique no botão \"Criar novo aplicativo\"."
2893
+
2894
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2895
+ msgid "Enter a \"Name\" and \"Description\" for your App."
2896
+ msgstr "Digite um \"Nome\" e \"Descrição\" para seu aplicativo."
2897
+
2898
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
2899
+ msgid "You can leave the \"Javascript Origins\" field blank!"
2900
+ msgstr "Você pode deixar o campo \"Javascript Origins\" em branco!"
2901
+
2902
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22
2903
+ msgid "Complete the human verification test."
2904
+ msgstr "Complete o teste de verificação humano."
2905
+
2906
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23
2907
+ msgid "At the \"Type\" make sure \"Web\" is selected!"
2908
+ msgstr "No \"Tipo\", verifique se \"Web\" está selecionado!"
2909
+
2910
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
2911
+ msgid "Click the \"Create\" button!"
2912
+ msgstr "Clique no botão \"Criar\"!"
2913
+
2914
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25
2915
+ msgid ""
2916
+ "Click the name of your App either in the Breadcrumb navigation or next to "
2917
+ "Editing!"
2918
+ msgstr ""
2919
+ "Clique no nome do seu aplicativo na navegação do Breadcrumb ou ao lado de "
2920
+ "Editando!"
2921
+
2922
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26
2923
+ msgid ""
2924
+ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2925
+ "needed in the plugin's settings."
2926
+ msgstr ""
2927
+ "Aqui você pode ver o seu \"ID do Cliente\" e \"Segredo do cliente\". Estes "
2928
+ "serão necessários nas configurações do plugin."
2929
+
2930
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:71
2931
+ msgid "Continue with <b>WordPress.com</b>"
2932
+ msgstr "Continuar com <b>WordPress.com</b>"
2933
+
2934
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:72
2935
+ msgid "Link account with <b>WordPress.com</b>"
2936
+ msgstr "Vincular conta com <b>WordPress.com</b>"
2937
+
2938
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
2939
+ msgid "Unlink account from <b>WordPress.com</b>"
2940
+ msgstr "Desvincular conta do <b>WordPress.com</b>"
2941
+
2942
  #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2943
  #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2944
  #: nextend-social-login-pro/template-parts/login/above-separator.php:11
2971
  msgid "Social accounts"
2972
  msgstr "Contas redes sociais"
2973
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2974
  #~ msgid ""
2975
+ #~ "If you're prompted to set a product name, do so. Provide the Privacy "
2976
+ #~ "Policy URL as well then click on the save button"
2977
  #~ msgstr ""
2978
+ #~ " para a aba de tela de consentimento OAuth e insira um nome de produto "
2979
+ #~ "e forneça uma URL de Política de Privacidade, então clique no botão salvar"
2980
 
2981
+ #~ msgid "Authorize your Pro Addon"
2982
+ #~ msgstr "Autorize seu Addon Pro"
2983
+
2984
+ #~ msgid "Authorize"
2985
+ #~ msgstr "Autorizar"
 
2986
 
2987
+ #~ msgid "Deauthorize Pro Addon"
2988
+ #~ msgstr "Desautorizar o Addon Pro"
2989
 
2990
+ #~ msgid "Click on the \"Settings\" tab"
2991
+ #~ msgstr "Clique na aba \"Configurações\""
2992
 
2993
+ #~ msgid "Click on \"Update Settings\""
2994
+ #~ msgstr "Clicar em \"Atualizar Configurações\""
2995
 
2996
  #~ msgid ""
2997
  #~ "Pick a custom page when wp-login.php not available to handle the OAuth "
languages/nextend-facebook-connect-zh_ZH.mo CHANGED
Binary file
languages/nextend-facebook-connect-zh_ZH.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 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"
@@ -132,11 +132,15 @@ 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
@@ -206,21 +210,29 @@ 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"
@@ -298,9 +310,11 @@ msgstr "图标按钮"
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
 
@@ -310,9 +324,11 @@ msgstr "保存设置"
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 "从这里开始"
318
 
@@ -526,12 +542,16 @@ msgstr ""
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"
@@ -637,8 +657,10 @@ 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
 
643
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
644
  #: nextend-facebook-connect/admin/templates/pro.php:43
@@ -669,9 +691,13 @@ 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."
675
  msgstr ""
676
  "你已经安装并启用了专业版本,如果你不想使用它,你可以点击下面的按钮取消授权。"
677
 
@@ -1243,7 +1269,7 @@ 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>"
@@ -1522,42 +1548,42 @@ msgid ""
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
 
@@ -1631,9 +1657,11 @@ msgstr ""
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"
@@ -1719,12 +1747,14 @@ msgstr ""
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"
1730
  msgstr "我已经设置完毕我的 %s"
@@ -1865,12 +1895,16 @@ msgstr "应用程序 ID"
1865
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1866
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
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"
1875
  msgstr "请求"
1876
 
@@ -1878,9 +1912,11 @@ msgstr "请求"
1878
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
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 ""
1886
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -1907,9 +1943,11 @@ msgstr "解除关联 <b>Facebook</b> 账号"
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."
@@ -1949,7 +1987,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
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>"
@@ -1993,32 +2031,53 @@ msgid ""
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 "
@@ -2045,12 +2104,14 @@ msgstr "在左侧菜单中点击凭据,然后选择您的应用程序。"
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
 
2051
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
2052
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2053
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
 
2054
  msgid "Client Secret"
2055
  msgstr "客户端密码"
2056
 
@@ -2162,6 +2223,7 @@ msgid "Go to the Settings tab."
2162
  msgstr "去设置页."
2163
 
2164
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
 
2165
  msgid "API Key"
2166
  msgstr ""
2167
 
@@ -2307,10 +2369,6 @@ msgstr "这个电子邮件已经注册过,请登录到您的帐户以链接到
2307
  msgid "Please install and activate %1$s to use the %2$s"
2308
  msgstr ""
2309
 
2310
- #: nextend-social-login-pro/nextend-social-login-pro.php:57
2311
- msgid "Activate"
2312
- msgstr ""
2313
-
2314
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2315
  msgid "Network Activate"
2316
  msgstr ""
@@ -2348,7 +2406,9 @@ 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 "
@@ -2368,9 +2428,13 @@ msgstr ""
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."
@@ -2433,6 +2497,111 @@ msgstr "关联 <b>Amazon</b> 账号"
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 "点击应用"
@@ -2459,6 +2628,7 @@ msgid "Fill the fields marked with *"
2459
  msgstr "填写标有*的字段"
2460
 
2461
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
 
2462
  #, php-format
2463
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2464
  msgstr "用你的主页的网址填写“网址”,可能是:<b>%s</b>"
@@ -2494,12 +2664,6 @@ msgstr "从<b> LinkedIn </ b>取消关联帐户"
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. "
@@ -2681,6 +2845,84 @@ msgstr "关联 <b>VK</b>"
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
@@ -2713,62 +2955,29 @@ msgstr "或"
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开发者协议"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2018-09-20 13:49+0200\n"
5
+ "PO-Revision-Date: 2018-09-20 13:49+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: zh_CN\n"
132
  msgstr "设置已保存。"
133
 
134
  #: nextend-facebook-connect/admin/admin.php:244
135
+ #, fuzzy
136
+ #| msgid "The authorization was successful"
137
+ msgid "The activation was successful"
138
  msgstr "授权成功"
139
 
140
  #: nextend-facebook-connect/admin/admin.php:255
141
+ #, fuzzy
142
+ #| msgid "Deauthorize completed."
143
+ msgid "Deactivate completed."
144
  msgstr "取消授权."
145
 
146
  #: nextend-facebook-connect/admin/admin.php:429
210
  msgstr "修复错误"
211
 
212
  #: nextend-facebook-connect/admin/admin.php:604
213
+ #, fuzzy
214
+ #| msgid "Activate Pro Addon"
215
+ msgid "Activate your Pro Addon"
216
+ msgstr "启用专业版本插件"
217
 
218
  #: nextend-facebook-connect/admin/admin.php:605
219
+ #, fuzzy
220
+ #| msgid ""
221
+ #| "To be able to use the Pro features, you need to authorize Nextend Social "
222
+ #| "Connect Pro Addon. You can do this by clicking on the Authorize button "
223
+ #| "below then select the related purchase."
224
  msgid ""
225
+ "To be able to use the Pro features, you need to activate Nextend Social "
226
+ "Connect Pro Addon. You can do this by clicking on the Activate button below "
227
  "then select the related purchase."
228
  msgstr ""
229
  "要想使用专业版本功能,你需要 Nextend Social Connect 专业版本的授权。你可以点"
230
  "击下面的授权按钮,然后选择购买。"
231
 
232
  #: nextend-facebook-connect/admin/admin.php:610
233
+ #: nextend-social-login-pro/nextend-social-login-pro.php:57
234
+ msgid "Activate"
235
+ msgstr ""
236
 
237
  #: nextend-facebook-connect/admin/admin.php:667
238
  msgid "License key"
310
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
311
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
312
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
313
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
314
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
315
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
316
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
317
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
318
  msgid "Save Changes"
319
  msgstr "保存设置"
320
 
324
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
325
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
326
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
327
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
328
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
329
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
330
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
331
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
332
  msgid "Getting Started"
333
  msgstr "从这里开始"
334
 
542
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
543
  #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
544
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:22
545
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
546
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15
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
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
554
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15
555
  #, php-format
556
  msgid "Navigate to %s"
557
  msgstr "导航 %s"
657
 
658
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
659
  #: nextend-facebook-connect/admin/templates/pro-addon.php:127
660
+ #, fuzzy
661
+ #| msgid "Activate Pro Addon"
662
+ msgid "Deactivate Pro Addon"
663
+ msgstr "启用专业版本插件"
664
 
665
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
666
  #: nextend-facebook-connect/admin/templates/pro.php:43
691
  msgstr "专业版本已经安装并启用了"
692
 
693
  #: nextend-facebook-connect/admin/templates/pro-addon.php:120
694
+ #, fuzzy
695
+ #| msgid ""
696
+ #| "You installed and activated the Pro Addon. If you don’t want to use it "
697
+ #| "anymore, you can deauthorize using the button below."
698
  msgid ""
699
  "You installed and activated the Pro Addon. If you don’t want to use it "
700
+ "anymore, you can deactivate using the button below."
701
  msgstr ""
702
  "你已经安装并启用了专业版本,如果你不想使用它,你可以点击下面的按钮取消授权。"
703
 
1269
  msgstr "链接按钮在账户详情后面"
1270
 
1271
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1272
+ #: nextend-facebook-connect/nextend-social-login.php:158
1273
  msgid ""
1274
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1275
  "\"_blank\">Privacy Policy</a>"
1548
  "version, the plugin is currently NOT ACTIVE."
1549
  msgstr ""
1550
 
1551
+ #: nextend-facebook-connect/nextend-social-login.php:80
1552
+ #: nextend-facebook-connect/nextend-social-login.php:87
1553
  #, php-format
1554
  msgid "Please update %1$s to version %2$s or newer."
1555
  msgstr "请更新 %1$s 到 %2$s 版本."
1556
 
1557
+ #: nextend-facebook-connect/nextend-social-login.php:80
1558
+ #: nextend-facebook-connect/nextend-social-login.php:87
1559
  msgid "Update now!"
1560
  msgstr "现在更新!"
1561
 
1562
+ #: nextend-facebook-connect/nextend-social-login.php:94
1563
  #, php-format
1564
  msgid "Your domain name changed so you must authorize %1$s again."
1565
  msgstr ""
1566
 
1567
+ #: nextend-facebook-connect/nextend-social-login.php:488
1568
  #, php-format
1569
  msgid ""
1570
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1571
  "Connect as it is not needed anymore."
1572
  msgstr "%s 取代了Nextend Google Connect。 您可以删除Nextend Google Connect。"
1573
 
1574
+ #: nextend-facebook-connect/nextend-social-login.php:499
1575
  #, php-format
1576
  msgid ""
1577
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1578
  "Connect as it is not needed anymore."
1579
  msgstr "%s取代了Nextend Twitter Connect.你可以删除 Nextend Twitter Connect 。"
1580
 
1581
+ #: nextend-facebook-connect/nextend-social-login.php:763
1582
+ #: nextend-facebook-connect/nextend-social-login.php:1109
1583
  msgid "Social Login"
1584
  msgstr "社交登录"
1585
 
1586
+ #: nextend-facebook-connect/nextend-social-login.php:1090
1587
  msgid "Social Accounts"
1588
  msgstr "社交账号"
1589
 
1657
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1658
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1659
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1660
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12
1661
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1662
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1663
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1664
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12
1665
  #, php-format
1666
  msgctxt "App creation"
1667
  msgid "Create %s"
1747
  "程序审查”,并发布您的应用程序"
1748
 
1749
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1750
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
1751
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1752
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1753
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
1754
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1755
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1756
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1757
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30
1758
  #, php-format
1759
  msgid "I am done setting up my %s"
1760
  msgstr "我已经设置完毕我的 %s"
1895
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1896
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
1897
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1898
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
1899
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
1900
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1901
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1902
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1903
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1904
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1905
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1906
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
1907
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
1908
  msgid "Required"
1909
  msgstr "请求"
1910
 
1912
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
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/disqus/admin/settings.php:33
1916
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1917
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1918
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1919
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
1920
  #, php-format
1921
  msgid ""
1922
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
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/disqus/disqus.php:110
1947
  #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1948
  #: nextend-social-login-pro/providers/paypal/paypal.php:125
1949
  #: nextend-social-login-pro/providers/vk/vk.php:60
1950
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:97
1951
  #, php-format
1952
  msgid ""
1953
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1987
  msgstr "点击 OAuth 2.0 client ID: %s"
1988
 
1989
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1990
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
1991
  #, php-format
1992
  msgid ""
1993
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
2031
  msgstr "点击左侧菜单中的“凭据”以创建新的API凭证"
2032
 
2033
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2034
+ msgid "Select the OAuth consent screen!"
2035
  msgstr ""
2036
 
2037
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2038
+ msgid ""
2039
+ "Enter a name for your App under the \"Application name\" field, which will "
2040
+ "appear as the name of the app asking for consent."
2041
+ msgstr ""
2042
+
2043
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
2044
+ #, fuzzy, php-format
2045
+ #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2046
+ msgid ""
2047
+ "Fill the \"Authorized domains\" field with your domain name probably: <b>%s</"
2048
+ "b> without subdomains!"
2049
+ msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
2050
+
2051
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2052
+ msgid "Press \"Save\" and you will be redirected back to Credentials screen."
2053
+ msgstr ""
2054
+
2055
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
2056
  #, fuzzy
2057
  #| msgid ""
2058
+ #| "Go back to the Credentials tab and locate the small box at the middle. "
2059
+ #| "Click on the blue \"Create credentials\" button. Chose the \"OAuth client "
2060
+ #| "ID\" from the dropdown list."
2061
  msgid ""
2062
+ "Click the Create credentials button and select \"OAuth client ID\" from the "
2063
+ "dropdown."
2064
+ msgstr ""
2065
+ "回到凭据选项卡,找到中间的小方块。 点击蓝色的“创建凭证”按钮。 从下拉列表中选"
2066
+ "择“OAuth客户端ID”。"
2067
 
2068
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
2069
  msgid "Your application type should be \"Web application\""
2070
  msgstr "您的应用程序类型应该是“网页应用程序”"
2071
 
2072
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2073
  msgid "Name your application"
2074
  msgstr "命名你的应用程序"
2075
 
2076
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2077
  msgid "Click on the Create button"
2078
  msgstr "点击创建按钮"
2079
 
2080
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2081
  msgid ""
2082
  "A modal should pop up with your credentials. If that doesn't happen, go to "
2083
  "the Credentials in the left hand menu and select your app by clicking on its "
2104
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2105
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2106
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2107
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2108
  msgid "Client ID"
2109
  msgstr "客户端ID"
2110
 
2111
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
2112
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2113
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2114
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2115
  msgid "Client Secret"
2116
  msgstr "客户端密码"
2117
 
2223
  msgstr "去设置页."
2224
 
2225
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2226
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2227
  msgid "API Key"
2228
  msgstr ""
2229
 
2369
  msgid "Please install and activate %1$s to use the %2$s"
2370
  msgstr ""
2371
 
 
 
 
 
2372
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2373
  msgid "Network Activate"
2374
  msgstr ""
2406
  msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2407
 
2408
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2409
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2410
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2411
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2412
  #, fuzzy, php-format
2413
  #| msgid ""
2414
  #| "To allow your visitors to log in with their %1$s account, first you must "
2428
  "\"设置“,然后根据你的 %1$s 配置,给予 \"%2$s\" and \"%3$s\"。"
2429
 
2430
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2431
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2432
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2433
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2434
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2435
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2436
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2437
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2438
  #, fuzzy, php-format
2439
  #| msgid "Log in with your %s credentials if you are not logged in"
2440
  msgid "Log in with your %s credentials if you are not logged in."
2497
  msgid "Unlink account from <b>Amazon</b>"
2498
  msgstr "解除关联 <b>Amazon</b> 账号"
2499
 
2500
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
2501
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2502
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
2503
+ #, fuzzy, php-format
2504
+ #| msgid "Click on the Create button"
2505
+ msgid "Click on the name of your %s App."
2506
+ msgstr "点击创建按钮"
2507
+
2508
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12
2509
+ msgid ""
2510
+ "Select the \"Settings\" tab and scroll down to the Authentication section!"
2511
+ msgstr ""
2512
+
2513
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13
2514
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
2515
+ #, fuzzy, php-format
2516
+ #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2517
+ msgid "Add the following URL to the \"Callback URL\" field <b>%s</b> "
2518
+ msgstr "将以下网址添加到\"Callback URL\"中:<b>%s</b>"
2519
+
2520
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
2521
+ #, fuzzy
2522
+ #| msgid "Click on \"Save Changes\""
2523
+ msgid "Click on the \"Save Changes\" button."
2524
+ msgstr "点击\"保存设置\""
2525
+
2526
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2527
+ #, fuzzy
2528
+ #| msgid "Click on the \"Create New App\" button"
2529
+ msgid ""
2530
+ "Click on the link \"registering an application\" under the Applications tab."
2531
+ msgstr "点击\"创建新应用\"按钮"
2532
+
2533
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2534
+ msgid "Enter a \"Label\" and \"Description\" for your App."
2535
+ msgstr ""
2536
+
2537
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
2538
+ #, fuzzy, php-format
2539
+ #| msgid ""
2540
+ #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2541
+ msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
2542
+ msgstr "用你的主页的网址填写“网址”,可能是:<b>%s</b>"
2543
+
2544
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
2545
+ #, fuzzy
2546
+ #| msgid "Click on the \"Create New App\" button"
2547
+ msgid ""
2548
+ "Complete the Human test and click the \"Register my application\" button."
2549
+ msgstr "点击\"创建新应用\"按钮"
2550
+
2551
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
2552
+ #, fuzzy, php-format
2553
+ #| msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
2554
+ msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2555
+ msgstr "将你网站的首页URL填写到 \"网站URL\",应该是 <b>%s</b>"
2556
+
2557
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
2558
+ #, fuzzy
2559
+ #| msgid "Find the necessary Authentication Keys under the Authentication menu"
2560
+ msgid ""
2561
+ "Select \"Read only\" at Default Access under the Authentication section."
2562
+ msgstr "在认证菜单下找到认证密钥"
2563
+
2564
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
2565
+ #, fuzzy
2566
+ #| msgid "Click on the \"Create New App\" button"
2567
+ msgid "Click the \"Save Changes\" button!"
2568
+ msgstr "点击\"创建新应用\"按钮"
2569
+
2570
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25
2571
+ msgid "Navigate to the \"Details\" tab of your Application!"
2572
+ msgstr ""
2573
+
2574
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26
2575
+ #, fuzzy
2576
+ #| msgid ""
2577
+ #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2578
+ #| "you click on the \"Show\" button. These will be needed in plugin's "
2579
+ #| "settings."
2580
+ msgid ""
2581
+ "Here you can see your \"API Key\" and \"API Secret:\". These will be needed "
2582
+ "in the plugin's settings."
2583
+ msgstr ""
2584
+ "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
2585
+ "钮,这些都需要填写到插件的设置里。"
2586
+
2587
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
2588
+ #, fuzzy
2589
+ #| msgid "App Secret"
2590
+ msgid "API Secret"
2591
+ msgstr "App 密匙"
2592
+
2593
+ #: nextend-social-login-pro/providers/disqus/disqus.php:84
2594
+ msgid "Continue with <b>Disqus</b>"
2595
+ msgstr "通过 <b>Disqus</b>"
2596
+
2597
+ #: nextend-social-login-pro/providers/disqus/disqus.php:85
2598
+ msgid "Link account with <b>Disqus</b>"
2599
+ msgstr "关联 <b>Disqus</b>"
2600
+
2601
+ #: nextend-social-login-pro/providers/disqus/disqus.php:86
2602
+ msgid "Unlink account from <b>Disqus</b>"
2603
+ msgstr "取消关联 <b>Disqus</b>"
2604
+
2605
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2606
  msgid "Click on the App"
2607
  msgstr "点击应用"
2628
  msgstr "填写标有*的字段"
2629
 
2630
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
2631
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
2632
  #, php-format
2633
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2634
  msgstr "用你的主页的网址填写“网址”,可能是:<b>%s</b>"
2664
  msgid "Scroll down to \"REST API apps\"."
2665
  msgstr ""
2666
 
 
 
 
 
 
 
2667
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2668
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2669
  msgid "Select the \"Live\" option on the top-right side. "
2845
  msgid "Unlink account from <b>VK</b>"
2846
  msgstr "取消关联 <b>VK</b>"
2847
 
2848
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12
2849
+ msgid "Click \"Manage Settings\" under the Tools section!"
2850
+ msgstr ""
2851
+
2852
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13
2853
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
2854
+ #, fuzzy, php-format
2855
+ #| msgid ""
2856
+ #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2857
+ #| "b>"
2858
+ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2859
+ msgstr "将以下网址添加到“授权重定向网址”字段中:<b>%s</b>"
2860
+
2861
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
2862
+ #, fuzzy
2863
+ #| msgid "Click on \"Save\""
2864
+ msgid "Click on \"Update\""
2865
+ msgstr "点击\"保存“"
2866
+
2867
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2868
+ #, fuzzy
2869
+ #| msgid "Click on the \"Create New App\" button"
2870
+ msgid "Click on the \"Create New Application\" button."
2871
+ msgstr "点击\"创建新应用\"按钮"
2872
+
2873
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2874
+ msgid "Enter a \"Name\" and \"Description\" for your App."
2875
+ msgstr ""
2876
+
2877
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
2878
+ msgid "You can leave the \"Javascript Origins\" field blank!"
2879
+ msgstr ""
2880
+
2881
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22
2882
+ msgid "Complete the human verification test."
2883
+ msgstr ""
2884
+
2885
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23
2886
+ msgid "At the \"Type\" make sure \"Web\" is selected!"
2887
+ msgstr ""
2888
+
2889
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
2890
+ #, fuzzy
2891
+ #| msgid "Click on the \"Create New App\" button"
2892
+ msgid "Click the \"Create\" button!"
2893
+ msgstr "点击\"创建新应用\"按钮"
2894
+
2895
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25
2896
+ msgid ""
2897
+ "Click the name of your App either in the Breadcrumb navigation or next to "
2898
+ "Editing!"
2899
+ msgstr ""
2900
+
2901
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26
2902
+ #, fuzzy
2903
+ #| msgid ""
2904
+ #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2905
+ #| "you click on the \"Show\" button. These will be needed in plugin's "
2906
+ #| "settings."
2907
+ msgid ""
2908
+ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2909
+ "needed in the plugin's settings."
2910
+ msgstr ""
2911
+ "然后,你可以看见你的 \"APP ID\" 和 \"APP secret\"密匙,你可以看到\"显示\"按"
2912
+ "钮,这些都需要填写到插件的设置里。"
2913
+
2914
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:71
2915
+ msgid "Continue with <b>WordPress.com</b>"
2916
+ msgstr "通过 <b>WordPress.com</b>"
2917
+
2918
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:72
2919
+ msgid "Link account with <b>WordPress.com</b>"
2920
+ msgstr "关联 <b>WordPress.com</b>"
2921
+
2922
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
2923
+ msgid "Unlink account from <b>WordPress.com</b>"
2924
+ msgstr "取消关联 <b>WordPress.com</b>"
2925
+
2926
  #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2927
  #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2928
  #: nextend-social-login-pro/template-parts/login/above-separator.php:11
2955
  msgid "Social accounts"
2956
  msgstr "社交账号"
2957
 
2958
+ #~ msgid "Authorize your Pro Addon"
2959
+ #~ msgstr "授权你的专业版插件"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2960
 
2961
+ #~ msgid "Authorize"
2962
+ #~ msgstr "授权"
 
 
2963
 
2964
+ #~ msgid "Deauthorize Pro Addon"
2965
+ #~ msgstr "专业版未授权"
 
 
2966
 
2967
  #, fuzzy
2968
  #~| msgid ""
2969
+ #~| "Go to the OAuth consent screen tab and enter a product name and provide "
2970
+ #~| "the Privacy Policy URL, then click on the save button."
 
2971
  #~ msgid ""
2972
+ #~ "If you're prompted to set a product name, do so. Provide the Privacy "
2973
+ #~ "Policy URL as well then click on the save button"
2974
+ #~ msgstr "转到OAuth 选项卡输入产品名称并提供隐私策略URL,然后单击保存按钮。"
 
 
 
 
 
 
 
 
2975
 
2976
+ #~ msgid "Click on the \"Settings\" tab"
2977
+ #~ msgstr "点击\"设置\"选项"
2978
 
2979
+ #~ msgid "Click on \"Update Settings\""
2980
+ #~ msgstr "点击\"更新设置\""
 
 
 
 
 
2981
 
2982
  #~ msgid "Accept the Twitter Developer Agreement"
2983
  #~ msgstr "接受Twitter开发者协议"
languages/nextend-facebook-connect.mo CHANGED
Binary file
languages/nextend-facebook-connect.po CHANGED
@@ -1,8 +1,8 @@
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"
@@ -127,11 +127,11 @@ 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
@@ -195,18 +195,19 @@ 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
@@ -283,9 +284,11 @@ msgstr ""
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
 
@@ -295,9 +298,11 @@ msgstr ""
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 ""
303
 
@@ -505,12 +510,16 @@ msgstr ""
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 ""
@@ -614,7 +623,7 @@ 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
 
620
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
@@ -648,7 +657,7 @@ msgstr ""
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."
652
  msgstr ""
653
 
654
  #: nextend-facebook-connect/admin/templates/pro.php:8
@@ -1177,7 +1186,7 @@ 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>"
@@ -1434,42 +1443,42 @@ msgid ""
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
 
@@ -1540,9 +1549,11 @@ msgstr ""
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"
@@ -1622,12 +1633,14 @@ msgid ""
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"
1633
  msgstr ""
@@ -1761,12 +1774,16 @@ msgstr ""
1761
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1762
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
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"
1771
  msgstr ""
1772
 
@@ -1774,9 +1791,11 @@ msgstr ""
1774
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
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 ""
1782
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -1803,9 +1822,11 @@ msgstr ""
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."
@@ -1843,7 +1864,7 @@ msgid "Click on OAuth 2.0 client ID: %s"
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>"
@@ -1877,28 +1898,45 @@ msgid ""
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 "
@@ -1922,12 +1960,14 @@ msgstr ""
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
 
1928
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
1929
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
1930
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
 
1931
  msgid "Client Secret"
1932
  msgstr ""
1933
 
@@ -2026,6 +2066,7 @@ msgid "Go to the Settings tab."
2026
  msgstr ""
2027
 
2028
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
 
2029
  msgid "API Key"
2030
  msgstr ""
2031
 
@@ -2168,10 +2209,6 @@ msgstr ""
2168
  msgid "Please install and activate %1$s to use the %2$s"
2169
  msgstr ""
2170
 
2171
- #: nextend-social-login-pro/nextend-social-login-pro.php:57
2172
- msgid "Activate"
2173
- msgstr ""
2174
-
2175
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2176
  msgid "Network Activate"
2177
  msgstr ""
@@ -2205,7 +2242,9 @@ 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 "
@@ -2216,9 +2255,13 @@ msgid ""
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 ""
@@ -2273,6 +2316,87 @@ msgstr ""
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 ""
@@ -2299,6 +2423,7 @@ msgid "Fill the fields marked with *"
2299
  msgstr ""
2300
 
2301
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
 
2302
  #, php-format
2303
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2304
  msgstr ""
@@ -2334,11 +2459,6 @@ msgstr ""
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. "
@@ -2495,6 +2615,68 @@ 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
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2018-09-20 13:45+0200\n"
5
+ "PO-Revision-Date: 2018-09-20 13:46+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: en\n"
127
  msgstr ""
128
 
129
  #: nextend-facebook-connect/admin/admin.php:244
130
+ msgid "The activation was successful"
131
  msgstr ""
132
 
133
  #: nextend-facebook-connect/admin/admin.php:255
134
+ msgid "Deactivate completed."
135
  msgstr ""
136
 
137
  #: nextend-facebook-connect/admin/admin.php:429
195
  msgstr ""
196
 
197
  #: nextend-facebook-connect/admin/admin.php:604
198
+ msgid "Activate 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 activate Nextend Social "
204
+ "Connect Pro Addon. You can do this by clicking on the Activate button below "
205
  "then select the related purchase."
206
  msgstr ""
207
 
208
  #: nextend-facebook-connect/admin/admin.php:610
209
+ #: nextend-social-login-pro/nextend-social-login-pro.php:57
210
+ msgid "Activate"
211
  msgstr ""
212
 
213
  #: nextend-facebook-connect/admin/admin.php:667
284
  #: nextend-facebook-connect/providers/google/admin/settings.php:49
285
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
286
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
287
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
288
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:47
289
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:47
290
  #: nextend-social-login-pro/providers/vk/admin/settings.php:47
291
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
292
  msgid "Save Changes"
293
  msgstr ""
294
 
298
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
299
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
300
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:15
301
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
302
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
303
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
304
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
305
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
306
  msgid "Getting Started"
307
  msgstr ""
308
 
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/disqus/admin/fix-redirect-uri.php:8
514
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:15
515
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
516
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
517
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
518
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:15
519
  #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
520
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:15
521
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
522
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:15
523
  #, php-format
524
  msgid "Navigate to %s"
525
  msgstr ""
623
 
624
  #: nextend-facebook-connect/admin/templates/pro-addon.php:37
625
  #: nextend-facebook-connect/admin/templates/pro-addon.php:127
626
+ msgid "Deactivate Pro Addon"
627
  msgstr ""
628
 
629
  #: nextend-facebook-connect/admin/templates/pro-addon.php:48
657
  #: nextend-facebook-connect/admin/templates/pro-addon.php:120
658
  msgid ""
659
  "You installed and activated the Pro Addon. If you don’t want to use it "
660
+ "anymore, you can deactivate using the button below."
661
  msgstr ""
662
 
663
  #: nextend-facebook-connect/admin/templates/pro.php:8
1186
  msgstr ""
1187
 
1188
  #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1189
+ #: nextend-facebook-connect/nextend-social-login.php:158
1190
  msgid ""
1191
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1192
  "\"_blank\">Privacy Policy</a>"
1443
  "version, the plugin is currently NOT ACTIVE."
1444
  msgstr ""
1445
 
1446
+ #: nextend-facebook-connect/nextend-social-login.php:80
1447
+ #: nextend-facebook-connect/nextend-social-login.php:87
1448
  #, php-format
1449
  msgid "Please update %1$s to version %2$s or newer."
1450
  msgstr ""
1451
 
1452
+ #: nextend-facebook-connect/nextend-social-login.php:80
1453
+ #: nextend-facebook-connect/nextend-social-login.php:87
1454
  msgid "Update now!"
1455
  msgstr ""
1456
 
1457
+ #: nextend-facebook-connect/nextend-social-login.php:94
1458
  #, php-format
1459
  msgid "Your domain name changed so you must authorize %1$s again."
1460
  msgstr ""
1461
 
1462
+ #: nextend-facebook-connect/nextend-social-login.php:488
1463
  #, php-format
1464
  msgid ""
1465
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
1466
  "Connect as it is not needed anymore."
1467
  msgstr ""
1468
 
1469
+ #: nextend-facebook-connect/nextend-social-login.php:499
1470
  #, php-format
1471
  msgid ""
1472
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
1473
  "Connect as it is not needed anymore."
1474
  msgstr ""
1475
 
1476
+ #: nextend-facebook-connect/nextend-social-login.php:763
1477
+ #: nextend-facebook-connect/nextend-social-login.php:1109
1478
  msgid "Social Login"
1479
  msgstr ""
1480
 
1481
+ #: nextend-facebook-connect/nextend-social-login.php:1090
1482
  msgid "Social Accounts"
1483
  msgstr ""
1484
 
1549
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:13
1550
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:13
1551
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
1552
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:12
1553
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:12
1554
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:12
1555
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:12
1556
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:12
1557
  #, php-format
1558
  msgctxt "App creation"
1559
  msgid "Create %s"
1633
  msgstr ""
1634
 
1635
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:43
1636
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
1637
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:32
1638
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:38
1639
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:30
1640
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:29
1641
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:33
1642
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:31
1643
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:30
1644
  #, php-format
1645
  msgid "I am done setting up my %s"
1646
  msgstr ""
1774
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
1775
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
1776
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
1777
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
1778
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
1779
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
1780
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
1781
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
1782
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
1783
  #: nextend-social-login-pro/providers/vk/admin/settings.php:27
1784
  #: nextend-social-login-pro/providers/vk/admin/settings.php:39
1785
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
1786
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
1787
  msgid "Required"
1788
  msgstr ""
1789
 
1791
  #: nextend-facebook-connect/providers/google/admin/settings.php:35
1792
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
1793
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
1794
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
1795
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
1796
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
1797
  #: nextend-social-login-pro/providers/vk/admin/settings.php:33
1798
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
1799
  #, php-format
1800
  msgid ""
1801
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1822
  #: nextend-facebook-connect/providers/google/google.php:144
1823
  #: nextend-facebook-connect/providers/twitter/twitter.php:105
1824
  #: nextend-social-login-pro/providers/amazon/amazon.php:63
1825
+ #: nextend-social-login-pro/providers/disqus/disqus.php:110
1826
  #: nextend-social-login-pro/providers/linkedin/linkedin.php:88
1827
  #: nextend-social-login-pro/providers/paypal/paypal.php:125
1828
  #: nextend-social-login-pro/providers/vk/vk.php:60
1829
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:97
1830
  #, php-format
1831
  msgid ""
1832
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1864
  msgstr ""
1865
 
1866
  #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:12
1867
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
1868
  #, php-format
1869
  msgid ""
1870
  "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1898
  msgstr ""
1899
 
1900
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1901
+ msgid "Select the OAuth consent screen!"
1902
  msgstr ""
1903
 
1904
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1905
  msgid ""
1906
+ "Enter a name for your App under the \"Application name\" field, which will "
1907
+ "appear as the name of the app asking for consent."
1908
  msgstr ""
1909
 
1910
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1911
+ #, php-format
1912
+ msgid ""
1913
+ "Fill the \"Authorized domains\" field with your domain name probably: <b>%s</"
1914
+ "b> without subdomains!"
1915
  msgstr ""
1916
 
1917
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1918
+ msgid "Press \"Save\" and you will be redirected back to Credentials screen."
1919
+ msgstr ""
1920
+
1921
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:27
1922
+ msgid ""
1923
+ "Click the Create credentials button and select \"OAuth client ID\" from the "
1924
+ "dropdown."
1925
  msgstr ""
1926
 
1927
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:28
1928
+ msgid "Your application type should be \"Web application\""
1929
  msgstr ""
1930
 
1931
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
1932
+ msgid "Name your application"
1933
+ msgstr ""
1934
+
1935
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
1936
+ msgid "Click on the Create button"
1937
+ msgstr ""
1938
+
1939
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
1940
  msgid ""
1941
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1942
  "the Credentials in the left hand menu and select your app by clicking on its "
1960
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
1961
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
1962
  #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
1963
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
1964
  msgid "Client ID"
1965
  msgstr ""
1966
 
1967
  #: nextend-facebook-connect/providers/google/admin/settings.php:40
1968
  #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
1969
  #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
1970
+ #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
1971
  msgid "Client Secret"
1972
  msgstr ""
1973
 
2066
  msgstr ""
2067
 
2068
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2069
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2070
  msgid "API Key"
2071
  msgstr ""
2072
 
2209
  msgid "Please install and activate %1$s to use the %2$s"
2210
  msgstr ""
2211
 
 
 
 
 
2212
  #: nextend-social-login-pro/nextend-social-login-pro.php:65
2213
  msgid "Network Activate"
2214
  msgstr ""
2242
  msgstr ""
2243
 
2244
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
2245
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2246
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2247
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2248
  #, php-format
2249
  msgid ""
2250
  "To allow your visitors to log in with their %1$s account, first you must "
2255
  msgstr ""
2256
 
2257
  #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2258
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2259
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:16
2260
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2261
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:16
2262
  #: nextend-social-login-pro/providers/vk/admin/getting-started.php:16
2263
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2264
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:16
2265
  #, php-format
2266
  msgid "Log in with your %s credentials if you are not logged in."
2267
  msgstr ""
2316
  msgid "Unlink account from <b>Amazon</b>"
2317
  msgstr ""
2318
 
2319
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
2320
+ #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
2321
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
2322
+ #, php-format
2323
+ msgid "Click on the name of your %s App."
2324
+ msgstr ""
2325
+
2326
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:12
2327
+ msgid ""
2328
+ "Select the \"Settings\" tab and scroll down to the Authentication section!"
2329
+ msgstr ""
2330
+
2331
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:13
2332
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
2333
+ #, php-format
2334
+ msgid "Add the following URL to the \"Callback URL\" field <b>%s</b> "
2335
+ msgstr ""
2336
+
2337
+ #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
2338
+ msgid "Click on the \"Save Changes\" button."
2339
+ msgstr ""
2340
+
2341
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2342
+ msgid ""
2343
+ "Click on the link \"registering an application\" under the Applications tab."
2344
+ msgstr ""
2345
+
2346
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2347
+ msgid "Enter a \"Label\" and \"Description\" for your App."
2348
+ msgstr ""
2349
+
2350
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
2351
+ #, php-format
2352
+ msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
2353
+ msgstr ""
2354
+
2355
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
2356
+ msgid ""
2357
+ "Complete the Human test and click the \"Register my application\" button."
2358
+ msgstr ""
2359
+
2360
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
2361
+ #, php-format
2362
+ msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2363
+ msgstr ""
2364
+
2365
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
2366
+ msgid ""
2367
+ "Select \"Read only\" at Default Access under the Authentication section."
2368
+ msgstr ""
2369
+
2370
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
2371
+ msgid "Click the \"Save Changes\" button!"
2372
+ msgstr ""
2373
+
2374
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:25
2375
+ msgid "Navigate to the \"Details\" tab of your Application!"
2376
+ msgstr ""
2377
+
2378
+ #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:26
2379
+ msgid ""
2380
+ "Here you can see your \"API Key\" and \"API Secret:\". These will be needed "
2381
+ "in the plugin's settings."
2382
+ msgstr ""
2383
+
2384
+ #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
2385
+ msgid "API Secret"
2386
+ msgstr ""
2387
+
2388
+ #: nextend-social-login-pro/providers/disqus/disqus.php:84
2389
+ msgid "Continue with <b>Disqus</b>"
2390
+ msgstr ""
2391
+
2392
+ #: nextend-social-login-pro/providers/disqus/disqus.php:85
2393
+ msgid "Link account with <b>Disqus</b>"
2394
+ msgstr ""
2395
+
2396
+ #: nextend-social-login-pro/providers/disqus/disqus.php:86
2397
+ msgid "Unlink account from <b>Disqus</b>"
2398
+ msgstr ""
2399
+
2400
  #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
2401
  msgid "Click on the App"
2402
  msgstr ""
2423
  msgstr ""
2424
 
2425
  #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
2426
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
2427
  #, php-format
2428
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2429
  msgstr ""
2459
  msgid "Scroll down to \"REST API apps\"."
2460
  msgstr ""
2461
 
 
 
 
 
 
2462
  #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
2463
  #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
2464
  msgid "Select the \"Live\" option on the top-right side. "
2615
  msgid "Unlink account from <b>VK</b>"
2616
  msgstr ""
2617
 
2618
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:12
2619
+ msgid "Click \"Manage Settings\" under the Tools section!"
2620
+ msgstr ""
2621
+
2622
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:13
2623
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
2624
+ #, php-format
2625
+ msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2626
+ msgstr ""
2627
+
2628
+ #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
2629
+ msgid "Click on \"Update\""
2630
+ msgstr ""
2631
+
2632
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2633
+ msgid "Click on the \"Create New Application\" button."
2634
+ msgstr ""
2635
+
2636
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2637
+ msgid "Enter a \"Name\" and \"Description\" for your App."
2638
+ msgstr ""
2639
+
2640
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
2641
+ msgid "You can leave the \"Javascript Origins\" field blank!"
2642
+ msgstr ""
2643
+
2644
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:22
2645
+ msgid "Complete the human verification test."
2646
+ msgstr ""
2647
+
2648
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:23
2649
+ msgid "At the \"Type\" make sure \"Web\" is selected!"
2650
+ msgstr ""
2651
+
2652
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
2653
+ msgid "Click the \"Create\" button!"
2654
+ msgstr ""
2655
+
2656
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:25
2657
+ msgid ""
2658
+ "Click the name of your App either in the Breadcrumb navigation or next to "
2659
+ "Editing!"
2660
+ msgstr ""
2661
+
2662
+ #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:26
2663
+ msgid ""
2664
+ "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2665
+ "needed in the plugin's settings."
2666
+ msgstr ""
2667
+
2668
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:71
2669
+ msgid "Continue with <b>WordPress.com</b>"
2670
+ msgstr ""
2671
+
2672
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:72
2673
+ msgid "Link account with <b>WordPress.com</b>"
2674
+ msgstr ""
2675
+
2676
+ #: nextend-social-login-pro/providers/wordpress/wordpress.php:73
2677
+ msgid "Unlink account from <b>WordPress.com</b>"
2678
+ msgstr ""
2679
+
2680
  #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:10
2681
  #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:10
2682
  #: nextend-social-login-pro/template-parts/login/above-separator.php:11
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.13
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.14
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.13';
20
 
21
- public static $nslPROMinVersion = '3.0.13';
22
 
23
  public static $proxyPage = false;
24
 
@@ -53,8 +53,11 @@ class NextendSocialLogin {
53
 
54
  public static function isProAddonAuthorizedDomainChanged() {
55
 
56
- if (NextendSocialLogin::$settings->get('license_key_ok') == '1' && NextendSocialLogin::$settings->get('authorized_domain') != '') {
57
- if (NextendSocialLogin::$settings->get('authorized_domain') != NextendSocialLogin::getDomain()) {
 
 
 
58
  if (is_admin() && current_user_can('manage_options')) {
59
  if (did_action('init')) {
60
  NextendSocialLogin::noticeChangedDomain();
16
 
17
  class NextendSocialLogin {
18
 
19
+ public static $version = '3.0.14';
20
 
21
+ public static $nslPROMinVersion = '3.0.14';
22
 
23
  public static $proxyPage = false;
24
 
53
 
54
  public static function isProAddonAuthorizedDomainChanged() {
55
 
56
+ $authorizedDomain = preg_replace('/^www\./', '', NextendSocialLogin::$settings->get('authorized_domain'));
57
+ if (NextendSocialLogin::$settings->get('license_key_ok') == '1' && $authorizedDomain != '') {
58
+ $authorizedDomain = '.' . $authorizedDomain;
59
+ $currentDomain = '.' . preg_replace('/^www\./', '', NextendSocialLogin::getDomain());
60
+ if ($authorizedDomain != $currentDomain && strrpos($currentDomain, $authorizedDomain) !== strlen($currentDomain) - strlen($authorizedDomain)) {
61
  if (is_admin() && current_user_can('manage_options')) {
62
  if (did_action('init')) {
63
  NextendSocialLogin::noticeChangedDomain();
providers/disqus/disqus.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class NextendSocialProviderDisqus extends NextendSocialProviderDummy {
4
+
5
+ protected $color = '#2e9fff';
6
+
7
+ public function __construct() {
8
+ $this->id = 'disqus';
9
+ $this->label = 'Disqus';
10
+ $this->path = dirname(__FILE__);
11
+ }
12
+ }
13
+
14
+ NextendSocialLogin::addProvider(new NextendSocialProviderDisqus());
providers/disqus/disqus.png ADDED
Binary file
providers/facebook/facebook.php CHANGED
@@ -269,6 +269,7 @@ class NextendSocialProviderFacebook extends NextendSocialProvider {
269
  } else {
270
  if (basename($_SERVER['PHP_SELF']) !== 'plugins.php') {
271
  require_once(dirname(__FILE__) . '/compat/nextend-facebook-connect.php');
 
272
  } else {
273
 
274
  add_action('admin_menu', array(
269
  } else {
270
  if (basename($_SERVER['PHP_SELF']) !== 'plugins.php') {
271
  require_once(dirname(__FILE__) . '/compat/nextend-facebook-connect.php');
272
+ add_action('admin_notices', 'NextendSocialLoginAdmin::show_facebook_compat_cessation_notice');
273
  } else {
274
 
275
  add_action('admin_menu', array(
providers/google/admin/getting-started.php CHANGED
@@ -20,8 +20,11 @@ $provider = $this->getProvider();
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>
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 the OAuth consent screen!', 'nextend-facebook-connect'); ?></li>
24
+ <li><?php _e('Enter a name for your App under the "Application name" field, which will appear as the name of the app asking for consent.', 'nextend-facebook-connect'); ?></li>
25
+ <li><?php printf(__('Fill the "Authorized domains" field with your domain name probably: <b>%s</b> without subdomains!', 'nextend-facebook-connect'), str_replace('www.', '', $_SERVER['HTTP_HOST'])); ?></li>
26
+ <li><?php _e('Press "Save" and you will be redirected back to Credentials screen.', 'nextend-facebook-connect'); ?></li>
27
+ <li><?php _e('Click the Create credentials button and select "OAuth client ID" from the dropdown.', 'nextend-facebook-connect'); ?></li>
28
  <li><?php _e('Your application type should be "Web application"', 'nextend-facebook-connect'); ?></li>
29
  <li><?php _e('Name your application', 'nextend-facebook-connect'); ?></li>
30
  <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-client.php CHANGED
@@ -13,8 +13,8 @@ class NextendSocialProviderGoogleClient extends NextendSocialOauth2 {
13
  private $approvalPrompt = 'force';
14
 
15
  protected $scopes = array(
16
- 'https://www.googleapis.com/auth/userinfo.email',
17
- 'https://www.googleapis.com/auth/userinfo.profile'
18
  );
19
 
20
  protected $endpointAuthorization = 'https://accounts.google.com/o/oauth2/auth';
13
  private $approvalPrompt = 'force';
14
 
15
  protected $scopes = array(
16
+ 'email',
17
+ 'profile'
18
  );
19
 
20
  protected $endpointAuthorization = 'https://accounts.google.com/o/oauth2/auth';
providers/google/google.php CHANGED
@@ -251,6 +251,7 @@ class NextendSocialProviderGoogle extends NextendSocialProvider {
251
  } else {
252
  if (basename($_SERVER['PHP_SELF']) !== 'plugins.php') {
253
  require_once(dirname(__FILE__) . '/compat/nextend-google-connect.php');
 
254
  } else {
255
 
256
  add_action('admin_menu', array(
251
  } else {
252
  if (basename($_SERVER['PHP_SELF']) !== 'plugins.php') {
253
  require_once(dirname(__FILE__) . '/compat/nextend-google-connect.php');
254
+ add_action('admin_notices', 'NextendSocialLoginAdmin::show_google_compat_cessation_notice');
255
  } else {
256
 
257
  add_action('admin_menu', array(
providers/twitter/twitter.php CHANGED
@@ -228,6 +228,7 @@ class NextendSocialProviderTwitter extends NextendSocialProvider {
228
  } else {
229
  if (basename($_SERVER['PHP_SELF']) !== 'plugins.php') {
230
  require_once(dirname(__FILE__) . '/compat/nextend-twitter-connect.php');
 
231
  } else {
232
 
233
  add_action('admin_menu', array(
228
  } else {
229
  if (basename($_SERVER['PHP_SELF']) !== 'plugins.php') {
230
  require_once(dirname(__FILE__) . '/compat/nextend-twitter-connect.php');
231
+ add_action('admin_notices', 'NextendSocialLoginAdmin::show_twitter_compat_cessation_notice');
232
  } else {
233
 
234
  add_action('admin_menu', array(
providers/wordpress/wordpress.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ class NextendSocialProviderWordpress extends NextendSocialProviderDummy {
4
+
5
+ protected $color = '#21759b';
6
+
7
+ public function __construct() {
8
+ $this->id = 'wordpress';
9
+ $this->label = 'WordPress.com';
10
+ $this->path = dirname(__FILE__);
11
+ }
12
+ }
13
+
14
+ NextendSocialLogin::addProvider(new NextendSocialProviderWordpress());
providers/wordpress/wordpress.png ADDED
Binary file
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.13
8
  Requires PHP: 5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -119,6 +119,20 @@ Using the Pro Addon you can set where the login buttons should appear on the Reg
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.
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.14
8
  Requires PHP: 5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
119
  2. Nextend Social Login and Register in the profile page for account linking
120
 
121
  == Changelog ==
122
+ = 3.0.14 =
123
+ * Fix: Conflict with Login with Ajax reset password.
124
+ * Fix: BuddyPress related themes, that render the avatar with the bp_displayed_user_avatar() will be able to get the avatar of the user.
125
+ * Fix: New email and profile Google scopes, since old ones became deprecated.
126
+ * Fix: WooCommerce User Email Verification plugin prevented users with NSL from logging in.
127
+ * Fix: registerComplete function is hooked later to let other plugins send their email notifications.
128
+ * Old Nextend Twitter/Google Connect - backwards compatibility notice added. In the next release the backward compatibility will be removed.
129
+
130
+
131
+ * PRO: Fix: Ultimate Member - missing avatar when Support login restriction is disabled.
132
+ * PRO: Fix: Authorized domain notification when the page was authorized on non www but was visited on www or vice versa.
133
+ * PRO: New provider - [WordPress.com](https://nextendweb.com/nextend-social-login-docs/provider-wordpress-com/)
134
+ * PRO: New provider - [Disqus](https://nextendweb.com/nextend-social-login-docs/provider-disqus/)
135
+
136
  = 3.0.13 =
137
  * Fix: Twitter Getting Started and Settings page updated according to the new Twitter App creation.
138
  * Fix: Won't stuck on a blank page anymore when the login and registration is blocked by WP Cerber.