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

Version Description

  • Remove whitespaces from username
  • Provider test process renamed to "Verify Settings"
  • NextendSocialLogin::renderLinkAndUnlinkButtons($heading
Download this release

Release Info

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

Code changes from version 3.0.3 to 3.0.4

admin/admin.php CHANGED
@@ -28,6 +28,15 @@ class NextendSocialLoginAdmin {
28
  ), admin_url('options-general.php'));
29
  }
30
 
 
 
 
 
 
 
 
 
 
31
  public static function admin_menu() {
32
  $menu = add_options_page('Nextend Social Login', 'Nextend Social Login', 'manage_options', 'nextend-social-login', array(
33
  'NextendSocialLoginAdmin',
@@ -53,6 +62,9 @@ class NextendSocialLoginAdmin {
53
  }
54
  }
55
  switch ($view) {
 
 
 
56
  case 'global-settings':
57
  self::display_admin_area('global-settings');
58
  break;
@@ -96,33 +108,74 @@ class NextendSocialLoginAdmin {
96
  }
97
 
98
  public static function admin_init() {
 
 
 
 
 
 
 
 
 
99
 
100
  if (isset($_GET['page']) && $_GET['page'] == 'nextend-social-login') {
101
- if (!empty($_GET['view']) && !empty($_GET['provider'])) {
102
  switch ($_GET['view']) {
103
  case 'enable':
104
  case 'sub-enable':
105
- if (check_admin_referer('nextend-social-login_enable_' . $_GET['provider'])) {
106
- NextendSocialLogin::enableProvider($_GET['provider']);
107
- }
108
- if ($_GET['view'] == 'sub-enable') {
109
- wp_redirect(NextendSocialLogin::$providers[$_GET['provider']]->getAdminUrl('settings'));
 
 
 
 
 
110
  exit;
111
  }
112
  break;
113
  case 'disable':
114
  case 'sub-disable':
115
- if (check_admin_referer('nextend-social-login_disable_' . $_GET['provider'])) {
116
- NextendSocialLogin::disableProvider($_GET['provider']);
117
- }
118
- if ($_GET['view'] == 'sub-disable') {
119
- wp_redirect(NextendSocialLogin::$providers[$_GET['provider']]->getAdminUrl('settings'));
 
 
 
 
 
120
  exit;
121
  }
122
  break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  }
124
- wp_redirect(self::getAdminUrl());
125
- exit;
126
  }
127
  }
128
  add_action('admin_post_nextend-social-login', 'NextendSocialLoginAdmin::save_form_data');
@@ -151,7 +204,8 @@ class NextendSocialLoginAdmin {
151
  NextendSocialLogin::$settings->update($_POST);
152
 
153
  NextendSocialLoginAdminNotices::addSuccess(__('Settings saved.'));
154
- wp_redirect(self::getAdminUrl($view));
 
155
  exit;
156
  } else if ($view == 'pro-addon') {
157
 
@@ -242,6 +296,11 @@ class NextendSocialLoginAdmin {
242
  $newData[$key] = 0;
243
  }
244
  break;
 
 
 
 
 
245
  case 'enabled':
246
  if (is_array($value)) {
247
  $newData[$key] = $value;
@@ -254,7 +313,7 @@ class NextendSocialLoginAdmin {
254
  break;
255
  case 'license_key':
256
  $value = trim(sanitize_text_field($value));
257
- if ($value != NextendSocialLogin::$settings->get('license_key')) {
258
  $newData['license_key_ok'] = '0';
259
 
260
  if (!empty($value)) {
@@ -271,7 +330,8 @@ class NextendSocialLoginAdmin {
271
  }
272
  break;
273
  case 'review_state':
274
- $newData['review_state'] = intval($value);
 
275
  break;
276
  }
277
  }
@@ -367,16 +427,14 @@ class NextendSocialLoginAdmin {
367
  }
368
 
369
  public static function showProBox() {
370
- $isPRO = apply_filters('nsl-pro', false);
371
- if (!$isPRO) {
372
  include(dirname(__FILE__) . '/templates/pro.php');
373
  }
374
  }
375
 
376
  public static function getProState() {
377
  if (NextendSocialLogin::$settings->get('license_key_ok') == '1') {
378
- $isPRO = apply_filters('nsl-pro', false);
379
- if ($isPRO) {
380
  return 'activated';
381
  } else if (!current_user_can('install_plugins')) {
382
  return 'no-capability';
@@ -413,4 +471,28 @@ class NextendSocialLoginAdmin {
413
  }
414
  wp_die();
415
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  }
28
  ), admin_url('options-general.php'));
29
  }
30
 
31
+ public static function getAdminSettingsUrl($subview = 'general') {
32
+
33
+ return add_query_arg(array(
34
+ 'page' => 'nextend-social-login',
35
+ 'view' => 'global-settings',
36
+ 'subview' => $subview
37
+ ), admin_url('options-general.php'));
38
+ }
39
+
40
  public static function admin_menu() {
41
  $menu = add_options_page('Nextend Social Login', 'Nextend Social Login', 'manage_options', 'nextend-social-login', array(
42
  'NextendSocialLoginAdmin',
62
  }
63
  }
64
  switch ($view) {
65
+ case 'fix-redirect-uri':
66
+ self::display_admin_area('fix-redirect-uri');
67
+ break;
68
  case 'global-settings':
69
  self::display_admin_area('global-settings');
70
  break;
108
  }
109
 
110
  public static function admin_init() {
111
+ if (current_user_can('manage_options')) {
112
+ if (!isset($_GET['page']) || $_GET['page'] != 'nextend-social-login' || !isset($_GET['view']) || $_GET['view'] != 'fix-redirect-uri') {
113
+ add_action('admin_notices', 'NextendSocialLoginAdmin::show_oauth_uri_notice');
114
+ }
115
+
116
+ if (!self::isPro() && NextendSocialLogin::$settings->get('woocommerce_dismissed') == 0 && class_exists('woocommerce', false) && count(NextendSocialLogin::$enabledProviders)) {
117
+ add_action('admin_notices', 'NextendSocialLoginAdmin::show_woocommerce_notice');
118
+ }
119
+ }
120
 
121
  if (isset($_GET['page']) && $_GET['page'] == 'nextend-social-login') {
122
+ if (!empty($_GET['view'])) {
123
  switch ($_GET['view']) {
124
  case 'enable':
125
  case 'sub-enable':
126
+ if (!empty($_GET['provider'])) {
127
+ if (check_admin_referer('nextend-social-login_enable_' . $_GET['provider'])) {
128
+ NextendSocialLogin::enableProvider($_GET['provider']);
129
+ }
130
+ if ($_GET['view'] == 'sub-enable') {
131
+ wp_redirect(NextendSocialLogin::$providers[$_GET['provider']]->getAdminUrl('settings'));
132
+ exit;
133
+ }
134
+
135
+ wp_redirect(self::getAdminUrl());
136
  exit;
137
  }
138
  break;
139
  case 'disable':
140
  case 'sub-disable':
141
+ if (!empty($_GET['provider'])) {
142
+ if (check_admin_referer('nextend-social-login_disable_' . $_GET['provider'])) {
143
+ NextendSocialLogin::disableProvider($_GET['provider']);
144
+ }
145
+ if ($_GET['view'] == 'sub-disable') {
146
+ wp_redirect(NextendSocialLogin::$providers[$_GET['provider']]->getAdminUrl('settings'));
147
+ exit;
148
+ }
149
+
150
+ wp_redirect(self::getAdminUrl());
151
  exit;
152
  }
153
  break;
154
+ case 'update_oauth_redirect_url':
155
+ if (check_admin_referer('nextend-social-login_update_oauth_redirect_url')) {
156
+ foreach (NextendSocialLogin::$enabledProviders AS $provider) {
157
+ $provider->updateOauthRedirectUrl();
158
+ }
159
+ }
160
+
161
+ wp_redirect(self::getAdminUrl());
162
+ exit;
163
+
164
+ case 'dismiss_woocommerce':
165
+ if (check_admin_referer('nsl_dismiss_woocommerce')) {
166
+ NextendSocialLogin::$settings->update(array(
167
+ 'woocommerce_dismissed' => 1
168
+ ));
169
+
170
+ if (!empty($_REQUEST['redirect_to'])) {
171
+ wp_safe_redirect($_REQUEST['redirect_to']);
172
+ exit;
173
+ }
174
+ }
175
+
176
+ wp_redirect(self::getAdminUrl());
177
+ break;
178
  }
 
 
179
  }
180
  }
181
  add_action('admin_post_nextend-social-login', 'NextendSocialLoginAdmin::save_form_data');
204
  NextendSocialLogin::$settings->update($_POST);
205
 
206
  NextendSocialLoginAdminNotices::addSuccess(__('Settings saved.'));
207
+
208
+ wp_redirect(self::getAdminSettingsUrl(!empty($_REQUEST['subview']) ? $_REQUEST['subview'] : ''));
209
  exit;
210
  } else if ($view == 'pro-addon') {
211
 
296
  $newData[$key] = 0;
297
  }
298
  break;
299
+ case 'show_login_form':
300
+ case 'show_registration_form':
301
+ case 'show_embedded_login_form':
302
+ $newData[$key] = sanitize_text_field($value);
303
+ break;
304
  case 'enabled':
305
  if (is_array($value)) {
306
  $newData[$key] = $value;
313
  break;
314
  case 'license_key':
315
  $value = trim(sanitize_text_field($value));
316
+ if ($value != NextendSocialLogin::$settings->get('license_key') || NextendSocialLogin::$settings->get('license_key_ok') == '0') {
317
  $newData['license_key_ok'] = '0';
318
 
319
  if (!empty($value)) {
330
  }
331
  break;
332
  case 'review_state':
333
+ case 'woocommerce_dismissed':
334
+ $newData[$key] = intval($value);
335
  break;
336
  }
337
  }
427
  }
428
 
429
  public static function showProBox() {
430
+ if (!self::isPro()) {
 
431
  include(dirname(__FILE__) . '/templates/pro.php');
432
  }
433
  }
434
 
435
  public static function getProState() {
436
  if (NextendSocialLogin::$settings->get('license_key_ok') == '1') {
437
+ if (self::isPro()) {
 
438
  return 'activated';
439
  } else if (!current_user_can('install_plugins')) {
440
  return 'no-capability';
471
  }
472
  wp_die();
473
  }
474
+
475
+ public static function show_oauth_uri_notice() {
476
+ foreach (NextendSocialLogin::$enabledProviders AS $provider) {
477
+ if (!$provider->checkOauthRedirectUrl()) {
478
+ echo '<div class="error">
479
+ <p>' . sprintf(__('%s detected that your login url changed. You must update the Oauth redirect URIs in the related social applications.', 'nextend-facebook-connect'), '<b>Nextend Social Login</b>') . '</p>
480
+ <p class="submit"><a href="' . NextendSocialLoginAdmin::getAdminUrl('fix-redirect-uri') . '" class="button button-primary">' . __('Fix Error', 'nextend-facebook-connect') . ' - ' . __('Oauth Redirect URI', 'nextend-facebook-connect') . '</a></p>
481
+ </div>';
482
+ break;
483
+ }
484
+ }
485
+ }
486
+
487
+ public static function show_woocommerce_notice() {
488
+ $dismissUrl = wp_nonce_url(add_query_arg(array('redirect_to' => NextendSocialLogin::getCurrentPageURL()), NextendSocialLoginAdmin::getAdminUrl('dismiss_woocommerce')), 'nsl_dismiss_woocommerce');
489
+ echo '<div class="notice notice-info">
490
+ <p>' . sprintf(__('%1$s detected that %2$s installed on your site. You need the Pro Addon to display Social Login buttons in %2$s login form!', 'nextend-facebook-connect'), '<b>Nextend Social Login</b>', '<b>WooCommerce</b>') . '</p>
491
+ <p><a href="' . NextendSocialLoginAdmin::trackUrl('https://nextendweb.com/social-login/', 'woocommerce-notice') . '" target="_blank" onclick="window.location.href=\'' . esc_url($dismissUrl) . '\';" class="button button-primary">' . __('Dismiss and check Pro Addon', 'nextend-facebook-connect') . '</a> <a href="' . esc_url($dismissUrl) . '" class="button button-secondary">' . __('Dismiss', 'nextend-facebook-connect') . '</a></p>
492
+ </div>';
493
+ }
494
+
495
+ public static function isPro() {
496
+ return apply_filters('nsl-pro', false);
497
+ }
498
  }
admin/style.css CHANGED
@@ -1,3 +1,8 @@
 
 
 
 
 
1
  .nsl-clear {
2
  clear: both;
3
  }
@@ -11,6 +16,12 @@
11
  margin: 0;
12
  }
13
 
 
 
 
 
 
 
14
  #nsl-admin,
15
  #nsl-admin p,
16
  #nsl-admin ul,
@@ -116,10 +127,8 @@
116
  }
117
 
118
  #nsl-admin .nsl-admin-sub-nav-bar .nsl-admin-nav-tab {
 
119
  margin-right: 30px;
120
- }
121
-
122
- #nsl-admin .nsl-admin-sub-nav-bar .nsl-admin-nav-tab {
123
  line-height: 40px;
124
  text-decoration: none;
125
  color: #23282d;
@@ -135,6 +144,21 @@
135
  font-weight: bold;
136
  }
137
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
138
  .nsl-dashboard-providers {
139
  position: relative;
140
  padding: 15px;
1
+ #screen-meta,
2
+ #screen-meta-links {
3
+ display: none !important;
4
+ }
5
+
6
  .nsl-clear {
7
  clear: both;
8
  }
16
  margin: 0;
17
  }
18
 
19
+ .error + #nsl-admin,
20
+ .notice + #nsl-admin,
21
+ .updated + #nsl-admin {
22
+ margin-top: 30px;
23
+ }
24
+
25
  #nsl-admin,
26
  #nsl-admin p,
27
  #nsl-admin ul,
127
  }
128
 
129
  #nsl-admin .nsl-admin-sub-nav-bar .nsl-admin-nav-tab {
130
+ position: relative;
131
  margin-right: 30px;
 
 
 
132
  line-height: 40px;
133
  text-decoration: none;
134
  color: #23282d;
144
  font-weight: bold;
145
  }
146
 
147
+ #nsl-admin .nsl-admin-sub-nav-bar .nsl-admin-nav-tab .nsl-pro-badge {
148
+ display: block;
149
+ background: #0073aa;
150
+ border-radius: 3px;
151
+ color: #fff;
152
+ position: absolute;
153
+ right: -20px;
154
+ top: -2px;
155
+ padding: 0 5px;
156
+ line-height: 16px;
157
+ font-size: 10px;
158
+ font-weight: normal;
159
+ text-transform: uppercase;
160
+ }
161
+
162
  .nsl-dashboard-providers {
163
  position: relative;
164
  padding: 15px;
admin/templates-provider/usage.php CHANGED
@@ -8,9 +8,11 @@ defined('ABSPATH') || die();
8
 
9
  <?php
10
  $shortcodes = array(
 
11
  '[nextend_social_login provider="' . $this->getId() . '"]',
12
  '[nextend_social_login provider="' . $this->getId() . '" style="icon"]',
13
- '[nextend_social_login provider="' . $this->getId() . '" style="icon" redirect="https://nextendweb.com/"]'
 
14
  );
15
  ?>
16
 
8
 
9
  <?php
10
  $shortcodes = array(
11
+ '[nextend_social_login]',
12
  '[nextend_social_login provider="' . $this->getId() . '"]',
13
  '[nextend_social_login provider="' . $this->getId() . '" style="icon"]',
14
+ '[nextend_social_login provider="' . $this->getId() . '" style="icon" redirect="https://nextendweb.com/"]',
15
+ '[nextend_social_login trackerdata="source"]'
16
  );
17
  ?>
18
 
admin/templates/fix-redirect-uri.php ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <div class="nsl-admin-content">
2
+ <h1 class="title"><?php _e('Fix Oauth Redirect URIs', 'nextend-facebook-connect'); ?></h1>
3
+ <?php
4
+ /** @var NextendSocialProvider[] $wrongOauthProviders */
5
+ $wrongOauthProviders = array();
6
+ foreach (NextendSocialLogin::$enabledProviders AS $provider) {
7
+ if (!$provider->checkOauthRedirectUrl()) {
8
+ $wrongOauthProviders[] = $provider;
9
+ }
10
+ }
11
+ if (count($wrongOauthProviders) === 0) {
12
+ echo '<div class="updated"><p>' . __('Every Oauth Redirect URI seems fine', 'nextend-facebook-connect') . '</p></div>';
13
+
14
+ foreach (NextendSocialLogin::$enabledProviders AS $provider) {
15
+ $provider->renderOauthChangedInstruction();
16
+ }
17
+ } else {
18
+ ?>
19
+ <p><?php printf(__('%s detected that your login url changed. You must update the Oauth redirect URIs in the related social applications.', 'nextend-facebook-connect'), '<b>Nextend Social Login</b>'); ?></p>
20
+
21
+ <?php
22
+ foreach ($wrongOauthProviders AS $provider) {
23
+ $provider->renderOauthChangedInstruction();
24
+ }
25
+ ?>
26
+
27
+
28
+ <a href="<?php echo wp_nonce_url(NextendSocialLoginAdmin::getAdminUrl('update_oauth_redirect_url'), 'nextend-social-login_update_oauth_redirect_url'); ?>" class="button button-primary">
29
+ <?php _e('Got it', 'nextend-facebook-connect'); ?>
30
+ </a>
31
+
32
+ <?php } ?>
33
+ </div>
admin/templates/global-settings-pro.php DELETED
@@ -1,262 +0,0 @@
1
- <?php
2
- defined('ABSPATH') || die();
3
-
4
- $isPRO = apply_filters('nsl-pro', false);
5
-
6
- $attr = '';
7
- if (!$isPRO) {
8
- $attr = ' disabled ';
9
- }
10
-
11
- $settings = NextendSocialLogin::$settings;
12
- ?>
13
- <hr/>
14
- <h1><?php _e('PRO settings', 'nextend-facebook-connect'); ?></h1>
15
-
16
-
17
- <?php
18
- NextendSocialLoginAdmin::showProBox();
19
- ?>
20
- <table class="form-table" <?php if (!$isPRO): ?> style="opacity:0.5;"<?php endif; ?>>
21
- <tbody>
22
- <tr>
23
- <th scope="row"><?php _e('Login form', 'nextend-facebook-connect'); ?></th>
24
- <td>
25
- <fieldset>
26
- <legend class="screen-reader-text">
27
- <span><?php _e('Show buttons on Login form', 'nextend-facebook-connect'); ?></span></legend>
28
- <label><input type="radio" name="show_login_form"
29
- value="show" <?php if ($settings->get('show_login_form') == 'show') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
30
- <span><?php _e('Show login buttons', 'nextend-facebook-connect'); ?></span></label><br>
31
- <label><input type="radio" name="show_login_form"
32
- value="hide" <?php if ($settings->get('show_login_form') == 'hide') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
33
- <span><?php _e('Hide login buttons', 'nextend-facebook-connect'); ?></span></label><br>
34
- </fieldset>
35
- </td>
36
- </tr>
37
- <tr>
38
- <th scope="row"><?php _e('Registration form', 'nextend-facebook-connect'); ?></th>
39
- <td>
40
- <fieldset>
41
- <legend class="screen-reader-text">
42
- <span><?php _e('Registration form', 'nextend-facebook-connect'); ?></span></legend>
43
- <label><input type="radio" name="show_registration_form"
44
- value="show" <?php if ($settings->get('show_registration_form') == 'show') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
45
- <span><?php _e('Show login buttons', 'nextend-facebook-connect'); ?></span></label><br>
46
- <label><input type="radio" name="show_registration_form"
47
- value="hide" <?php if ($settings->get('show_registration_form') == 'hide') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
48
- <span><?php _e('Hide login buttons', 'nextend-facebook-connect'); ?></span></label><br>
49
- </fieldset>
50
- </td>
51
- </tr>
52
- <tr>
53
- <th scope="row"><?php _e('Login form button style', 'nextend-facebook-connect'); ?></th>
54
- <td>
55
- <fieldset>
56
- <legend class="screen-reader-text">
57
- <span><?php _e('Login form button style', 'nextend-facebook-connect'); ?></span></legend>
58
- <label>
59
- <input type="radio" name="login_form_button_style"
60
- value="default" <?php if ($settings->get('login_form_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
61
- <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
62
- <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
63
- </label>
64
- <label>
65
- <input type="radio" name="login_form_button_style"
66
- value="icon" <?php if ($settings->get('login_form_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
67
- <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
68
- <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
69
- </label><br>
70
- </fieldset>
71
- </td>
72
- </tr>
73
- <tr>
74
- <th scope="row"><?php _e('Login layout', 'nextend-facebook-connect'); ?></th>
75
- <td>
76
- <fieldset>
77
- <legend class="screen-reader-text">
78
- <span><?php _e('Login layout', 'nextend-facebook-connect'); ?></span></legend>
79
- <label>
80
- <input type="radio" name="login_form_layout"
81
- value="below" <?php if ($settings->get('login_form_layout') == 'below') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
82
- <span><?php _e('Below', 'nextend-facebook-connect'); ?></span><br/>
83
- <img src="<?php echo plugins_url('images/layouts/below.png', NSL_ADMIN_PATH) ?>"/>
84
- </label>
85
- <label>
86
- <input type="radio" name="login_form_layout"
87
- value="below-separator" <?php if ($settings->get('login_form_layout') == 'below-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
88
- <span><?php _e('Below with separator', 'nextend-facebook-connect'); ?></span><br/>
89
- <img src="<?php echo plugins_url('images/layouts/below-separator.png', NSL_ADMIN_PATH) ?>"/>
90
- </label>
91
- <label>
92
- <input type="radio" name="login_form_layout"
93
- value="below-floating" <?php if ($settings->get('login_form_layout') == 'below-floating') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
94
- <span><?php _e('Below and floating', 'nextend-facebook-connect'); ?></span><br/>
95
- <img src="<?php echo plugins_url('images/layouts/below-floating.png', NSL_ADMIN_PATH) ?>"/>
96
- </label>
97
- <label>
98
- <input type="radio" name="login_form_layout"
99
- value="above" <?php if ($settings->get('login_form_layout') == 'above') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
100
- <span><?php _e('Above', 'nextend-facebook-connect'); ?></span><br/>
101
- <img src="<?php echo plugins_url('images/layouts/above.png', NSL_ADMIN_PATH) ?>"/>
102
- </label>
103
- <label>
104
- <input type="radio" name="login_form_layout"
105
- value="above-separator" <?php if ($settings->get('login_form_layout') == 'above-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
106
- <span><?php _e('Above with separator', 'nextend-facebook-connect'); ?></span><br/>
107
- <img src="<?php echo plugins_url('images/layouts/above-separator.png', NSL_ADMIN_PATH) ?>"/>
108
- </label><br>
109
- </fieldset>
110
- </td>
111
- </tr>
112
- <tr>
113
- <th scope="row"><?php _e('Comment login button', 'nextend-facebook-connect'); ?></th>
114
- <td>
115
- <fieldset>
116
- <legend class="screen-reader-text">
117
- <span><?php _e('Comment login button', 'nextend-facebook-connect'); ?></span></legend>
118
- <label><input type="radio" name="comment_login_button"
119
- value="show" <?php if ($settings->get('comment_login_button') == 'show') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
120
- <span><?php _e('Show', 'nextend-facebook-connect'); ?></span></label><br>
121
- <label><input type="radio" name="comment_login_button"
122
- value="hide" <?php if ($settings->get('comment_login_button') == 'hide') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
123
- <span><?php _e('Hide', 'nextend-facebook-connect'); ?></span></label><br>
124
- </fieldset>
125
- <p class="description"><?php printf(__('You need to turn on the \' %1$s > %2$s > %3$s \' for this feature to work', 'nextend-facebook-connect'), __('Settings'), __('Discussion'), __('Users must be registered and logged in to comment')); ?></p>
126
- </td>
127
- </tr>
128
- <tr>
129
- <th scope="row"><?php _e('Comment button style', 'nextend-facebook-connect'); ?></th>
130
- <td>
131
- <fieldset>
132
- <legend class="screen-reader-text">
133
- <span><?php _e('Comment button style', 'nextend-facebook-connect'); ?></span></legend>
134
- <label>
135
- <input type="radio" name="comment_button_style"
136
- value="default" <?php if ($settings->get('comment_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
137
- <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
138
- <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
139
- </label>
140
- <label>
141
- <input type="radio" name="comment_button_style"
142
- value="icon" <?php if ($settings->get('comment_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
143
- <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
144
- <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
145
- </label><br>
146
- </fieldset>
147
- </td>
148
- </tr>
149
- <tr>
150
- <th scope="row"><?php _e('WooCommerce login form', 'nextend-facebook-connect'); ?></th>
151
- <td>
152
- <fieldset>
153
- <legend class="screen-reader-text">
154
- <span><?php _e('WooCommerce login form', 'nextend-facebook-connect'); ?></span></legend>
155
- <label><input type="radio" name="woocommerce_login"
156
- value="" <?php if ($settings->get('woocommerce_login') == '') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
157
- <span><?php _e('No Connect button in login form', 'nextend-facebook-connect'); ?></span></label><br>
158
- <label><input type="radio" name="woocommerce_login"
159
- value="before" <?php if ($settings->get('woocommerce_login') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
160
- <span><?php _e('Connect button before login form', 'nextend-facebook-connect'); ?></span>
161
- <code><?php _e('Action:'); ?>
162
- woocommerce_login_form_start</code></label><br>
163
- <label><input type="radio" name="woocommerce_login"
164
- value="after" <?php if ($settings->get('woocommerce_login') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
165
- <span><?php _e('Connect button after login form', 'nextend-facebook-connect'); ?></span>
166
- <code><?php _e('Action:'); ?>
167
- woocommerce_login_form_end</code></label><br>
168
- </fieldset>
169
- </td>
170
- </tr>
171
-
172
- <tr>
173
- <th scope="row"><?php _e('WooCommerce billing form', 'nextend-facebook-connect'); ?></th>
174
- <td>
175
- <fieldset>
176
- <legend class="screen-reader-text">
177
- <span><?php _e('WooCommerce billing form', 'nextend-facebook-connect'); ?></span></legend>
178
- <label><input type="radio" name="woocommerce_billing"
179
- value="" <?php if ($settings->get('woocommerce_billing') == '') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
180
- <span><?php _e('No Connect button in billing form', 'nextend-facebook-connect'); ?></span></label><br>
181
- <label><input type="radio" name="woocommerce_billing"
182
- value="before" <?php if ($settings->get('woocommerce_billing') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
183
- <span><?php _e('Connect button before billing form', 'nextend-facebook-connect'); ?></span>
184
- <code><?php _e('Action:'); ?>
185
- woocommerce_before_checkout_billing_form</code></label><br>
186
- <label><input type="radio" name="woocommerce_billing"
187
- value="after" <?php if ($settings->get('woocommerce_billing') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
188
- <span><?php _e('Connect button after billing form', 'nextend-facebook-connect'); ?></span></label>
189
- <code><?php _e('Action:'); ?>
190
- woocommerce_after_checkout_billing_form</code><br>
191
- </fieldset>
192
- </td>
193
- </tr>
194
- <tr>
195
- <th scope="row"><?php _e('WooCommerce account details', 'nextend-facebook-connect'); ?></th>
196
- <td>
197
- <fieldset>
198
- <legend class="screen-reader-text">
199
- <span><?php _e('WooCommerce account details', 'nextend-facebook-connect'); ?></span></legend>
200
- <label><input type="radio" name="woocommerce_account_details"
201
- value="before" <?php if ($settings->get('woocommerce_account_details') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
202
- <span><?php _e('Link buttons before account details', 'nextend-facebook-connect'); ?></span>
203
- <code><?php _e('Action:'); ?>
204
- woocommerce_edit_account_form_start</code></label><br>
205
- <label><input type="radio" name="woocommerce_account_details"
206
- value="after" <?php if ($settings->get('woocommerce_account_details') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
207
- <span><?php _e('Link buttons after account details', 'nextend-facebook-connect'); ?></span>
208
- <code><?php _e('Action:'); ?>
209
- woocommerce_edit_account_form_end</code></label><br>
210
- </fieldset>
211
- </td>
212
- </tr>
213
- <tr>
214
- <th scope="row"><?php _e('WooCommerce button style', 'nextend-facebook-connect'); ?></th>
215
- <td>
216
- <fieldset>
217
- <legend class="screen-reader-text">
218
- <span><?php _e('WooCommerce button style', 'nextend-facebook-connect'); ?></span></legend>
219
- <label>
220
- <input type="radio" name="woocoommerce_form_button_style"
221
- value="default" <?php if ($settings->get('woocoommerce_form_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
222
- <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
223
- <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
224
- </label>
225
- <label>
226
- <input type="radio" name="woocoommerce_form_button_style"
227
- value="icon" <?php if ($settings->get('woocoommerce_form_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
228
- <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
229
- <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
230
- </label><br>
231
- </fieldset>
232
- </td>
233
- </tr>
234
- <tr>
235
- <th scope="row"><?php _e('Registration notification sent to', 'nextend-facebook-connect'); ?></th>
236
- <td>
237
- <fieldset>
238
- <legend class="screen-reader-text">
239
- <span><?php _e('Registration notification sent to', 'nextend-facebook-connect'); ?></span></legend>
240
- <label><input type="radio" name="registration_notification_notify"
241
- value="0" <?php if ($settings->get('registration_notification_notify') == '0') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
242
- <span><?php _e('WordPress default', 'nextend-facebook-connect'); ?></span></label><br>
243
- <label><input type="radio" name="registration_notification_notify"
244
- value="nobody" <?php if ($settings->get('registration_notification_notify') == 'nobody') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
245
- <span><?php _e('Nobody', 'nextend-facebook-connect'); ?></span></label><br>
246
- <label><input type="radio" name="registration_notification_notify"
247
- value="user" <?php if ($settings->get('registration_notification_notify') == 'user') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
248
- <span><?php _e('User', 'nextend-facebook-connect'); ?></span></label><br>
249
- <label><input type="radio" name="registration_notification_notify"
250
- value="admin" <?php if ($settings->get('registration_notification_notify') == 'admin') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
251
- <span><?php _e('Admin', 'nextend-facebook-connect'); ?></span></label><br>
252
- <label><input type="radio" name="registration_notification_notify"
253
- value="both" <?php if ($settings->get('registration_notification_notify') == 'both') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
254
- <span><?php _e('User and Admin', 'nextend-facebook-connect'); ?></span></label><br>
255
- </fieldset>
256
- </td>
257
- </tr>
258
- </tbody>
259
- </table>
260
-
261
- <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
262
- value="<?php _e('Save Changes'); ?>"></p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
admin/templates/global-settings.php CHANGED
@@ -3,105 +3,46 @@ defined('ABSPATH') || die();
3
 
4
  /** @var $view string */
5
 
 
 
 
 
 
 
 
 
 
 
6
  $settings = NextendSocialLogin::$settings;
 
 
 
 
 
7
  ?>
8
  <div class="nsl-admin-content">
9
- <script type="text/javascript">
10
- (function ($) {
11
- $(document).ready(function () {
12
- $('#custom_redirect_enabled').on('change', function () {
13
- if ($(this).is(':checked')) {
14
- $('#redirect').css('display', '');
15
- }
16
- else {
17
- $('#redirect').css('display', 'none');
18
- }
19
- });
20
-
21
- $('#custom_redirect_reg_enabled').on('change', function () {
22
- if ($(this).is(':checked')) {
23
- $('#redirect_reg').css('display', '');
24
- }
25
- else {
26
- $('#redirect_reg').css('display', 'none');
27
- }
28
- });
29
- });
30
- })(jQuery);
31
- </script>
32
-
33
  <form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
34
 
35
- <?php wp_nonce_field('nextend-social-login'); ?>
36
  <input type="hidden" name="action" value="nextend-social-login"/>
37
- <input type="hidden" name="view" value="<?php echo $view; ?>"/>
 
38
  <input type="hidden" name="settings_saved" value="1"/>
39
-
40
- <table class="form-table">
41
- <tbody>
42
- <tr>
43
- <th scope="row"><?php _e('Debug mode', 'nextend-facebook-connect'); ?></th>
44
- <td>
45
- <fieldset>
46
- <legend class="screen-reader-text">
47
- <span><?php _e('Debug mode', 'nextend-facebook-connect'); ?></span></legend>
48
- <label><input type="radio" name="debug"
49
- value="0" <?php if ($settings->get('debug') == '0') : ?> checked="checked" <?php endif; ?>>
50
- <span><?php _e('Disabled', 'nextend-facebook-connect'); ?></span></label><br>
51
- <label><input type="radio" name="debug"
52
- value="1" <?php if ($settings->get('debug') == '1') : ?> checked="checked" <?php endif; ?>>
53
- <span><?php _e('Enabled', 'nextend-facebook-connect'); ?></span></label><br>
54
- </fieldset>
55
- </td>
56
- </tr>
57
- <tr>
58
- <th scope="row"><label
59
- for="redirect"><?php _e('Fixed redirect url for login', 'nextend-facebook-connect'); ?></label>
60
- </th>
61
- <td>
62
- <?php
63
- $useCustom = false;
64
- $redirect = $settings->get('redirect');
65
- if (!empty($redirect)) {
66
- $useCustom = true;
67
- }
68
- ?>
69
- <fieldset><label for="custom_redirect_enabled">
70
- <input name="custom_redirect_enabled" type="checkbox" id="custom_redirect_enabled"
71
- value="1" <?php if ($useCustom): ?> checked<?php endif; ?>>
72
- <?php _e('Use custom', 'nextend-facebook-connect'); ?></label>
73
- </fieldset>
74
- <input name="redirect" type="text" id="redirect" value="<?php echo esc_attr($redirect); ?>"
75
- class="regular-text"<?php if (!$useCustom): ?> style="display:none;"<?php endif; ?>>
76
- </td>
77
- </tr>
78
- <tr>
79
- <th scope="row"><label
80
- for="redirect_reg"><?php _e('Fixed redirect url for register', 'nextend-facebook-connect'); ?></label>
81
- </th>
82
- <td>
83
- <?php
84
- $useCustom = false;
85
- $redirectReg = $settings->get('redirect_reg');
86
- if (!empty($redirectReg)) {
87
- $useCustom = true;
88
- }
89
- ?>
90
- <fieldset><label for="custom_redirect_reg_enabled">
91
- <input name="custom_redirect_reg_enabled" type="checkbox" id="custom_redirect_reg_enabled"
92
- value="1" <?php if ($useCustom): ?> checked<?php endif; ?>>
93
- <?php _e('Use custom', 'nextend-facebook-connect'); ?></label>
94
- </fieldset>
95
- <input name="redirect_reg" type="text" id="redirect_reg"
96
- value="<?php echo esc_attr($redirectReg); ?>"
97
- class="regular-text"<?php if (!$useCustom): ?> style="display:none;"<?php endif; ?>>
98
- </td>
99
- </tr>
100
- </tbody>
101
- </table>
102
- <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
103
- value="<?php _e('Save Changes'); ?>"></p>
104
-
105
- <?php NextendSocialLoginAdmin::renderProSettings(); ?>
106
  </form>
107
  </div>
3
 
4
  /** @var $view string */
5
 
6
+ $allowedSubviews = array(
7
+ 'general',
8
+ 'login-form',
9
+ 'woocommerce',
10
+ 'comment',
11
+ 'buddypress'
12
+ );
13
+
14
+ $subview = (!empty($_GET['subview']) && in_array($_GET['subview'], $allowedSubviews)) ? $_GET['subview'] : 'general';
15
+
16
  $settings = NextendSocialLogin::$settings;
17
+
18
+ $proBadge = '';
19
+ if (!NextendSocialLoginAdmin::isPro()) {
20
+ $proBadge = '<span class="nsl-pro-badge">Pro</span>';
21
+ }
22
  ?>
23
  <div class="nsl-admin-content">
24
+ <h1><?php _e('Global Settings', 'nextend-facebook-connect'); ?></h1>
25
+ <div class="nsl-admin-sub-nav-bar">
26
+ <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('general'); ?>"
27
+ class="nsl-admin-nav-tab<?php if ($subview === 'general'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('General', 'nextend-facebook-connect'); ?></a>
28
+ <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('login-form'); ?>"
29
+ class="nsl-admin-nav-tab<?php if ($subview === 'login-form'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Login Form', 'nextend-facebook-connect'); ?></a>
30
+ <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('woocommerce'); ?>"
31
+ class="nsl-admin-nav-tab<?php if ($subview === 'woocommerce'): ?> nsl-admin-nav-tab-active<?php endif; ?>">WooCommerce<?php echo $proBadge; ?></a>
32
+ <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('comment'); ?>"
33
+ class="nsl-admin-nav-tab<?php if ($subview === 'comment'): ?> nsl-admin-nav-tab-active<?php endif; ?>"><?php _e('Comment', 'nextend-facebook-connect'); ?><?php echo $proBadge; ?></a>
34
+ <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('buddypress'); ?>"
35
+ class="nsl-admin-nav-tab<?php if ($subview === 'buddypress'): ?> nsl-admin-nav-tab-active<?php endif; ?>">BuddyPress<?php echo $proBadge; ?></a>
36
+ </div>
 
 
 
 
 
 
 
 
 
 
 
37
  <form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
38
 
39
+ <?php wp_nonce_field('nextend-social-login'); ?>
40
  <input type="hidden" name="action" value="nextend-social-login"/>
41
+ <input type="hidden" name="view" value="<?php echo esc_attr($view); ?>"/>
42
+ <input type="hidden" name="subview" value="<?php echo esc_attr($subview); ?>"/>
43
  <input type="hidden" name="settings_saved" value="1"/>
44
+ <?php
45
+ include(dirname(__FILE__) . '/settings/' . $subview . '.php');
46
+ ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  </form>
48
  </div>
admin/templates/providers.php CHANGED
@@ -33,7 +33,7 @@ wp_enqueue_script('jquery-ui-sortable');
33
  _e('Not Configured', 'nextend-facebook-connect');
34
  break;
35
  case 'not-tested':
36
- _e('Not Tested', 'nextend-facebook-connect');
37
  break;
38
  case 'disabled':
39
  _e('Disabled', 'nextend-facebook-connect');
@@ -69,7 +69,7 @@ wp_enqueue_script('jquery-ui-sortable');
69
  ?>
70
  <a href="<?php echo $provider->getAdminUrl('settings'); ?>"
71
  class="button button-secondary">
72
- <?php _e('Test to Enable', 'nextend-facebook-connect'); ?>
73
  </a>
74
  <?php
75
  break;
33
  _e('Not Configured', 'nextend-facebook-connect');
34
  break;
35
  case 'not-tested':
36
+ _e('Not Verified', 'nextend-facebook-connect');
37
  break;
38
  case 'disabled':
39
  _e('Disabled', 'nextend-facebook-connect');
69
  ?>
70
  <a href="<?php echo $provider->getAdminUrl('settings'); ?>"
71
  class="button button-secondary">
72
+ <?php _e('Verify Settings', 'nextend-facebook-connect'); ?>
73
  </a>
74
  <?php
75
  break;
admin/templates/settings/buddypress.php ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+
4
+ $isPRO = NextendSocialLoginAdmin::isPro();
5
+
6
+ $attr = '';
7
+ if (!$isPRO) {
8
+ $attr = ' disabled ';
9
+ }
10
+
11
+ $settings = NextendSocialLogin::$settings;
12
+
13
+ NextendSocialLoginAdmin::showProBox();
14
+ ?>
15
+ <table class="form-table">
16
+ <tbody>
17
+ <tr>
18
+ <th scope="row"><?php _e('BuddyPress register form', 'nextend-facebook-connect'); ?></th>
19
+ <td>
20
+ <fieldset>
21
+ <label><input type="radio" name="buddypress_register_button"
22
+ value="" <?php if ($settings->get('buddypress_register_button') == '') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
23
+ <span><?php _e('No Connect button', 'nextend-facebook-connect'); ?></span></label><br>
24
+ <label><input type="radio" name="buddypress_register_button"
25
+ value="bp_before_register_page" <?php if ($settings->get('buddypress_register_button') == 'bp_before_register_page') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
26
+ <span><?php _e('Connect button before register', 'nextend-facebook-connect'); ?></span>
27
+ <code><?php _e('Action:'); ?>
28
+ bp_before_register_page</code></label><br>
29
+ <label><input type="radio" name="buddypress_register_button"
30
+ value="bp_before_account_details_fields" <?php if ($settings->get('buddypress_register_button') == 'bp_before_account_details_fields') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
31
+ <span><?php _e('Connect button before account details', 'nextend-facebook-connect'); ?></span>
32
+ <code><?php _e('Action:'); ?>
33
+ bp_before_account_details_fields</code></label><br>
34
+ <label><input type="radio" name="buddypress_register_button"
35
+ value="bp_after_register_page" <?php if ($settings->get('buddypress_register_button') == 'bp_after_register_page') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
36
+ <span><?php _e('Connect button after register', 'nextend-facebook-connect'); ?></span>
37
+ <code><?php _e('Action:'); ?>
38
+ bp_after_register_page</code></label><br>
39
+ </fieldset>
40
+ </td>
41
+ </tr>
42
+ <tr>
43
+ <th scope="row"><?php _e('BuddyPress register button style', 'nextend-facebook-connect'); ?></th>
44
+ <td>
45
+ <fieldset>
46
+ <label>
47
+ <input type="radio" name="buddypress_register_button_style"
48
+ value="default" <?php if ($settings->get('buddypress_register_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
49
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
50
+ <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
51
+ </label>
52
+ <label>
53
+ <input type="radio" name="buddypress_register_button_style"
54
+ value="icon" <?php if ($settings->get('buddypress_register_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
55
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
56
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
57
+ </label><br>
58
+ </fieldset>
59
+ </td>
60
+ </tr>
61
+ </tbody>
62
+ </table>
63
+ <?php if ($isPRO): ?>
64
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
65
+ value="<?php _e('Save Changes'); ?>"></p>
66
+ <?php endif; ?>
admin/templates/settings/comment.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+
4
+ $isPRO = NextendSocialLoginAdmin::isPro();
5
+
6
+ $attr = '';
7
+ if (!$isPRO) {
8
+ $attr = ' disabled ';
9
+ }
10
+
11
+ $settings = NextendSocialLogin::$settings;
12
+
13
+ NextendSocialLoginAdmin::showProBox();
14
+ ?>
15
+ <table class="form-table">
16
+ <tbody>
17
+ <tr>
18
+ <th scope="row"><?php _e('Comment login button', 'nextend-facebook-connect'); ?></th>
19
+ <td>
20
+ <fieldset>
21
+ <legend class="screen-reader-text">
22
+ <span><?php _e('Comment login button', 'nextend-facebook-connect'); ?></span></legend>
23
+ <label><input type="radio" name="comment_login_button"
24
+ value="show" <?php if ($settings->get('comment_login_button') == 'show') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
25
+ <span><?php _e('Show', 'nextend-facebook-connect'); ?></span></label><br>
26
+ <label><input type="radio" name="comment_login_button"
27
+ value="hide" <?php if ($settings->get('comment_login_button') == 'hide') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
28
+ <span><?php _e('Hide', 'nextend-facebook-connect'); ?></span></label><br>
29
+ </fieldset>
30
+ <p class="description"><?php printf(__('You need to turn on the \' %1$s > %2$s > %3$s \' for this feature to work', 'nextend-facebook-connect'), __('Settings'), __('Discussion'), __('Users must be registered and logged in to comment')); ?></p>
31
+ </td>
32
+ </tr>
33
+ <tr>
34
+ <th scope="row"><?php _e('Comment button style', 'nextend-facebook-connect'); ?></th>
35
+ <td>
36
+ <fieldset>
37
+ <label>
38
+ <input type="radio" name="comment_button_style"
39
+ value="default" <?php if ($settings->get('comment_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
40
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
41
+ <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
42
+ </label>
43
+ <label>
44
+ <input type="radio" name="comment_button_style"
45
+ value="icon" <?php if ($settings->get('comment_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
46
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
47
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
48
+ </label><br>
49
+ </fieldset>
50
+ </td>
51
+ </tr>
52
+ </tbody>
53
+ </table>
54
+ <?php if ($isPRO): ?>
55
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
56
+ value="<?php _e('Save Changes'); ?>"></p>
57
+ <?php endif; ?>
admin/templates/settings/general-pro.php ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+
4
+ $isPRO = NextendSocialLoginAdmin::isPro();
5
+ if (!$isPRO):
6
+ ?>
7
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="<?php _e('Save Changes'); ?>"></p>
8
+
9
+ <hr/>
10
+ <h1><?php _e('PRO settings', 'nextend-facebook-connect'); ?></h1>
11
+ <?php
12
+ endif;
13
+
14
+ $attr = '';
15
+ if (!$isPRO) {
16
+ $attr = ' disabled ';
17
+ }
18
+
19
+ $settings = NextendSocialLogin::$settings;
20
+
21
+ NextendSocialLoginAdmin::showProBox();
22
+ ?>
23
+
24
+ <table class="form-table">
25
+ <tbody>
26
+ <tr>
27
+ <th scope="row"><?php _e('Target window', 'nextend-facebook-connect'); ?></th>
28
+ <td>
29
+ <fieldset>
30
+ <label><input type="radio" name="target"
31
+ value="prefer-popup" <?php if ($settings->get('target') == 'prefer-popup') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
32
+ <span><?php _e('Prefer popup', 'nextend-facebook-connect'); ?></span></label><br>
33
+ <label><input type="radio" name="target"
34
+ value="prefer-new-tab" <?php if ($settings->get('target') == 'prefer-new-tab') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
35
+ <span><?php _e('Prefer new tab', 'nextend-facebook-connect'); ?></span></label><br>
36
+ <label><input type="radio" name="target"
37
+ value="prefer-same-window" <?php if ($settings->get('target') == 'prefer-same-window') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
38
+ <span><?php _e('Prefer same window', 'nextend-facebook-connect'); ?></span></label><br>
39
+ </fieldset>
40
+ </td>
41
+ </tr>
42
+ <tr>
43
+ <th scope="row"><?php _e('Membership', 'nextend-facebook-connect'); ?></th>
44
+ <td>
45
+ <fieldset>
46
+ <label>
47
+ <input type='hidden' name='allow_register' value='0'>
48
+ <input type="checkbox" name="allow_register" value="1" <?php if ($settings->get('allow_register') != '0') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
49
+ <span><?php _e('Allow registration with Social login', 'nextend-facebook-connect'); ?></span></label><br>
50
+ </fieldset>
51
+ </td>
52
+ </tr>
53
+ <tr>
54
+ <th scope="row"><?php _e('Registration notification sent to', 'nextend-facebook-connect'); ?></th>
55
+ <td>
56
+ <fieldset>
57
+ <legend class="screen-reader-text">
58
+ <span><?php _e('Registration notification sent to', 'nextend-facebook-connect'); ?></span></legend>
59
+ <label><input type="radio" name="registration_notification_notify"
60
+ value="0" <?php if ($settings->get('registration_notification_notify') == '0') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
61
+ <span><?php _e('WordPress default', 'nextend-facebook-connect'); ?></span></label><br>
62
+ <label><input type="radio" name="registration_notification_notify"
63
+ value="nobody" <?php if ($settings->get('registration_notification_notify') == 'nobody') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
64
+ <span><?php _e('Nobody', 'nextend-facebook-connect'); ?></span></label><br>
65
+ <label><input type="radio" name="registration_notification_notify"
66
+ value="user" <?php if ($settings->get('registration_notification_notify') == 'user') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
67
+ <span><?php _e('User', 'nextend-facebook-connect'); ?></span></label><br>
68
+ <label><input type="radio" name="registration_notification_notify"
69
+ value="admin" <?php if ($settings->get('registration_notification_notify') == 'admin') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
70
+ <span><?php _e('Admin', 'nextend-facebook-connect'); ?></span></label><br>
71
+ <label><input type="radio" name="registration_notification_notify"
72
+ value="both" <?php if ($settings->get('registration_notification_notify') == 'both') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
73
+ <span><?php _e('User and Admin', 'nextend-facebook-connect'); ?></span></label><br>
74
+ </fieldset>
75
+ </td>
76
+ </tr>
77
+ </tbody>
78
+ </table>
79
+ <?php if ($isPRO): ?>
80
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
81
+ value="<?php _e('Save Changes'); ?>"></p>
82
+ <?php endif; ?>
admin/templates/settings/general.php ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script type="text/javascript">
2
+ (function ($) {
3
+ $(document).ready(function () {
4
+ $('#custom_redirect_enabled').on('change', function () {
5
+ if ($(this).is(':checked')) {
6
+ $('#redirect').css('display', '');
7
+ }
8
+ else {
9
+ $('#redirect').css('display', 'none');
10
+ }
11
+ });
12
+
13
+ $('#custom_redirect_reg_enabled').on('change', function () {
14
+ if ($(this).is(':checked')) {
15
+ $('#redirect_reg').css('display', '');
16
+ }
17
+ else {
18
+ $('#redirect_reg').css('display', 'none');
19
+ }
20
+ });
21
+ });
22
+ })(jQuery);
23
+ </script>
24
+
25
+
26
+
27
+ <table class="form-table">
28
+ <tbody>
29
+ <tr>
30
+ <th scope="row"><?php _e('Debug mode', 'nextend-facebook-connect'); ?></th>
31
+ <td>
32
+ <fieldset>
33
+ <legend class="screen-reader-text">
34
+ <span><?php _e('Debug mode', 'nextend-facebook-connect'); ?></span></legend>
35
+ <label><input type="radio" name="debug"
36
+ value="0" <?php if ($settings->get('debug') == '0') : ?> checked="checked" <?php endif; ?>>
37
+ <span><?php _e('Disabled', 'nextend-facebook-connect'); ?></span></label><br>
38
+ <label><input type="radio" name="debug"
39
+ value="1" <?php if ($settings->get('debug') == '1') : ?> checked="checked" <?php endif; ?>>
40
+ <span><?php _e('Enabled', 'nextend-facebook-connect'); ?></span></label><br>
41
+ </fieldset>
42
+ </td>
43
+ </tr>
44
+ <tr>
45
+ <th scope="row"><label
46
+ for="redirect"><?php _e('Fixed redirect url for login', 'nextend-facebook-connect'); ?></label>
47
+ </th>
48
+ <td>
49
+ <?php
50
+ $useCustom = false;
51
+ $redirect = $settings->get('redirect');
52
+ if (!empty($redirect)) {
53
+ $useCustom = true;
54
+ }
55
+ ?>
56
+ <fieldset><label for="custom_redirect_enabled">
57
+ <input name="custom_redirect_enabled" type="checkbox" id="custom_redirect_enabled"
58
+ value="1" <?php if ($useCustom): ?> checked<?php endif; ?>>
59
+ <?php _e('Use custom', 'nextend-facebook-connect'); ?></label>
60
+ </fieldset>
61
+ <input name="redirect" type="text" id="redirect" value="<?php echo esc_attr($redirect); ?>"
62
+ class="regular-text"<?php if (!$useCustom): ?> style="display:none;"<?php endif; ?>>
63
+ </td>
64
+ </tr>
65
+ <tr>
66
+ <th scope="row"><label
67
+ for="redirect_reg"><?php _e('Fixed redirect url for register', 'nextend-facebook-connect'); ?></label>
68
+ </th>
69
+ <td>
70
+ <?php
71
+ $useCustom = false;
72
+ $redirectReg = $settings->get('redirect_reg');
73
+ if (!empty($redirectReg)) {
74
+ $useCustom = true;
75
+ }
76
+ ?>
77
+ <fieldset><label for="custom_redirect_reg_enabled">
78
+ <input name="custom_redirect_reg_enabled" type="checkbox" id="custom_redirect_reg_enabled"
79
+ value="1" <?php if ($useCustom): ?> checked<?php endif; ?>>
80
+ <?php _e('Use custom', 'nextend-facebook-connect'); ?></label>
81
+ </fieldset>
82
+ <input name="redirect_reg" type="text" id="redirect_reg"
83
+ value="<?php echo esc_attr($redirectReg); ?>"
84
+ class="regular-text"<?php if (!$useCustom): ?> style="display:none;"<?php endif; ?>>
85
+ </td>
86
+ </tr>
87
+ </tbody>
88
+ </table>
89
+
90
+ <?php
91
+ include dirname(__FILE__) . '/general-pro.php';
92
+ ?>
admin/templates/settings/login-form-pro.php ADDED
@@ -0,0 +1,137 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+
4
+ $isPRO = NextendSocialLoginAdmin::isPro();
5
+ if (!$isPRO):
6
+ ?>
7
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary" value="<?php _e('Save Changes'); ?>"></p>
8
+
9
+ <hr/>
10
+ <h1><?php _e('PRO settings', 'nextend-facebook-connect'); ?></h1>
11
+ <?php
12
+ endif;
13
+
14
+ $attr = '';
15
+ if (!$isPRO) {
16
+ $attr = ' disabled ';
17
+ }
18
+
19
+ $settings = NextendSocialLogin::$settings;
20
+
21
+ NextendSocialLoginAdmin::showProBox();
22
+ ?>
23
+
24
+ <table class="form-table">
25
+ <tbody>
26
+ <tr>
27
+ <th scope="row"><?php _e('Login form button style', 'nextend-facebook-connect'); ?></th>
28
+ <td>
29
+ <fieldset>
30
+ <label>
31
+ <input type="radio" name="login_form_button_style"
32
+ value="default" <?php if ($settings->get('login_form_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
33
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
34
+ <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
35
+ </label>
36
+ <label>
37
+ <input type="radio" name="login_form_button_style"
38
+ value="icon" <?php if ($settings->get('login_form_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
39
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
40
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
41
+ </label><br>
42
+ </fieldset>
43
+ </td>
44
+ </tr>
45
+ <tr>
46
+ <th scope="row"><?php _e('Login layout', 'nextend-facebook-connect'); ?></th>
47
+ <td>
48
+ <fieldset>
49
+ <label>
50
+ <input type="radio" name="login_form_layout"
51
+ value="below" <?php if ($settings->get('login_form_layout') == 'below') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
52
+ <span><?php _e('Below', 'nextend-facebook-connect'); ?></span><br/>
53
+ <img src="<?php echo plugins_url('images/layouts/below.png', NSL_ADMIN_PATH) ?>"/>
54
+ </label>
55
+ <label>
56
+ <input type="radio" name="login_form_layout"
57
+ value="below-separator" <?php if ($settings->get('login_form_layout') == 'below-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
58
+ <span><?php _e('Below with separator', 'nextend-facebook-connect'); ?></span><br/>
59
+ <img src="<?php echo plugins_url('images/layouts/below-separator.png', NSL_ADMIN_PATH) ?>"/>
60
+ </label>
61
+ <label>
62
+ <input type="radio" name="login_form_layout"
63
+ value="below-floating" <?php if ($settings->get('login_form_layout') == 'below-floating') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
64
+ <span><?php _e('Below and floating', 'nextend-facebook-connect'); ?></span><br/>
65
+ <img src="<?php echo plugins_url('images/layouts/below-floating.png', NSL_ADMIN_PATH) ?>"/>
66
+ </label>
67
+ <label>
68
+ <input type="radio" name="login_form_layout"
69
+ value="above" <?php if ($settings->get('login_form_layout') == 'above') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
70
+ <span><?php _e('Above', 'nextend-facebook-connect'); ?></span><br/>
71
+ <img src="<?php echo plugins_url('images/layouts/above.png', NSL_ADMIN_PATH) ?>"/>
72
+ </label>
73
+ <label>
74
+ <input type="radio" name="login_form_layout"
75
+ value="above-separator" <?php if ($settings->get('login_form_layout') == 'above-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
76
+ <span><?php _e('Above with separator', 'nextend-facebook-connect'); ?></span><br/>
77
+ <img src="<?php echo plugins_url('images/layouts/above-separator.png', NSL_ADMIN_PATH) ?>"/>
78
+ </label><br>
79
+ </fieldset>
80
+ </td>
81
+ </tr>
82
+ <tr>
83
+ <th scope="row"><?php _e('Embedded Login form button style', 'nextend-facebook-connect'); ?></th>
84
+ <td>
85
+ <fieldset>
86
+ <label>
87
+ <input type="radio" name="embedded_login_form_button_style"
88
+ value="default" <?php if ($settings->get('embedded_login_form_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
89
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
90
+ <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
91
+ </label>
92
+ <label>
93
+ <input type="radio" name="embedded_login_form_button_style"
94
+ value="icon" <?php if ($settings->get('embedded_login_form_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
95
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
96
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
97
+ </label><br>
98
+ </fieldset>
99
+ </td>
100
+ </tr>
101
+ <tr>
102
+ <th scope="row"><?php _e('Embedded Login layout', 'nextend-facebook-connect'); ?></th>
103
+ <td>
104
+ <fieldset>
105
+ <label>
106
+ <input type="radio" name="embedded_login_form_layout"
107
+ value="below" <?php if ($settings->get('embedded_login_form_layout') == 'below') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
108
+ <span><?php _e('Below', 'nextend-facebook-connect'); ?></span><br/>
109
+ <img src="<?php echo plugins_url('images/layouts/below.png', NSL_ADMIN_PATH) ?>"/>
110
+ </label>
111
+ <label>
112
+ <input type="radio" name="embedded_login_form_layout"
113
+ value="below-separator" <?php if ($settings->get('embedded_login_form_layout') == 'below-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
114
+ <span><?php _e('Below with separator', 'nextend-facebook-connect'); ?></span><br/>
115
+ <img src="<?php echo plugins_url('images/layouts/below-separator.png', NSL_ADMIN_PATH) ?>"/>
116
+ </label>
117
+ <label>
118
+ <input type="radio" name="embedded_login_form_layout"
119
+ value="above" <?php if ($settings->get('embedded_login_form_layout') == 'above') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
120
+ <span><?php _e('Above', 'nextend-facebook-connect'); ?></span><br/>
121
+ <img src="<?php echo plugins_url('images/layouts/above.png', NSL_ADMIN_PATH) ?>"/>
122
+ </label>
123
+ <label>
124
+ <input type="radio" name="embedded_login_form_layout"
125
+ value="above-separator" <?php if ($settings->get('embedded_login_form_layout') == 'above-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
126
+ <span><?php _e('Above with separator', 'nextend-facebook-connect'); ?></span><br/>
127
+ <img src="<?php echo plugins_url('images/layouts/above-separator.png', NSL_ADMIN_PATH) ?>"/>
128
+ </label><br>
129
+ </fieldset>
130
+ </td>
131
+ </tr>
132
+ </tbody>
133
+ </table>
134
+ <?php if ($isPRO): ?>
135
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
136
+ value="<?php _e('Save Changes'); ?>"></p>
137
+ <?php endif; ?>
admin/templates/settings/login-form.php ADDED
@@ -0,0 +1,56 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+
4
+ $settings = NextendSocialLogin::$settings;
5
+ ?>
6
+ <table class="form-table">
7
+ <tbody>
8
+ <tr>
9
+ <th scope="row"><?php _e('Login form', 'nextend-facebook-connect'); ?></th>
10
+ <td>
11
+ <fieldset>
12
+ <label><input type="radio" name="show_login_form"
13
+ value="show" <?php if ($settings->get('show_login_form') == 'show') : ?> checked="checked" <?php endif; ?>>
14
+ <span><?php _e('Show login buttons', 'nextend-facebook-connect'); ?></span></label><br>
15
+ <label><input type="radio" name="show_login_form"
16
+ value="hide" <?php if ($settings->get('show_login_form') == 'hide') : ?> checked="checked" <?php endif; ?>>
17
+ <span><?php _e('Hide login buttons', 'nextend-facebook-connect'); ?></span></label><br>
18
+ </fieldset>
19
+ </td>
20
+ </tr>
21
+ <tr>
22
+ <th scope="row"><?php _e('Registration form', 'nextend-facebook-connect'); ?></th>
23
+ <td>
24
+ <fieldset>
25
+ <label><input type="radio" name="show_registration_form"
26
+ value="show" <?php if ($settings->get('show_registration_form') == 'show') : ?> checked="checked" <?php endif; ?>>
27
+ <span><?php _e('Show login buttons', 'nextend-facebook-connect'); ?></span></label><br>
28
+ <label><input type="radio" name="show_registration_form"
29
+ value="hide" <?php if ($settings->get('show_registration_form') == 'hide') : ?> checked="checked" <?php endif; ?>>
30
+ <span><?php _e('Hide login buttons', 'nextend-facebook-connect'); ?></span></label><br>
31
+ </fieldset>
32
+ </td>
33
+ </tr>
34
+ <tr>
35
+ <th scope="row">
36
+ <?php _e('Embedded login form', 'nextend-facebook-connect'); ?>
37
+ <br>
38
+ <code>wp_login_form</code>
39
+ </th>
40
+ <td>
41
+ <fieldset>
42
+ <label><input type="radio" name="show_embedded_login_form"
43
+ value="show" <?php if ($settings->get('show_embedded_login_form') == 'show') : ?> checked="checked" <?php endif; ?>>
44
+ <span><?php _e('Show login buttons', 'nextend-facebook-connect'); ?></span></label><br>
45
+ <label><input type="radio" name="show_embedded_login_form"
46
+ value="hide" <?php if ($settings->get('show_embedded_login_form') == 'hide') : ?> checked="checked" <?php endif; ?>>
47
+ <span><?php _e('Hide login buttons', 'nextend-facebook-connect'); ?></span></label><br>
48
+ </fieldset>
49
+ </td>
50
+ </tr>
51
+ </tbody>
52
+ </table>
53
+
54
+ <?php
55
+ include dirname(__FILE__) . '/login-form-pro.php';
56
+ ?>
admin/templates/settings/woocommerce.php ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+
4
+ $isPRO = NextendSocialLoginAdmin::isPro();
5
+
6
+ $attr = '';
7
+ if (!$isPRO) {
8
+ $attr = ' disabled ';
9
+ }
10
+
11
+ $settings = NextendSocialLogin::$settings;
12
+
13
+ NextendSocialLoginAdmin::showProBox();
14
+ ?>
15
+ <table class="form-table">
16
+ <tbody>
17
+ <tr>
18
+ <th scope="row"><?php _e('WooCommerce login form', 'nextend-facebook-connect'); ?></th>
19
+ <td>
20
+ <fieldset>
21
+ <label><input type="radio" name="woocommerce_login"
22
+ value="" <?php if ($settings->get('woocommerce_login') == '') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
23
+ <span><?php _e('No Connect button in login form', 'nextend-facebook-connect'); ?></span></label><br>
24
+ <label><input type="radio" name="woocommerce_login"
25
+ value="before" <?php if ($settings->get('woocommerce_login') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
26
+ <span><?php _e('Connect button before login form', 'nextend-facebook-connect'); ?></span>
27
+ <code><?php _e('Action:'); ?>
28
+ woocommerce_login_form_start</code></label><br>
29
+ <label><input type="radio" name="woocommerce_login"
30
+ value="after" <?php if ($settings->get('woocommerce_login') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
31
+ <span><?php _e('Connect button after login form', 'nextend-facebook-connect'); ?></span>
32
+ <code><?php _e('Action:'); ?>
33
+ woocommerce_login_form_end</code></label><br>
34
+ </fieldset>
35
+ </td>
36
+ </tr>
37
+
38
+ <tr>
39
+ <th scope="row"><?php _e('WooCommerce register form', 'nextend-facebook-connect'); ?></th>
40
+ <td>
41
+ <fieldset>
42
+ <label><input type="radio" name="woocommerce_register"
43
+ value="" <?php if ($settings->get('woocommerce_register') == '') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
44
+ <span><?php _e('No Connect button in register form', 'nextend-facebook-connect'); ?></span></label><br>
45
+ <label><input type="radio" name="woocommerce_register"
46
+ value="before" <?php if ($settings->get('woocommerce_register') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
47
+ <span><?php _e('Connect button before register form', 'nextend-facebook-connect'); ?></span>
48
+ <code><?php _e('Action:'); ?>
49
+ woocommerce_register_form_start</code></label><br>
50
+ <label><input type="radio" name="woocommerce_register"
51
+ value="after" <?php if ($settings->get('woocommerce_register') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
52
+ <span><?php _e('Connect button after register form', 'nextend-facebook-connect'); ?></span>
53
+ <code><?php _e('Action:'); ?>
54
+ woocommerce_register_form_end</code></label><br>
55
+ </fieldset>
56
+ </td>
57
+ </tr>
58
+
59
+ <tr>
60
+ <th scope="row"><?php _e('WooCommerce billing form', 'nextend-facebook-connect'); ?></th>
61
+ <td>
62
+ <fieldset>
63
+ <legend class="screen-reader-text">
64
+ <span><?php _e('WooCommerce billing form', 'nextend-facebook-connect'); ?></span></legend>
65
+ <label><input type="radio" name="woocommerce_billing"
66
+ value="" <?php if ($settings->get('woocommerce_billing') == '') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
67
+ <span><?php _e('No Connect button in billing form', 'nextend-facebook-connect'); ?></span></label><br>
68
+ <label><input type="radio" name="woocommerce_billing"
69
+ value="before" <?php if ($settings->get('woocommerce_billing') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
70
+ <span><?php _e('Connect button before billing form', 'nextend-facebook-connect'); ?></span>
71
+ <code><?php _e('Action:'); ?>
72
+ woocommerce_before_checkout_billing_form</code></label><br>
73
+ <label><input type="radio" name="woocommerce_billing"
74
+ value="after" <?php if ($settings->get('woocommerce_billing') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
75
+ <span><?php _e('Connect button after billing form', 'nextend-facebook-connect'); ?></span></label>
76
+ <code><?php _e('Action:'); ?>
77
+ woocommerce_after_checkout_billing_form</code><br>
78
+ </fieldset>
79
+ </td>
80
+ </tr>
81
+ <tr>
82
+ <th scope="row"><?php _e('WooCommerce account details', 'nextend-facebook-connect'); ?></th>
83
+ <td>
84
+ <fieldset>
85
+ <legend class="screen-reader-text">
86
+ <span><?php _e('WooCommerce account details', 'nextend-facebook-connect'); ?></span></legend>
87
+ <label><input type="radio" name="woocommerce_account_details"
88
+ value="before" <?php if ($settings->get('woocommerce_account_details') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
89
+ <span><?php _e('Link buttons before account details', 'nextend-facebook-connect'); ?></span>
90
+ <code><?php _e('Action:'); ?>
91
+ woocommerce_edit_account_form_start</code></label><br>
92
+ <label><input type="radio" name="woocommerce_account_details"
93
+ value="after" <?php if ($settings->get('woocommerce_account_details') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
94
+ <span><?php _e('Link buttons after account details', 'nextend-facebook-connect'); ?></span>
95
+ <code><?php _e('Action:'); ?>
96
+ woocommerce_edit_account_form_end</code></label><br>
97
+ </fieldset>
98
+ </td>
99
+ </tr>
100
+ <tr>
101
+ <th scope="row"><?php _e('WooCommerce button style', 'nextend-facebook-connect'); ?></th>
102
+ <td>
103
+ <fieldset>
104
+ <legend class="screen-reader-text">
105
+ <span><?php _e('WooCommerce button style', 'nextend-facebook-connect'); ?></span></legend>
106
+ <label>
107
+ <input type="radio" name="woocoommerce_form_button_style"
108
+ value="default" <?php if ($settings->get('woocoommerce_form_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
109
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
110
+ <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
111
+ </label>
112
+ <label>
113
+ <input type="radio" name="woocoommerce_form_button_style"
114
+ value="icon" <?php if ($settings->get('woocoommerce_form_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
115
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
116
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
117
+ </label><br>
118
+ </fieldset>
119
+ </td>
120
+ </tr>
121
+ </tbody>
122
+ </table>
123
+ <?php if ($isPRO): ?>
124
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
125
+ value="<?php _e('Save Changes'); ?>"></p>
126
+ <?php endif; ?>
includes/exceptions.php ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
1
+ <?php
2
+
3
+ class NSLContinuePageRenderException extends Exception {
4
+
5
+ }
includes/provider.php CHANGED
@@ -37,7 +37,8 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
37
  'link_label' => '',
38
  'unlink_label' => '',
39
  'user_prefix' => '',
40
- 'user_fallback' => ''
 
41
  ), array(
42
  'ask_email' => 'when-empty',
43
  'ask_user' => 'never',
@@ -193,6 +194,9 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
193
  case 'settings_saved':
194
  $newData[$key] = intval($value) ? 1 : 0;
195
  break;
 
 
 
196
  }
197
  }
198
 
@@ -223,6 +227,21 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
223
  return !!$this->settings->get('tested');
224
  }
225
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
 
227
  public function getState() {
228
  foreach ($this->requiredFields AS $name => $label) {
@@ -245,6 +264,9 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
245
  public function connect() {
246
  try {
247
  $this->doAuthenticate();
 
 
 
248
  } catch (Exception $e) {
249
  $this->onError($e);
250
  }
@@ -256,10 +278,19 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
256
  protected abstract function getClient();
257
 
258
  /**
259
- * @throws Exception
260
  */
261
  protected function doAuthenticate() {
262
 
 
 
 
 
 
 
 
 
 
263
  if (!$this->isTest()) {
264
  add_action($this->id . '_login_action_before', array(
265
  $this,
@@ -307,6 +338,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
307
  exit;
308
 
309
  } else {
 
310
  if (!$accessTokenData) {
311
 
312
  $accessTokenData = $client->authenticate();
@@ -368,24 +400,46 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
368
  if ($ID === null) {
369
  // Let's connect the account to the current user!
370
 
371
- $this->linkUserToProviderIdentifier($current_user->ID, $this->getAuthUserData('id'));
372
 
373
- $this->saveUserData($current_user->ID, 'access_token', $accessToken);
374
 
375
- NextendSocialLoginAdminNotices::addSuccess(sprintf(__('Your %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.', 'nextend-facebook-connect'), $this->getLabel(), $this->getLabel()));
 
 
 
 
376
 
377
  } else if ($current_user->ID != $ID) {
378
 
379
- NextendSocialLoginAdminNotices::addError(sprintf(__('This %s account is already linked with other account. Linking process failed!', 'nextend-facebook-connect'), $this->getLabel()));
380
  }
381
  }
382
  $this->redirectToLastLocation();
383
  }
384
 
 
 
 
 
 
 
385
  protected function linkUserToProviderIdentifier($user_id, $providerIdentifier) {
386
  /** @var $wpdb WPDB */
387
  global $wpdb;
388
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  $wpdb->insert($wpdb->prefix . 'social_users', array(
390
  'ID' => $user_id,
391
  'type' => $this->dbID,
@@ -397,6 +451,8 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
397
  ));
398
 
399
  do_action('nsl_' . $this->getId() . '_link_user', $user_id, $this->getId());
 
 
400
  }
401
 
402
  protected function getUserIDByProviderIdentifier($identifier) {
@@ -409,6 +465,16 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
409
  )));
410
  }
411
 
 
 
 
 
 
 
 
 
 
 
412
  protected function removeConnectionByUserID($user_id) {
413
  /** @var $wpdb WPDB */
414
  global $wpdb;
@@ -446,7 +512,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
446
  return $ID;
447
  }
448
 
449
- public function getConnectButton($buttonStyle = 'default', $redirectTo = null) {
450
  $arg = array();
451
  if ($redirectTo != null) {
452
  $arg['redirect'] = urlencode($redirectTo);
@@ -454,6 +520,12 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
454
  $arg['redirect'] = urlencode($_GET['redirect_to']);
455
  }
456
 
 
 
 
 
 
 
457
  switch ($buttonStyle) {
458
  case 'icon':
459
 
@@ -501,6 +573,12 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
501
  }
502
 
503
  public function liveConnectRedirect() {
 
 
 
 
 
 
504
  if (!is_user_logged_in()) {
505
  $redirectToLogin = NextendSocialLogin::$settings->get('redirect');
506
  if (!empty($redirectToLogin)) {
@@ -617,8 +695,12 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
617
  $user_id = email_exists($email);
618
  }
619
  if ($user_id === false) { // Real register
620
-
621
- $this->register($providerUserID, $accessToken, $email, $this->getAuthUserData('name'), $this->getAuthUserData('first_name'), $this->getAuthUserData('last_name'));
 
 
 
 
622
 
623
  } else if ($this->autoLink($user_id, $providerUserID)) {
624
  $this->login($user_id, $accessToken);
@@ -642,11 +724,12 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
642
  $username = strtolower($name);
643
  }
644
 
 
 
645
  $sanitized_user_login = sanitize_user($this->settings->get('user_prefix') . $username, true);
646
  if (empty($username) || !validate_username($sanitized_user_login)) {
647
 
648
- //@TODO If username is not valid, we should as the user to enter custom username with Pro Addon
649
-
650
  $sanitized_user_login = sanitize_user($this->settings->get('user_fallback') . $providerID, true);
651
  }
652
  $default_user_name = $sanitized_user_login;
@@ -732,9 +815,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
732
  $isAutoLinkAllowed = true;
733
  $isAutoLinkAllowed = apply_filters('nsl_' . $this->getId() . '_auto_link_allowed', $isAutoLinkAllowed, $this, $user_id);
734
  if ($isAutoLinkAllowed) {
735
- $this->linkUserToProviderIdentifier($user_id, $providerUserID);
736
-
737
- return true;
738
  }
739
 
740
  return false;
@@ -759,7 +840,8 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
759
  $this->deleteLoginPersistentData();
760
 
761
  $this->settings->update(array(
762
- 'tested' => 1
 
763
  ));
764
 
765
  NextendSocialLoginAdminNotices::addSuccess(__('The test was successful', 'nextend-facebook-connect'));
@@ -881,14 +963,14 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
881
  ?>
882
  <?php if ($state == 'not-tested') : ?>
883
  <div class="nsl-box nsl-box-blue">
884
- <h2 class="title"><?php _e('Your configuration needs testing', 'nextend-facebook-connect'); ?></h2>
885
  <p><?php _e('Before you can start letting your users register with your app it needs to be tested. This test makes sure that no users will have troubles with the login and registration process. <br> If you see error message in the popup check the copied ID and secret or the app itself. Otherwise your settings are fine.', 'nextend-facebook-connect'); ?></p>
886
 
887
  <p id="nsl-test-configuration">
888
  <a id="nsl-test-button" href="#"
889
  onclick="NSLPopupCenter('<?php echo add_query_arg('test', '1', $this->getLoginUrl()); ?>', 'test-window', <?php echo $this->getPopupWidth(); ?>, <?php echo $this->getPopupHeight(); ?>); return false;"
890
- class="button button-primary"><?php _e('Test the Configuration', 'nextend-facebook-connect'); ?></a>
891
- <span id="nsl-test-please-save"><?php _e('Please save your changes before testing.', 'nextend-facebook-connect'); ?></span>
892
  </p>
893
  </div>
894
  <?php endif; ?>
@@ -924,7 +1006,7 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
924
  <p id="nsl-test-configuration">
925
  <a id="nsl-test-button" href="#"
926
  onclick="NSLPopupCenter('<?php echo add_query_arg('test', '1', $this->getLoginUrl()); ?>', 'test-window', <?php echo $this->getPopupWidth(); ?>, <?php echo $this->getPopupHeight(); ?>); return false"
927
- class="button button-secondary"><?php _e('Test Again', 'nextend-facebook-connect'); ?></a>
928
  <span id="nsl-test-please-save"><?php _e('Please save your changes before testing.', 'nextend-facebook-connect'); ?></span>
929
  <?php
930
  switch ($state) {
@@ -994,4 +1076,10 @@ abstract class NextendSocialProvider extends NextendSocialProviderDummy {
994
  <?php
995
  exit;
996
  }
 
 
 
 
 
 
997
  }
37
  'link_label' => '',
38
  'unlink_label' => '',
39
  'user_prefix' => '',
40
+ 'user_fallback' => '',
41
+ 'oauth_redirect_url' => '',
42
  ), array(
43
  'ask_email' => 'when-empty',
44
  'ask_user' => 'never',
194
  case 'settings_saved':
195
  $newData[$key] = intval($value) ? 1 : 0;
196
  break;
197
+ case 'oauth_redirect_url':
198
+ $newData[$key] = $value;
199
+ break;
200
  }
201
  }
202
 
227
  return !!$this->settings->get('tested');
228
  }
229
 
230
+ public function checkOauthRedirectUrl() {
231
+ $oauth_redirect_url = $this->settings->get('oauth_redirect_url');
232
+ if (empty($oauth_redirect_url) || $oauth_redirect_url == $this->getLoginUrl()) {
233
+ return true;
234
+ }
235
+
236
+ return false;
237
+ }
238
+
239
+ public function updateOauthRedirectUrl() {
240
+ $this->settings->update(array(
241
+ 'oauth_redirect_url' => $this->getLoginUrl()
242
+ ));
243
+ }
244
+
245
 
246
  public function getState() {
247
  foreach ($this->requiredFields AS $name => $label) {
264
  public function connect() {
265
  try {
266
  $this->doAuthenticate();
267
+ } catch (NSLContinuePageRenderException $e) {
268
+ // This is not an error. We allow the page to continue the normal display flow and later we inject our things.
269
+ // Used by Theme my login function where we override the shortcode and we display our email request.
270
  } catch (Exception $e) {
271
  $this->onError($e);
272
  }
278
  protected abstract function getClient();
279
 
280
  /**
281
+ * @throws NSLContinuePageRenderException
282
  */
283
  protected function doAuthenticate() {
284
 
285
+ if (!headers_sent()) {
286
+ //All In One WP Security sets a LOCATION header, so we need to remove it to do a successful test.
287
+ if (function_exists('header_remove')) {
288
+ header_remove("LOCATION");
289
+ } else {
290
+ header('LOCATION:', true); //Under PHP 5.3
291
+ }
292
+ }
293
+
294
  if (!$this->isTest()) {
295
  add_action($this->id . '_login_action_before', array(
296
  $this,
338
  exit;
339
 
340
  } else {
341
+
342
  if (!$accessTokenData) {
343
 
344
  $accessTokenData = $client->authenticate();
400
  if ($ID === null) {
401
  // Let's connect the account to the current user!
402
 
403
+ if ($this->linkUserToProviderIdentifier($current_user->ID, $this->getAuthUserData('id'))) {
404
 
405
+ $this->saveUserData($current_user->ID, 'access_token', $accessToken);
406
 
407
+ NextendSocialLoginAdminNotices::addSuccess(sprintf(__('Your %1$s account is successfully linked with your account. Now you can sign in with %2$s easily.', 'nextend-facebook-connect'), $this->getLabel(), $this->getLabel()));
408
+ } else {
409
+
410
+ NextendSocialLoginAdminNotices::addError(sprintf(__('You have already linked a(n) %s account. Please unlink the current and then you can link other %s account.', 'nextend-facebook-connect'), $this->getLabel(), $this->getLabel()));
411
+ }
412
 
413
  } else if ($current_user->ID != $ID) {
414
 
415
+ NextendSocialLoginAdminNotices::addError(sprintf(__('This %s account is already linked to other user.', 'nextend-facebook-connect'), $this->getLabel()));
416
  }
417
  }
418
  $this->redirectToLastLocation();
419
  }
420
 
421
+ /**
422
+ * @param $user_id
423
+ * @param $providerIdentifier
424
+ *
425
+ * @return bool
426
+ */
427
  protected function linkUserToProviderIdentifier($user_id, $providerIdentifier) {
428
  /** @var $wpdb WPDB */
429
  global $wpdb;
430
 
431
+ $connectedProviderID = $this->getProviderIdentifierByUserID($user_id);
432
+
433
+ if ($connectedProviderID !== null) {
434
+ if ($connectedProviderID == $providerIdentifier) {
435
+ // This provider already linked to this user
436
+ return true;
437
+ }
438
+
439
+ // User already have this provider attached to his account with different provider id.
440
+ return false;
441
+ }
442
+
443
  $wpdb->insert($wpdb->prefix . 'social_users', array(
444
  'ID' => $user_id,
445
  'type' => $this->dbID,
451
  ));
452
 
453
  do_action('nsl_' . $this->getId() . '_link_user', $user_id, $this->getId());
454
+
455
+ return true;
456
  }
457
 
458
  protected function getUserIDByProviderIdentifier($identifier) {
465
  )));
466
  }
467
 
468
+ protected function getProviderIdentifierByUserID($user_id) {
469
+ /** @var $wpdb WPDB */
470
+ global $wpdb;
471
+
472
+ return $wpdb->get_var($wpdb->prepare('SELECT identifier FROM `' . $wpdb->prefix . 'social_users` WHERE type = %s AND ID = %s', array(
473
+ $this->dbID,
474
+ $user_id
475
+ )));
476
+ }
477
+
478
  protected function removeConnectionByUserID($user_id) {
479
  /** @var $wpdb WPDB */
480
  global $wpdb;
512
  return $ID;
513
  }
514
 
515
+ public function getConnectButton($buttonStyle = 'default', $redirectTo = null, $trackerData = false) {
516
  $arg = array();
517
  if ($redirectTo != null) {
518
  $arg['redirect'] = urlencode($redirectTo);
520
  $arg['redirect'] = urlencode($_GET['redirect_to']);
521
  }
522
 
523
+ if ($trackerData !== false) {
524
+ $arg['trackerdata'] = urlencode($trackerData);
525
+ $arg['trackerdata_hash'] = urlencode(wp_hash($trackerData));
526
+
527
+ }
528
+
529
  switch ($buttonStyle) {
530
  case 'icon':
531
 
573
  }
574
 
575
  public function liveConnectRedirect() {
576
+ if (!empty($_GET['trackerdata']) && !empty($_GET['trackerdata_hash'])) {
577
+ if (wp_hash($_GET['trackerdata']) === $_GET['trackerdata_hash']) {
578
+ NextendSocialLoginPersistentAnonymous::set('trackerdata', $_GET['trackerdata']);
579
+ }
580
+ }
581
+
582
  if (!is_user_logged_in()) {
583
  $redirectToLogin = NextendSocialLogin::$settings->get('redirect');
584
  if (!empty($redirectToLogin)) {
695
  $user_id = email_exists($email);
696
  }
697
  if ($user_id === false) { // Real register
698
+ if (apply_filters('nsl_is_register_allowed', true, $this)) {
699
+ $this->register($providerUserID, $accessToken, $email, $this->getAuthUserData('name'), $this->getAuthUserData('first_name'), $this->getAuthUserData('last_name'));
700
+ } else {
701
+ self::safeRedirect(__('Authentication error', 'nextend-facebook-connect'), site_url('wp-login.php?registration=disabled'));
702
+ exit;
703
+ }
704
 
705
  } else if ($this->autoLink($user_id, $providerUserID)) {
706
  $this->login($user_id, $accessToken);
724
  $username = strtolower($name);
725
  }
726
 
727
+ $username = preg_replace('/\s+/', '', $username);
728
+
729
  $sanitized_user_login = sanitize_user($this->settings->get('user_prefix') . $username, true);
730
  if (empty($username) || !validate_username($sanitized_user_login)) {
731
 
732
+ //@TODO If username is not valid, we should ask the user to enter custom username with Pro Addon
 
733
  $sanitized_user_login = sanitize_user($this->settings->get('user_fallback') . $providerID, true);
734
  }
735
  $default_user_name = $sanitized_user_login;
815
  $isAutoLinkAllowed = true;
816
  $isAutoLinkAllowed = apply_filters('nsl_' . $this->getId() . '_auto_link_allowed', $isAutoLinkAllowed, $this, $user_id);
817
  if ($isAutoLinkAllowed) {
818
+ return $this->linkUserToProviderIdentifier($user_id, $providerUserID);
 
 
819
  }
820
 
821
  return false;
840
  $this->deleteLoginPersistentData();
841
 
842
  $this->settings->update(array(
843
+ 'tested' => 1,
844
+ 'oauth_redirect_url' => $this->getLoginUrl()
845
  ));
846
 
847
  NextendSocialLoginAdminNotices::addSuccess(__('The test was successful', 'nextend-facebook-connect'));
963
  ?>
964
  <?php if ($state == 'not-tested') : ?>
965
  <div class="nsl-box nsl-box-blue">
966
+ <h2 class="title"><?php _e('Your configuration needs to be verified', 'nextend-facebook-connect'); ?></h2>
967
  <p><?php _e('Before you can start letting your users register with your app it needs to be tested. This test makes sure that no users will have troubles with the login and registration process. <br> If you see error message in the popup check the copied ID and secret or the app itself. Otherwise your settings are fine.', 'nextend-facebook-connect'); ?></p>
968
 
969
  <p id="nsl-test-configuration">
970
  <a id="nsl-test-button" href="#"
971
  onclick="NSLPopupCenter('<?php echo add_query_arg('test', '1', $this->getLoginUrl()); ?>', 'test-window', <?php echo $this->getPopupWidth(); ?>, <?php echo $this->getPopupHeight(); ?>); return false;"
972
+ class="button button-primary"><?php _e('Verify Settings', 'nextend-facebook-connect'); ?></a>
973
+ <span id="nsl-test-please-save"><?php _e('Please save your changes to verify settings.', 'nextend-facebook-connect'); ?></span>
974
  </p>
975
  </div>
976
  <?php endif; ?>
1006
  <p id="nsl-test-configuration">
1007
  <a id="nsl-test-button" href="#"
1008
  onclick="NSLPopupCenter('<?php echo add_query_arg('test', '1', $this->getLoginUrl()); ?>', 'test-window', <?php echo $this->getPopupWidth(); ?>, <?php echo $this->getPopupHeight(); ?>); return false"
1009
+ class="button button-secondary"><?php _e('Verify Settings Again', 'nextend-facebook-connect'); ?></a>
1010
  <span id="nsl-test-please-save"><?php _e('Please save your changes before testing.', 'nextend-facebook-connect'); ?></span>
1011
  <?php
1012
  switch ($state) {
1076
  <?php
1077
  exit;
1078
  }
1079
+
1080
+ public function renderOauthChangedInstruction() {
1081
+ echo '<h2>' . $this->getLabel() . '</h2>';
1082
+
1083
+ include($this->path . '/admin/fix-redirect-uri.php');
1084
+ }
1085
  }
js/nsl.js CHANGED
@@ -1,223 +1,241 @@
1
- (function (undefined) {
2
- window.NSLPopupCenter = function (url, title, w, h) {
3
- var userAgent = navigator.userAgent,
4
- mobile = function () {
5
- return /\b(iPhone|iP[ao]d)/.test(userAgent) ||
6
- /\b(iP[ao]d)/.test(userAgent) ||
7
- /Android/i.test(userAgent) ||
8
- /Mobile/i.test(userAgent);
9
- },
10
- screenX = window.screenX !== undefined ? window.screenX : window.screenLeft,
11
- screenY = window.screenY !== undefined ? window.screenY : window.screenTop,
12
- outerWidth = window.outerWidth !== undefined ? window.outerWidth : document.documentElement.clientWidth,
13
- outerHeight = window.outerHeight !== undefined ? window.outerHeight : document.documentElement.clientHeight - 22,
14
- targetWidth = mobile() ? null : w,
15
- targetHeight = mobile() ? null : h,
16
- V = screenX < 0 ? window.screen.width + screenX : screenX,
17
- left = parseInt(V + (outerWidth - targetWidth) / 2, 10),
18
- right = parseInt(screenY + (outerHeight - targetHeight) / 2.5, 10),
19
- features = [];
20
- if (targetWidth !== null) {
21
- features.push('width=' + targetWidth);
22
- }
23
- if (targetHeight !== null) {
24
- features.push('height=' + targetHeight);
25
- }
26
- features.push('left=' + left);
27
- features.push('top=' + right);
28
- features.push('scrollbars=1');
29
 
30
- var newWindow = window.open(url, title, features.join(','));
31
 
32
- if (window.focus) {
33
- newWindow.focus();
34
- }
35
 
36
- return newWindow;
37
- };
38
-
39
- var isWebView = null;
40
-
41
- function checkWebView() {
42
- if (isWebView === null) {
43
- //Based on UserAgent.js {@link https://github.com/uupaa/UserAgent.js}
44
- function _detectOS(ua) {
45
- switch (true) {
46
- case /Android/.test(ua):
47
- return "Android";
48
- case /iPhone|iPad|iPod/.test(ua):
49
- return "iOS";
50
- case /Windows/.test(ua):
51
- return "Windows";
52
- case /Mac OS X/.test(ua):
53
- return "Mac";
54
- case /CrOS/.test(ua):
55
- return "Chrome OS";
56
- case /Firefox/.test(ua):
57
- return "Firefox OS";
58
- }
59
- return "";
60
  }
 
 
61
 
62
- function _detectBrowser(ua) {
63
- var android = /Android/.test(ua);
64
-
65
- switch (true) {
66
- case /CriOS/.test(ua):
67
- return "Chrome for iOS"; // https://developer.chrome.com/multidevice/user-agent
68
- case /Edge/.test(ua):
69
- return "Edge";
70
- case android && /Silk\//.test(ua):
71
- return "Silk"; // Kidle Silk browser
72
- case /Chrome/.test(ua):
73
- return "Chrome";
74
- case /Firefox/.test(ua):
75
- return "Firefox";
76
- case android:
77
- return "AOSP"; // AOSP stock browser
78
- case /MSIE|Trident/.test(ua):
79
- return "IE";
80
- case /Safari\//.test(ua):
81
- return "Safari";
82
- case /AppleWebKit/.test(ua):
83
- return "WebKit";
84
- }
85
- return "";
86
  }
 
 
87
 
88
- function _detectBrowserVersion(ua, browser) {
89
- switch (browser) {
90
- case "Chrome for iOS":
91
- return _getVersion(ua, "CriOS/");
92
- case "Edge":
93
- return _getVersion(ua, "Edge/");
94
- case "Chrome":
95
- return _getVersion(ua, "Chrome/");
96
- case "Firefox":
97
- return _getVersion(ua, "Firefox/");
98
- case "Silk":
99
- return _getVersion(ua, "Silk/");
100
- case "AOSP":
101
- return _getVersion(ua, "Version/");
102
- case "IE":
103
- return /IEMobile/.test(ua) ? _getVersion(ua, "IEMobile/") :
104
- /MSIE/.test(ua) ? _getVersion(ua, "MSIE ") // IE 10
105
- :
106
- _getVersion(ua, "rv:"); // IE 11
107
- case "Safari":
108
- return _getVersion(ua, "Version/");
109
- case "WebKit":
110
- return _getVersion(ua, "WebKit/");
111
- }
112
- return "0.0.0";
113
  }
 
 
114
 
115
- function _getVersion(ua, token) {
116
- try {
117
- return _normalizeSemverString(ua.split(token)[1].trim().split(/[^\w\.]/)[0]);
118
- } catch (o_O) {
119
- // ignore
120
- }
121
- return "0.0.0";
122
  }
 
 
123
 
124
- function _normalizeSemverString(version) {
125
- var ary = version.split(/[\._]/);
126
- return (parseInt(ary[0], 10) || 0) + "." +
127
- (parseInt(ary[1], 10) || 0) + "." +
128
- (parseInt(ary[2], 10) || 0);
129
- }
130
 
131
- function _isWebView(ua, os, browser, version, options) {
132
- switch (os + browser) {
133
- case "iOSSafari":
134
- return false;
135
- case "iOSWebKit":
136
- return _isWebView_iOS(options);
137
- case "AndroidAOSP":
138
- return false; // can not accurately detect
139
- case "AndroidChrome":
140
- return parseFloat(version) >= 42 ? /; wv/.test(ua) : /\d{2}\.0\.0/.test(version) ? true : _isWebView_Android(options);
141
- }
142
- return false;
143
  }
 
 
144
 
145
- function _isWebView_iOS(options) { // @arg Object - { WEB_VIEW }
146
- // @ret Boolean
147
- // Chrome 15++, Safari 5.1++, IE11, Edge, Firefox10++
148
- // Android 5.0 ChromeWebView 30: webkitFullscreenEnabled === false
149
- // Android 5.0 ChromeWebView 33: webkitFullscreenEnabled === false
150
- // Android 5.0 ChromeWebView 36: webkitFullscreenEnabled === false
151
- // Android 5.0 ChromeWebView 37: webkitFullscreenEnabled === false
152
- // Android 5.0 ChromeWebView 40: webkitFullscreenEnabled === false
153
- // Android 5.0 ChromeWebView 42: webkitFullscreenEnabled === ?
154
- // Android 5.0 ChromeWebView 44: webkitFullscreenEnabled === true
155
- var document = (window["document"] || {});
156
-
157
- if ("WEB_VIEW" in options) {
158
- return options["WEB_VIEW"];
159
- }
160
- return !("fullscreenEnabled" in document || "webkitFullscreenEnabled" in document || false);
161
  }
 
 
162
 
163
- function _isWebView_Android(options) {
164
- // Chrome 8++
165
- // Android 5.0 ChromeWebView 30: webkitRequestFileSystem === false
166
- // Android 5.0 ChromeWebView 33: webkitRequestFileSystem === false
167
- // Android 5.0 ChromeWebView 36: webkitRequestFileSystem === false
168
- // Android 5.0 ChromeWebView 37: webkitRequestFileSystem === false
169
- // Android 5.0 ChromeWebView 40: webkitRequestFileSystem === false
170
- // Android 5.0 ChromeWebView 42: webkitRequestFileSystem === false
171
- // Android 5.0 ChromeWebView 44: webkitRequestFileSystem === false
172
- if ("WEB_VIEW" in options) {
173
- return options["WEB_VIEW"];
174
- }
175
- return !("requestFileSystem" in window || "webkitRequestFileSystem" in window || false);
176
  }
177
-
178
- var options = {};
179
- var nav = window.navigator || {};
180
- var ua = nav.userAgent || "";
181
- var os = _detectOS(ua);
182
- var browser = _detectBrowser(ua);
183
- var browserVersion = _detectBrowserVersion(ua, browser);
184
-
185
- isWebView = _isWebView(ua, os, browser, browserVersion, options);
186
  }
187
 
188
- return isWebView;
 
 
 
 
 
 
 
189
  }
190
 
191
- if (jQuery !== undefined) {
192
- (function ($) {
193
- $('a[data-plugin="nsl"][data-action="connect"],a[data-plugin="nsl"][data-action="link"]').on('click', function (e) {
194
- var $target = $(this),
195
- href = $target.attr('href');
196
- if (href.indexOf('?') !== -1) {
197
- href += '&';
198
- } else {
199
- href += '?';
200
- }
201
- var redirectTo = $target.data('redirect');
202
- if (redirectTo === 'current') {
203
- href += 'redirect=' + encodeURIComponent(window.location.href) + '&';
204
- } else if (redirectTo && redirectTo !== '') {
205
- href += 'redirect=' + encodeURIComponent(redirectTo) + '&';
206
- }
 
 
 
 
 
 
 
 
 
207
 
208
- if (!checkWebView() && NSLPopupCenter(href + 'display=popup', 'nsl-social-connect', $target.data('popupwidth'), $target.data('popupheight'))) {
 
 
209
  e.preventDefault();
210
- } else {
211
- window.location = href;
 
 
 
 
 
 
212
  e.preventDefault();
213
  }
214
- });
215
 
216
- var googleLoginButton = $('a[data-plugin="nsl"][data-provider="google"]');
217
- if (googleLoginButton.length && checkWebView()) {
218
- googleLoginButton.remove();
219
  }
 
220
 
221
- })(jQuery);
222
- }
223
- })();
 
 
 
 
1
+ window.NSLPopupCenter = function (url, title, w, h) {
2
+ var userAgent = navigator.userAgent,
3
+ mobile = function () {
4
+ return /\b(iPhone|iP[ao]d)/.test(userAgent) ||
5
+ /\b(iP[ao]d)/.test(userAgent) ||
6
+ /Android/i.test(userAgent) ||
7
+ /Mobile/i.test(userAgent);
8
+ },
9
+ screenX = window.screenX !== undefined ? window.screenX : window.screenLeft,
10
+ screenY = window.screenY !== undefined ? window.screenY : window.screenTop,
11
+ outerWidth = window.outerWidth !== undefined ? window.outerWidth : document.documentElement.clientWidth,
12
+ outerHeight = window.outerHeight !== undefined ? window.outerHeight : document.documentElement.clientHeight - 22,
13
+ targetWidth = mobile() ? null : w,
14
+ targetHeight = mobile() ? null : h,
15
+ V = screenX < 0 ? window.screen.width + screenX : screenX,
16
+ left = parseInt(V + (outerWidth - targetWidth) / 2, 10),
17
+ right = parseInt(screenY + (outerHeight - targetHeight) / 2.5, 10),
18
+ features = [];
19
+ if (targetWidth !== null) {
20
+ features.push('width=' + targetWidth);
21
+ }
22
+ if (targetHeight !== null) {
23
+ features.push('height=' + targetHeight);
24
+ }
25
+ features.push('left=' + left);
26
+ features.push('top=' + right);
27
+ features.push('scrollbars=1');
 
28
 
29
+ var newWindow = window.open(url, title, features.join(','));
30
 
31
+ if (window.focus) {
32
+ newWindow.focus();
33
+ }
34
 
35
+ return newWindow;
36
+ };
37
+
38
+ var isWebView = null;
39
+
40
+ function checkWebView() {
41
+ if (isWebView === null) {
42
+ //Based on UserAgent.js {@link https://github.com/uupaa/UserAgent.js}
43
+ function _detectOS(ua) {
44
+ switch (true) {
45
+ case /Android/.test(ua):
46
+ return "Android";
47
+ case /iPhone|iPad|iPod/.test(ua):
48
+ return "iOS";
49
+ case /Windows/.test(ua):
50
+ return "Windows";
51
+ case /Mac OS X/.test(ua):
52
+ return "Mac";
53
+ case /CrOS/.test(ua):
54
+ return "Chrome OS";
55
+ case /Firefox/.test(ua):
56
+ return "Firefox OS";
 
 
57
  }
58
+ return "";
59
+ }
60
 
61
+ function _detectBrowser(ua) {
62
+ var android = /Android/.test(ua);
63
+
64
+ switch (true) {
65
+ case /CriOS/.test(ua):
66
+ return "Chrome for iOS"; // https://developer.chrome.com/multidevice/user-agent
67
+ case /Edge/.test(ua):
68
+ return "Edge";
69
+ case android && /Silk\//.test(ua):
70
+ return "Silk"; // Kidle Silk browser
71
+ case /Chrome/.test(ua):
72
+ return "Chrome";
73
+ case /Firefox/.test(ua):
74
+ return "Firefox";
75
+ case android:
76
+ return "AOSP"; // AOSP stock browser
77
+ case /MSIE|Trident/.test(ua):
78
+ return "IE";
79
+ case /Safari\//.test(ua):
80
+ return "Safari";
81
+ case /AppleWebKit/.test(ua):
82
+ return "WebKit";
 
 
83
  }
84
+ return "";
85
+ }
86
 
87
+ function _detectBrowserVersion(ua, browser) {
88
+ switch (browser) {
89
+ case "Chrome for iOS":
90
+ return _getVersion(ua, "CriOS/");
91
+ case "Edge":
92
+ return _getVersion(ua, "Edge/");
93
+ case "Chrome":
94
+ return _getVersion(ua, "Chrome/");
95
+ case "Firefox":
96
+ return _getVersion(ua, "Firefox/");
97
+ case "Silk":
98
+ return _getVersion(ua, "Silk/");
99
+ case "AOSP":
100
+ return _getVersion(ua, "Version/");
101
+ case "IE":
102
+ return /IEMobile/.test(ua) ? _getVersion(ua, "IEMobile/") :
103
+ /MSIE/.test(ua) ? _getVersion(ua, "MSIE ") // IE 10
104
+ :
105
+ _getVersion(ua, "rv:"); // IE 11
106
+ case "Safari":
107
+ return _getVersion(ua, "Version/");
108
+ case "WebKit":
109
+ return _getVersion(ua, "WebKit/");
 
 
110
  }
111
+ return "0.0.0";
112
+ }
113
 
114
+ function _getVersion(ua, token) {
115
+ try {
116
+ return _normalizeSemverString(ua.split(token)[1].trim().split(/[^\w\.]/)[0]);
117
+ } catch (o_O) {
118
+ // ignore
 
 
119
  }
120
+ return "0.0.0";
121
+ }
122
 
123
+ function _normalizeSemverString(version) {
124
+ var ary = version.split(/[\._]/);
125
+ return (parseInt(ary[0], 10) || 0) + "." +
126
+ (parseInt(ary[1], 10) || 0) + "." +
127
+ (parseInt(ary[2], 10) || 0);
128
+ }
129
 
130
+ function _isWebView(ua, os, browser, version, options) {
131
+ switch (os + browser) {
132
+ case "iOSSafari":
133
+ return false;
134
+ case "iOSWebKit":
135
+ return _isWebView_iOS(options);
136
+ case "AndroidAOSP":
137
+ return false; // can not accurately detect
138
+ case "AndroidChrome":
139
+ return parseFloat(version) >= 42 ? /; wv/.test(ua) : /\d{2}\.0\.0/.test(version) ? true : _isWebView_Android(options);
 
 
140
  }
141
+ return false;
142
+ }
143
 
144
+ function _isWebView_iOS(options) { // @arg Object - { WEB_VIEW }
145
+ // @ret Boolean
146
+ // Chrome 15++, Safari 5.1++, IE11, Edge, Firefox10++
147
+ // Android 5.0 ChromeWebView 30: webkitFullscreenEnabled === false
148
+ // Android 5.0 ChromeWebView 33: webkitFullscreenEnabled === false
149
+ // Android 5.0 ChromeWebView 36: webkitFullscreenEnabled === false
150
+ // Android 5.0 ChromeWebView 37: webkitFullscreenEnabled === false
151
+ // Android 5.0 ChromeWebView 40: webkitFullscreenEnabled === false
152
+ // Android 5.0 ChromeWebView 42: webkitFullscreenEnabled === ?
153
+ // Android 5.0 ChromeWebView 44: webkitFullscreenEnabled === true
154
+ var document = (window["document"] || {});
155
+
156
+ if ("WEB_VIEW" in options) {
157
+ return options["WEB_VIEW"];
 
 
158
  }
159
+ return !("fullscreenEnabled" in document || "webkitFullscreenEnabled" in document || false);
160
+ }
161
 
162
+ function _isWebView_Android(options) {
163
+ // Chrome 8++
164
+ // Android 5.0 ChromeWebView 30: webkitRequestFileSystem === false
165
+ // Android 5.0 ChromeWebView 33: webkitRequestFileSystem === false
166
+ // Android 5.0 ChromeWebView 36: webkitRequestFileSystem === false
167
+ // Android 5.0 ChromeWebView 37: webkitRequestFileSystem === false
168
+ // Android 5.0 ChromeWebView 40: webkitRequestFileSystem === false
169
+ // Android 5.0 ChromeWebView 42: webkitRequestFileSystem === false
170
+ // Android 5.0 ChromeWebView 44: webkitRequestFileSystem === false
171
+ if ("WEB_VIEW" in options) {
172
+ return options["WEB_VIEW"];
 
 
173
  }
174
+ return !("requestFileSystem" in window || "webkitRequestFileSystem" in window || false);
 
 
 
 
 
 
 
 
175
  }
176
 
177
+ var options = {};
178
+ var nav = window.navigator || {};
179
+ var ua = nav.userAgent || "";
180
+ var os = _detectOS(ua);
181
+ var browser = _detectBrowser(ua);
182
+ var browserVersion = _detectBrowserVersion(ua, browser);
183
+
184
+ isWebView = _isWebView(ua, os, browser, browserVersion, options);
185
  }
186
 
187
+ return isWebView;
188
+ }
189
+
190
+ if (typeof jQuery !== 'undefined') {
191
+ var targetWindow = targetWindow || 'prefer-popup';
192
+ (function ($) {
193
+ $('a[data-plugin="nsl"][data-action="connect"],a[data-plugin="nsl"][data-action="link"]').on('click', function (e) {
194
+ var $target = $(this),
195
+ href = $target.attr('href'),
196
+ success = false;
197
+ if (href.indexOf('?') !== -1) {
198
+ href += '&';
199
+ } else {
200
+ href += '?';
201
+ }
202
+ var redirectTo = $target.data('redirect');
203
+ if (redirectTo === 'current') {
204
+ href += 'redirect=' + encodeURIComponent(window.location.href) + '&';
205
+ } else if (redirectTo && redirectTo !== '') {
206
+ href += 'redirect=' + encodeURIComponent(redirectTo) + '&';
207
+ }
208
+
209
+ if (targetWindow !== 'prefer-same-window' && checkWebView()) {
210
+ targetWindow = 'prefer-same-window';
211
+ }
212
 
213
+ if (targetWindow === 'prefer-popup') {
214
+ if (NSLPopupCenter(href + 'display=popup', 'nsl-social-connect', $target.data('popupwidth'), $target.data('popupheight'))) {
215
+ success = true;
216
  e.preventDefault();
217
+ }
218
+ } else if (targetWindow === 'prefer-new-tab') {
219
+ var newTab = window.open(href + 'display=popup', '_blank');
220
+ if (newTab) {
221
+ if (window.focus) {
222
+ newTab.focus();
223
+ }
224
+ success = true;
225
  e.preventDefault();
226
  }
227
+ }
228
 
229
+ if (!success) {
230
+ window.location = href;
231
+ e.preventDefault();
232
  }
233
+ });
234
 
235
+ var googleLoginButton = $('a[data-plugin="nsl"][data-provider="google"]');
236
+ if (googleLoginButton.length && checkWebView()) {
237
+ googleLoginButton.remove();
238
+ }
239
+
240
+ })(jQuery);
241
+ }
languages/nextend-facebook-connect-fr_FR.mo ADDED
Binary file
languages/nextend-facebook-connect-fr_FR.po ADDED
@@ -0,0 +1,1571 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2018-03-08 15:39+0100\n"
5
+ "PO-Revision-Date: 2018-03-08 15:39+0100\n"
6
+ "Last-Translator: \n"
7
+ "Language-Team: \n"
8
+ "Language: hu\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Generator: Poedit 2.0.6\n"
13
+ "X-Poedit-Basepath: Z:/ramona/wordpress4_2_2/wp-content/plugins\n"
14
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
17
+ "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
18
+ "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n"
20
+ "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
21
+ "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
22
+ "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
23
+ "compat\n"
24
+ "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/"
25
+ "compat\n"
26
+ "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
+ "compat\n"
28
+
29
+ #: nextend-facebook-connect/admin/admin.php:189
30
+ #, php-format
31
+ msgid "%s needs json_decode function."
32
+ msgstr ""
33
+
34
+ #: nextend-facebook-connect/admin/admin.php:189
35
+ msgid "Please contact your server administrator and ask for solution!"
36
+ msgstr ""
37
+
38
+ #: nextend-facebook-connect/admin/admin.php:207
39
+ #: nextend-facebook-connect/admin/admin.php:248
40
+ msgid "Settings saved."
41
+ msgstr ""
42
+
43
+ #: nextend-facebook-connect/admin/admin.php:216
44
+ msgid "The authorization was successful"
45
+ msgstr ""
46
+
47
+ #: nextend-facebook-connect/admin/admin.php:227
48
+ msgid "Deauthorize completed."
49
+ msgstr ""
50
+
51
+ #: nextend-facebook-connect/admin/admin.php:348
52
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:10
53
+ #: nextend-facebook-connect/admin/templates/providers.php:84
54
+ #: nextend-facebook-connect/admin/templates/providers.php:96
55
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
56
+ msgid "Settings"
57
+ msgstr ""
58
+
59
+ #: nextend-facebook-connect/admin/admin.php:422
60
+ #: nextend-facebook-connect/includes/oauth2.php:113
61
+ #: nextend-facebook-connect/includes/oauth2.php:238
62
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
63
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:150
64
+ #, php-format
65
+ msgid "Unexpected response: %s"
66
+ msgstr ""
67
+
68
+ #: nextend-facebook-connect/admin/admin.php:480
69
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:19
70
+ #, php-format
71
+ msgid ""
72
+ "%s detected that your login url changed. You must update the Oauth redirect "
73
+ "URIs in the related social applications."
74
+ msgstr ""
75
+
76
+ #: nextend-facebook-connect/admin/admin.php:481
77
+ msgid "Fix Error"
78
+ msgstr ""
79
+
80
+ #: nextend-facebook-connect/admin/admin.php:481
81
+ msgid "Oauth Redirect URI"
82
+ msgstr ""
83
+
84
+ #: nextend-facebook-connect/admin/admin.php:491
85
+ #, php-format
86
+ msgid ""
87
+ "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
88
+ "display Social Login buttons in %2$s login form!"
89
+ msgstr ""
90
+
91
+ #: nextend-facebook-connect/admin/admin.php:492
92
+ msgid "Dismiss and check Pro Addon"
93
+ msgstr ""
94
+
95
+ #: nextend-facebook-connect/admin/admin.php:492
96
+ msgid "Dismiss"
97
+ msgstr ""
98
+
99
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:72
100
+ msgid "Login label"
101
+ msgstr ""
102
+
103
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:77
104
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:88
105
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:99
106
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
107
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
108
+ msgid "Reset to default"
109
+ msgstr ""
110
+
111
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:82
112
+ msgid "Link label"
113
+ msgstr ""
114
+
115
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:94
116
+ msgid "Unlink label"
117
+ msgstr ""
118
+
119
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:105
120
+ msgid "Default button"
121
+ msgstr ""
122
+
123
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:121
124
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:151
125
+ msgid "Use custom button"
126
+ msgstr ""
127
+
128
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
129
+ #, php-format
130
+ msgid "Use the %s in your custom button's code to make the label show up."
131
+ msgstr ""
132
+
133
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:136
134
+ msgid "Icon button"
135
+ msgstr ""
136
+
137
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
138
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:122
139
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
140
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:56
141
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
142
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
143
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
144
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
145
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
146
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
147
+ #: nextend-facebook-connect/providers/google/admin/settings.php:47
148
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:46
149
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:45
150
+ msgid "Save Changes"
151
+ msgstr ""
152
+
153
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:8
154
+ #: nextend-facebook-connect/admin/templates/providers.php:64
155
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:7
156
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:7
157
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:6
158
+ msgid "Getting Started"
159
+ msgstr ""
160
+
161
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:12
162
+ msgid "Buttons"
163
+ msgstr ""
164
+
165
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:14
166
+ msgid "Usage"
167
+ msgstr ""
168
+
169
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:9
170
+ msgid "Other settings"
171
+ msgstr ""
172
+
173
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:14
174
+ msgid "Username prefix on register"
175
+ msgstr ""
176
+
177
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:20
178
+ msgid "Fallback username prefix on register"
179
+ msgstr ""
180
+
181
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
182
+ msgid "Used when username is invalid"
183
+ msgstr ""
184
+
185
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:16
186
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
187
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:10
188
+ msgid "PRO settings"
189
+ msgstr ""
190
+
191
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:26
192
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:30
193
+ msgid "Ask E-mail on registration"
194
+ msgstr ""
195
+
196
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:33
197
+ msgid "Never"
198
+ msgstr ""
199
+
200
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:36
201
+ msgid "When email is not provided or empty"
202
+ msgstr ""
203
+
204
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:39
205
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:54
206
+ msgid "Always"
207
+ msgstr ""
208
+
209
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:44
210
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:48
211
+ msgid "Ask Username on registration"
212
+ msgstr ""
213
+
214
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:51
215
+ msgid "Never, generate automatically"
216
+ msgstr ""
217
+
218
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
219
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:63
220
+ msgid "Automatically connect the existing account upon registration"
221
+ msgstr ""
222
+
223
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:67
224
+ #: nextend-facebook-connect/admin/templates/providers.php:39
225
+ #: nextend-facebook-connect/admin/templates/settings/general.php:37
226
+ #: nextend-facebook-connect/includes/provider.php:985
227
+ msgid "Disabled"
228
+ msgstr ""
229
+
230
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:70
231
+ msgid "Automatic, based on email address"
232
+ msgstr ""
233
+
234
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:75
235
+ msgid "Disable login for the selected roles"
236
+ msgstr ""
237
+
238
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:95
239
+ msgid "Default roles for user who registered with this provider"
240
+ msgstr ""
241
+
242
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:103
243
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
244
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:40
245
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
246
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
247
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
248
+ #: nextend-facebook-connect/widget.php:34
249
+ msgid "Default"
250
+ msgstr ""
251
+
252
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:7
253
+ msgid "Shortcode"
254
+ msgstr ""
255
+
256
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:23
257
+ msgid "Simple link"
258
+ msgstr ""
259
+
260
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:26
261
+ msgid "Click here to login or register"
262
+ msgstr ""
263
+
264
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:31
265
+ msgid "Image button"
266
+ msgstr ""
267
+
268
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:34
269
+ msgid "Image url"
270
+ msgstr ""
271
+
272
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
273
+ msgid "Fix Oauth Redirect URIs"
274
+ msgstr ""
275
+
276
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:12
277
+ msgid "Every Oauth Redirect URI seems fine"
278
+ msgstr ""
279
+
280
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:29
281
+ msgid "Got it"
282
+ msgstr ""
283
+
284
+ #: nextend-facebook-connect/admin/templates/global-settings.php:24
285
+ #: nextend-facebook-connect/admin/templates/menu.php:8
286
+ msgid "Global Settings"
287
+ msgstr ""
288
+
289
+ #: nextend-facebook-connect/admin/templates/global-settings.php:27
290
+ msgid "General"
291
+ msgstr ""
292
+
293
+ #: nextend-facebook-connect/admin/templates/global-settings.php:29
294
+ msgid "Login Form"
295
+ msgstr ""
296
+
297
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
298
+ msgid "Comment"
299
+ msgstr ""
300
+
301
+ #: nextend-facebook-connect/admin/templates/header.php:14
302
+ msgid "Docs"
303
+ msgstr ""
304
+
305
+ #: nextend-facebook-connect/admin/templates/header.php:17
306
+ msgid "Support"
307
+ msgstr ""
308
+
309
+ #: nextend-facebook-connect/admin/templates/header.php:20
310
+ #: nextend-facebook-connect/admin/templates/menu.php:12
311
+ msgid "Pro Addon"
312
+ msgstr ""
313
+
314
+ #: nextend-facebook-connect/admin/templates/menu.php:6
315
+ msgid "Providers"
316
+ msgstr ""
317
+
318
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:13
319
+ msgid "Error"
320
+ msgstr ""
321
+
322
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:14
323
+ msgid ""
324
+ "You don’t have sufficient permissions to install and activate plugins. "
325
+ "Please contact your site’s administrator!"
326
+ msgstr ""
327
+
328
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:22
329
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:32
330
+ #: nextend-facebook-connect/admin/templates/pro.php:34
331
+ msgid "Activate Pro Addon"
332
+ msgstr ""
333
+
334
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:23
335
+ msgid ""
336
+ "Pro Addon is installed but not activated. To be able to use the Pro "
337
+ "features, you need to activate it."
338
+ msgstr ""
339
+
340
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:37
341
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:215
342
+ msgid "Deauthorize Pro Addon"
343
+ msgstr ""
344
+
345
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:48
346
+ #: nextend-facebook-connect/admin/templates/pro.php:43
347
+ msgid "Pro Addon is not installed"
348
+ msgstr ""
349
+
350
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:50
351
+ msgid ""
352
+ "To access the Pro features, you need to install and activate the Pro Addon."
353
+ msgstr ""
354
+
355
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:59
356
+ #, php-format
357
+ msgid "Install %s now"
358
+ msgstr ""
359
+
360
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:60
361
+ #: nextend-facebook-connect/admin/templates/pro.php:47
362
+ msgid "Install Pro Addon"
363
+ msgstr ""
364
+
365
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:94
366
+ msgid "Activating..."
367
+ msgstr ""
368
+
369
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:126
370
+ msgid "Authorize your Pro Addon"
371
+ msgstr ""
372
+
373
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
374
+ msgid ""
375
+ "To be able to use the Pro features, you need to authorize Nextend Social "
376
+ "Connect Pro Addon. You can do this by clicking on the Authorize button below "
377
+ "then select the related purchase."
378
+ msgstr ""
379
+
380
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:132
381
+ msgid "Authorize"
382
+ msgstr ""
383
+
384
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:189
385
+ msgid "License key"
386
+ msgstr ""
387
+
388
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:206
389
+ msgid "Pro Addon is installed and activated"
390
+ msgstr ""
391
+
392
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:208
393
+ msgid ""
394
+ "You installed and activated the Pro Addon. If you don’t want to use it "
395
+ "anymore, you can deauthorize using the button below."
396
+ msgstr ""
397
+
398
+ #: nextend-facebook-connect/admin/templates/pro.php:8
399
+ msgid "Get Pro Addon to unlock more features"
400
+ msgstr ""
401
+
402
+ #: nextend-facebook-connect/admin/templates/pro.php:9
403
+ #, php-format
404
+ msgid ""
405
+ "The features below are available in %s Pro Addon. Get it today and tweak the "
406
+ "awesome settings."
407
+ msgstr ""
408
+
409
+ #: nextend-facebook-connect/admin/templates/pro.php:10
410
+ msgid ""
411
+ "If you already have a license, you can Authorize your Pro Addon. Otherwise "
412
+ "you can purchase it using the button below."
413
+ msgstr ""
414
+
415
+ #: nextend-facebook-connect/admin/templates/pro.php:14
416
+ msgid "Buy Pro Addon"
417
+ msgstr ""
418
+
419
+ #: nextend-facebook-connect/admin/templates/pro.php:16
420
+ msgid "Authorize Pro Addon"
421
+ msgstr ""
422
+
423
+ #: nextend-facebook-connect/admin/templates/pro.php:25
424
+ msgid "Pro Addon is not activated"
425
+ msgstr ""
426
+
427
+ #: nextend-facebook-connect/admin/templates/pro.php:26
428
+ #: nextend-facebook-connect/admin/templates/pro.php:44
429
+ msgid ""
430
+ "To be able to use the Pro features, you need to install and activate the "
431
+ "Nextend Social Connect Pro Addon."
432
+ msgstr ""
433
+
434
+ #: nextend-facebook-connect/admin/templates/providers.php:30
435
+ msgid "Not Available"
436
+ msgstr ""
437
+
438
+ #: nextend-facebook-connect/admin/templates/providers.php:33
439
+ msgid "Not Configured"
440
+ msgstr ""
441
+
442
+ #: nextend-facebook-connect/admin/templates/providers.php:36
443
+ msgid "Not Verified"
444
+ msgstr ""
445
+
446
+ #: nextend-facebook-connect/admin/templates/providers.php:42
447
+ #: nextend-facebook-connect/admin/templates/settings/general.php:40
448
+ #: nextend-facebook-connect/includes/provider.php:988
449
+ msgid "Enabled"
450
+ msgstr ""
451
+
452
+ #: nextend-facebook-connect/admin/templates/providers.php:45
453
+ msgid "Legacy"
454
+ msgstr ""
455
+
456
+ #: nextend-facebook-connect/admin/templates/providers.php:57
457
+ msgid "Upgrade Now"
458
+ msgstr ""
459
+
460
+ #: nextend-facebook-connect/admin/templates/providers.php:72
461
+ #: nextend-facebook-connect/includes/provider.php:972
462
+ msgid "Verify Settings"
463
+ msgstr ""
464
+
465
+ #: nextend-facebook-connect/admin/templates/providers.php:80
466
+ #: nextend-facebook-connect/includes/provider.php:1017
467
+ msgid "Enable"
468
+ msgstr ""
469
+
470
+ #: nextend-facebook-connect/admin/templates/providers.php:92
471
+ #: nextend-facebook-connect/includes/provider.php:1025
472
+ msgid "Disable"
473
+ msgstr ""
474
+
475
+ #: nextend-facebook-connect/admin/templates/providers.php:103
476
+ msgid "Import"
477
+ msgstr ""
478
+
479
+ #: nextend-facebook-connect/admin/templates/providers.php:122
480
+ msgid "Saving..."
481
+ msgstr ""
482
+
483
+ #: nextend-facebook-connect/admin/templates/providers.php:123
484
+ msgid "Saving failed"
485
+ msgstr ""
486
+
487
+ #: nextend-facebook-connect/admin/templates/providers.php:124
488
+ msgid "Order Saved"
489
+ msgstr ""
490
+
491
+ #: nextend-facebook-connect/admin/templates/review.php:14
492
+ msgid "Rate your experience!"
493
+ msgstr ""
494
+
495
+ #: nextend-facebook-connect/admin/templates/review.php:15
496
+ msgid "Hated it"
497
+ msgstr ""
498
+
499
+ #: nextend-facebook-connect/admin/templates/review.php:16
500
+ msgid "Disliked it"
501
+ msgstr ""
502
+
503
+ #: nextend-facebook-connect/admin/templates/review.php:17
504
+ msgid "It was ok"
505
+ msgstr ""
506
+
507
+ #: nextend-facebook-connect/admin/templates/review.php:18
508
+ msgid "Liked it"
509
+ msgstr ""
510
+
511
+ #: nextend-facebook-connect/admin/templates/review.php:19
512
+ msgid "Loved it"
513
+ msgstr ""
514
+
515
+ #: nextend-facebook-connect/admin/templates/review.php:31
516
+ msgid "Please Leave a Review"
517
+ msgstr ""
518
+
519
+ #: nextend-facebook-connect/admin/templates/review.php:32
520
+ msgid ""
521
+ "If you are happy with <b>Nextend Social Login</b> and can take a minute "
522
+ "please leave us a review. It will be a tremendous help for us!"
523
+ msgstr ""
524
+
525
+ #: nextend-facebook-connect/admin/templates/review.php:34
526
+ msgid "Ok, you deserve it"
527
+ msgstr ""
528
+
529
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
530
+ msgid "BuddyPress register form"
531
+ msgstr ""
532
+
533
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
534
+ msgid "No Connect button"
535
+ msgstr ""
536
+
537
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
538
+ msgid "Connect button before register"
539
+ msgstr ""
540
+
541
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
542
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
543
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
544
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
545
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
546
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
547
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
548
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
549
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
550
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
551
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
552
+ msgid "Action:"
553
+ msgstr ""
554
+
555
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
556
+ msgid "Connect button before account details"
557
+ msgstr ""
558
+
559
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
560
+ msgid "Connect button after register"
561
+ msgstr ""
562
+
563
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
564
+ msgid "BuddyPress register button style"
565
+ msgstr ""
566
+
567
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
568
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:46
569
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
570
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
571
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
572
+ #: nextend-facebook-connect/widget.php:39
573
+ msgid "Icon"
574
+ msgstr ""
575
+
576
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:18
577
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:22
578
+ msgid "Comment login button"
579
+ msgstr ""
580
+
581
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:25
582
+ msgid "Show"
583
+ msgstr ""
584
+
585
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
586
+ msgid "Hide"
587
+ msgstr ""
588
+
589
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
590
+ #, php-format
591
+ msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
592
+ msgstr ""
593
+
594
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
595
+ msgid "Discussion"
596
+ msgstr ""
597
+
598
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
599
+ msgid "Users must be registered and logged in to comment"
600
+ msgstr ""
601
+
602
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:34
603
+ msgid "Comment button style"
604
+ msgstr ""
605
+
606
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
607
+ msgid "Target window"
608
+ msgstr ""
609
+
610
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:32
611
+ msgid "Prefer popup"
612
+ msgstr ""
613
+
614
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:35
615
+ msgid "Prefer new tab"
616
+ msgstr ""
617
+
618
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:38
619
+ msgid "Prefer same window"
620
+ msgstr ""
621
+
622
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:43
623
+ msgid "Membership"
624
+ msgstr ""
625
+
626
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:49
627
+ msgid "Allow registration with Social login"
628
+ msgstr ""
629
+
630
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
631
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
632
+ msgid "Registration notification sent to"
633
+ msgstr ""
634
+
635
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
636
+ msgid "WordPress default"
637
+ msgstr ""
638
+
639
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
640
+ msgid "Nobody"
641
+ msgstr ""
642
+
643
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
644
+ msgid "User"
645
+ msgstr ""
646
+
647
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
648
+ msgid "Admin"
649
+ msgstr ""
650
+
651
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
652
+ msgid "User and Admin"
653
+ msgstr ""
654
+
655
+ #: nextend-facebook-connect/admin/templates/settings/general.php:30
656
+ #: nextend-facebook-connect/admin/templates/settings/general.php:34
657
+ msgid "Debug mode"
658
+ msgstr ""
659
+
660
+ #: nextend-facebook-connect/admin/templates/settings/general.php:46
661
+ msgid "Fixed redirect url for login"
662
+ msgstr ""
663
+
664
+ #: nextend-facebook-connect/admin/templates/settings/general.php:59
665
+ #: nextend-facebook-connect/admin/templates/settings/general.php:80
666
+ msgid "Use custom"
667
+ msgstr ""
668
+
669
+ #: nextend-facebook-connect/admin/templates/settings/general.php:67
670
+ msgid "Fixed redirect url for register"
671
+ msgstr ""
672
+
673
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
674
+ msgid "Login form button style"
675
+ msgstr ""
676
+
677
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
678
+ msgid "Login layout"
679
+ msgstr ""
680
+
681
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
682
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
683
+ msgid "Below"
684
+ msgstr ""
685
+
686
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
687
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
688
+ msgid "Below with separator"
689
+ msgstr ""
690
+
691
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:64
692
+ msgid "Below and floating"
693
+ msgstr ""
694
+
695
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
696
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
697
+ msgid "Above"
698
+ msgstr ""
699
+
700
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
701
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
702
+ msgid "Above with separator"
703
+ msgstr ""
704
+
705
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:83
706
+ msgid "Embedded Login form button style"
707
+ msgstr ""
708
+
709
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:102
710
+ msgid "Embedded Login layout"
711
+ msgstr ""
712
+
713
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
714
+ msgid "Login form"
715
+ msgstr ""
716
+
717
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
718
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
719
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
720
+ msgid "Show login buttons"
721
+ msgstr ""
722
+
723
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
724
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
725
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
726
+ msgid "Hide login buttons"
727
+ msgstr ""
728
+
729
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
730
+ msgid "Registration form"
731
+ msgstr ""
732
+
733
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
734
+ msgid "Embedded login form"
735
+ msgstr ""
736
+
737
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
738
+ msgid "WooCommerce login form"
739
+ msgstr ""
740
+
741
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
742
+ msgid "No Connect button in login form"
743
+ msgstr ""
744
+
745
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
746
+ msgid "Connect button before login form"
747
+ msgstr ""
748
+
749
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
750
+ msgid "Connect button after login form"
751
+ msgstr ""
752
+
753
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
754
+ msgid "WooCommerce register form"
755
+ msgstr ""
756
+
757
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
758
+ msgid "No Connect button in register form"
759
+ msgstr ""
760
+
761
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
762
+ msgid "Connect button before register form"
763
+ msgstr ""
764
+
765
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
766
+ msgid "Connect button after register form"
767
+ msgstr ""
768
+
769
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
770
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
771
+ msgid "WooCommerce billing form"
772
+ msgstr ""
773
+
774
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
775
+ msgid "No Connect button in billing form"
776
+ msgstr ""
777
+
778
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
779
+ msgid "Connect button before billing form"
780
+ msgstr ""
781
+
782
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
783
+ msgid "Connect button after billing form"
784
+ msgstr ""
785
+
786
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
787
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
788
+ msgid "WooCommerce account details"
789
+ msgstr ""
790
+
791
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
792
+ msgid "Link buttons before account details"
793
+ msgstr ""
794
+
795
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
796
+ msgid "Link buttons after account details"
797
+ msgstr ""
798
+
799
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
800
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
801
+ msgid "WooCommerce button style"
802
+ msgstr ""
803
+
804
+ #: nextend-facebook-connect/includes/provider.php:359
805
+ #: nextend-facebook-connect/includes/provider.php:624
806
+ #: nextend-facebook-connect/includes/provider.php:635
807
+ msgid "Authentication successful"
808
+ msgstr ""
809
+
810
+ #: nextend-facebook-connect/includes/provider.php:407
811
+ #, php-format
812
+ msgid ""
813
+ "Your %1$s account is successfully linked with your account. Now you can sign "
814
+ "in with %2$s easily."
815
+ msgstr ""
816
+
817
+ #: nextend-facebook-connect/includes/provider.php:410
818
+ #, php-format
819
+ msgid ""
820
+ "You have already linked a(n) %s account. Please unlink the current and then "
821
+ "you can link other %s account."
822
+ msgstr ""
823
+
824
+ #: nextend-facebook-connect/includes/provider.php:415
825
+ #, php-format
826
+ msgid "This %s account is already linked to other user."
827
+ msgstr ""
828
+
829
+ #: nextend-facebook-connect/includes/provider.php:557
830
+ #: nextend-facebook-connect/includes/provider.php:701
831
+ msgid "Authentication error"
832
+ msgstr ""
833
+
834
+ #: nextend-facebook-connect/includes/provider.php:566
835
+ msgid "Unlink successful."
836
+ msgstr ""
837
+
838
+ #: nextend-facebook-connect/includes/provider.php:847
839
+ #: nextend-facebook-connect/includes/provider.php:854
840
+ msgid "The test was successful"
841
+ msgstr ""
842
+
843
+ #: nextend-facebook-connect/includes/provider.php:895
844
+ msgid "Authentication failed"
845
+ msgstr ""
846
+
847
+ #: nextend-facebook-connect/includes/provider.php:966
848
+ msgid "Your configuration needs to be verified"
849
+ msgstr ""
850
+
851
+ #: nextend-facebook-connect/includes/provider.php:967
852
+ msgid ""
853
+ "Before you can start letting your users register with your app it needs to "
854
+ "be tested. This test makes sure that no users will have troubles with the "
855
+ "login and registration process. <br> If you see error message in the popup "
856
+ "check the copied ID and secret or the app itself. Otherwise your settings "
857
+ "are fine."
858
+ msgstr ""
859
+
860
+ #: nextend-facebook-connect/includes/provider.php:973
861
+ msgid "Please save your changes to verify settings."
862
+ msgstr ""
863
+
864
+ #: nextend-facebook-connect/includes/provider.php:981
865
+ msgid "Works Fine"
866
+ msgstr ""
867
+
868
+ #: nextend-facebook-connect/includes/provider.php:995
869
+ #, php-format
870
+ msgid ""
871
+ "This provider is currently disabled, which means that users can’t register "
872
+ "or login via their %s account."
873
+ msgstr ""
874
+
875
+ #: nextend-facebook-connect/includes/provider.php:998
876
+ #, php-format
877
+ msgid ""
878
+ "This provider works fine, but you can test it again. If you don’t want to "
879
+ "let users register or login with %s anymore you can disable it."
880
+ msgstr ""
881
+
882
+ #: nextend-facebook-connect/includes/provider.php:1001
883
+ #, php-format
884
+ msgid ""
885
+ "This provider is currently enabled, which means that users can register or "
886
+ "login via their %s account."
887
+ msgstr ""
888
+
889
+ #: nextend-facebook-connect/includes/provider.php:1009
890
+ msgid "Verify Settings Again"
891
+ msgstr ""
892
+
893
+ #: nextend-facebook-connect/includes/provider.php:1010
894
+ msgid "Please save your changes before testing."
895
+ msgstr ""
896
+
897
+ #: nextend-facebook-connect/nextend-social-login.php:22
898
+ #: nextend-facebook-connect/nextend-social-login.php:30
899
+ #, php-format
900
+ msgid "Please update %1$s to version %2$s or newer."
901
+ msgstr ""
902
+
903
+ #: nextend-facebook-connect/nextend-social-login.php:22
904
+ #: nextend-facebook-connect/nextend-social-login.php:30
905
+ msgid "Update now!"
906
+ msgstr ""
907
+
908
+ #: nextend-facebook-connect/nextend-social-login.php:325
909
+ #, php-format
910
+ msgid ""
911
+ "%s took the place of Nextend Google Connect. You can delete Nextend Google "
912
+ "Connect as it is not needed anymore."
913
+ msgstr ""
914
+
915
+ #: nextend-facebook-connect/nextend-social-login.php:336
916
+ #, php-format
917
+ msgid ""
918
+ "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
919
+ "Connect as it is not needed anymore."
920
+ msgstr ""
921
+
922
+ #: nextend-facebook-connect/nextend-social-login.php:449
923
+ msgid "You have logged in successfully."
924
+ msgstr ""
925
+
926
+ #: nextend-facebook-connect/nextend-social-login.php:573
927
+ #: nextend-facebook-connect/nextend-social-login.php:892
928
+ msgid "Social Login"
929
+ msgstr ""
930
+
931
+ #: nextend-facebook-connect/nextend-social-login.php:876
932
+ msgid "Social Accounts"
933
+ msgstr ""
934
+
935
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:6
936
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:12
937
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:6
938
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:14
939
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:6
940
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:14
941
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:6
942
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:13
943
+ #, php-format
944
+ msgid "Navigate to %s"
945
+ msgstr ""
946
+
947
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:7
948
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
949
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:7
950
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
951
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:7
952
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
953
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:7
954
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
955
+ #, php-format
956
+ msgid "Log in with your %s credentials if you are not logged in"
957
+ msgstr ""
958
+
959
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
960
+ #, php-format
961
+ msgid "Click on the App with App ID: %s"
962
+ msgstr ""
963
+
964
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
965
+ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
966
+ msgstr ""
967
+
968
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
969
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
970
+ #, php-format
971
+ msgid ""
972
+ "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
973
+ msgstr ""
974
+
975
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
976
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
977
+ msgid "Click on \"Save Changes\""
978
+ msgstr ""
979
+
980
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:7
981
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
982
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
983
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
984
+ #, php-format
985
+ msgid ""
986
+ "To allow your visitors to log in with their %1$s account, first you must "
987
+ "create a %1$s App. The following guide will help you through the %1$s App "
988
+ "creation process. After you have created your %1$s App, head over to "
989
+ "\"Settings\" and configure the given \"%2$s\" and \"%3$s\" according to your "
990
+ "%1$s App."
991
+ msgstr ""
992
+
993
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:9
994
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
995
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
996
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
997
+ #, php-format
998
+ msgctxt "App creation"
999
+ msgid "Create %s"
1000
+ msgstr ""
1001
+
1002
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:14
1003
+ msgid "Click on the \"Add a New App\" button"
1004
+ msgstr ""
1005
+
1006
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:15
1007
+ msgid "Fill \"Display Name\" and \"Contact Email\""
1008
+ msgstr ""
1009
+
1010
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:16
1011
+ msgid "Click on blue \"Create App ID\" button"
1012
+ msgstr ""
1013
+
1014
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
1015
+ msgid ""
1016
+ "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1017
+ "button"
1018
+ msgstr ""
1019
+
1020
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:18
1021
+ msgid "Choose Web"
1022
+ msgstr ""
1023
+
1024
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1025
+ #, php-format
1026
+ msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1027
+ msgstr ""
1028
+
1029
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:20
1030
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
1031
+ msgid "Click on \"Save\""
1032
+ msgstr ""
1033
+
1034
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1035
+ msgid "In the left sidebar, click on \"Facebook Login\""
1036
+ msgstr ""
1037
+
1038
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1039
+ msgid "In the top of the left sidebar, click on \"Settings\""
1040
+ msgstr ""
1041
+
1042
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1043
+ msgid ""
1044
+ "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1045
+ "click on the \"Show\" button. These will be needed in plugin's settings."
1046
+ msgstr ""
1047
+
1048
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1049
+ msgid "Enter your domain name to the App Domains"
1050
+ msgstr ""
1051
+
1052
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1053
+ msgid ""
1054
+ "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1055
+ "accessible privacy policy that explains what data you are collecting and how "
1056
+ "you will use that data."
1057
+ msgstr ""
1058
+
1059
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1060
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:17
1061
+ #: nextend-facebook-connect/providers/google/admin/import.php:17
1062
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:17
1063
+ msgid "Save your changes."
1064
+ msgstr ""
1065
+
1066
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1067
+ msgid ""
1068
+ "Your application is currently private, which means that only you can log in "
1069
+ "with it. In the left sidebar choose \"App Review\" and make your App public"
1070
+ msgstr ""
1071
+
1072
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1073
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
1074
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
1075
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
1076
+ #, php-format
1077
+ msgid "I am done setting up my %s"
1078
+ msgstr ""
1079
+
1080
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:7
1081
+ msgid "Import Facebook configuration"
1082
+ msgstr ""
1083
+
1084
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:8
1085
+ #: nextend-facebook-connect/providers/google/admin/import.php:8
1086
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:8
1087
+ msgid "Be sure to read the following notices before you proceed."
1088
+ msgstr ""
1089
+
1090
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:10
1091
+ #: nextend-facebook-connect/providers/google/admin/import.php:10
1092
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:10
1093
+ msgid "Important steps before the import"
1094
+ msgstr ""
1095
+
1096
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:11
1097
+ #: nextend-facebook-connect/providers/google/admin/import.php:11
1098
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:11
1099
+ msgid ""
1100
+ "Make sure that the redirect URI for your app is correct before proceeding."
1101
+ msgstr ""
1102
+
1103
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:13
1104
+ #: nextend-facebook-connect/providers/google/admin/import.php:13
1105
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:13
1106
+ #, php-format
1107
+ msgid "Visit %s."
1108
+ msgstr ""
1109
+
1110
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:14
1111
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:14
1112
+ msgid "Select your app."
1113
+ msgstr ""
1114
+
1115
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:15
1116
+ msgid ""
1117
+ "Go to the Settings menu which you can find below the Facebook Login in the "
1118
+ "left menu."
1119
+ msgstr ""
1120
+
1121
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:16
1122
+ #: nextend-facebook-connect/providers/google/admin/import.php:16
1123
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:16
1124
+ #, php-format
1125
+ msgid "Make sure that the \"%1$s\" field contains %2$s"
1126
+ msgstr ""
1127
+
1128
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:20
1129
+ #: nextend-facebook-connect/providers/google/admin/import.php:20
1130
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:20
1131
+ msgid "The following settings will be imported:"
1132
+ msgstr ""
1133
+
1134
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:22
1135
+ #: nextend-facebook-connect/providers/google/admin/import.php:22
1136
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:22
1137
+ msgid "Your old API configurations"
1138
+ msgstr ""
1139
+
1140
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:23
1141
+ #: nextend-facebook-connect/providers/google/admin/import.php:23
1142
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:23
1143
+ msgid "The user prefix you set"
1144
+ msgstr ""
1145
+
1146
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:26
1147
+ #: nextend-facebook-connect/providers/google/admin/import.php:26
1148
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:26
1149
+ msgid "Create a backup of the old settings"
1150
+ msgstr ""
1151
+
1152
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:29
1153
+ #: nextend-facebook-connect/providers/google/admin/import.php:29
1154
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:29
1155
+ msgid "Other changes"
1156
+ msgstr ""
1157
+
1158
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:31
1159
+ #: nextend-facebook-connect/providers/google/admin/import.php:31
1160
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:31
1161
+ msgid ""
1162
+ "The custom redirect URI is now handled globally for all providers, so it "
1163
+ "won't be imported from the previous version. Visit \"Nextend Social Login > "
1164
+ "Global settings\" to set the new redirect URIs."
1165
+ msgstr ""
1166
+
1167
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:32
1168
+ #: nextend-facebook-connect/providers/google/admin/import.php:32
1169
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:32
1170
+ msgid ""
1171
+ "The login button's layout will be changed to a new, more modern look. If you "
1172
+ "used any custom buttons that won't be imported."
1173
+ msgstr ""
1174
+
1175
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:33
1176
+ #: nextend-facebook-connect/providers/google/admin/import.php:33
1177
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:33
1178
+ msgid ""
1179
+ "The old version's PHP functions are not available anymore. This means if you "
1180
+ "used any custom codes where you used these old functions, you need to remove "
1181
+ "them."
1182
+ msgstr ""
1183
+
1184
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:35
1185
+ #: nextend-facebook-connect/providers/google/admin/import.php:35
1186
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:35
1187
+ msgid ""
1188
+ "After the importing process finishes, you will need to <b>test</b> your app "
1189
+ "and <b>enable</b> the provider. You can do both in the next screen."
1190
+ msgstr ""
1191
+
1192
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:42
1193
+ #: nextend-facebook-connect/providers/google/admin/import.php:42
1194
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:43
1195
+ msgid "Import Configuration"
1196
+ msgstr ""
1197
+
1198
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:26
1199
+ msgid "App ID"
1200
+ msgstr ""
1201
+
1202
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:27
1203
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:39
1204
+ #: nextend-facebook-connect/providers/google/admin/settings.php:26
1205
+ #: nextend-facebook-connect/providers/google/admin/settings.php:39
1206
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:26
1207
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:25
1208
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:37
1209
+ msgid "Required"
1210
+ msgstr ""
1211
+
1212
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:32
1213
+ #: nextend-facebook-connect/providers/google/admin/settings.php:33
1214
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:31
1215
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:31
1216
+ #, php-format
1217
+ msgid ""
1218
+ "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1219
+ "\">Getting Started</a>"
1220
+ msgstr ""
1221
+
1222
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:38
1223
+ msgid "App Secret"
1224
+ msgstr ""
1225
+
1226
+ #: nextend-facebook-connect/providers/facebook/facebook.php:49
1227
+ msgid "Continue with <b>Facebook</b>"
1228
+ msgstr ""
1229
+
1230
+ #: nextend-facebook-connect/providers/facebook/facebook.php:50
1231
+ msgid "Link account with <b>Facebook</b>"
1232
+ msgstr ""
1233
+
1234
+ #: nextend-facebook-connect/providers/facebook/facebook.php:51
1235
+ msgid "Unlink account from <b>Facebook</b>"
1236
+ msgstr ""
1237
+
1238
+ #: nextend-facebook-connect/providers/facebook/facebook.php:109
1239
+ #: nextend-facebook-connect/providers/google/google.php:71
1240
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
1241
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1242
+ #, php-format
1243
+ msgid ""
1244
+ "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1245
+ msgstr ""
1246
+
1247
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1248
+ msgid "Click on the \"Credentials\" in the left hand menu"
1249
+ msgstr ""
1250
+
1251
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1252
+ #, php-format
1253
+ msgid "Click on OAuth 2.0 client ID: %s"
1254
+ msgstr ""
1255
+
1256
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1257
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1258
+ #, php-format
1259
+ msgid ""
1260
+ "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1261
+ msgstr ""
1262
+
1263
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1264
+ msgid ""
1265
+ "If you don't have a project yet, you'll need to create one. You can do this "
1266
+ "by clicking on the blue \"Create project\" button on the right side"
1267
+ msgstr ""
1268
+
1269
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1270
+ msgid "Name your project and then click on the Create button"
1271
+ msgstr ""
1272
+
1273
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1274
+ msgid "Once you have a project, you'll end up in the dashboard."
1275
+ msgstr ""
1276
+
1277
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1278
+ msgid ""
1279
+ "Click on the \"Credentials\" in the left hand menu to create new API "
1280
+ "credentials"
1281
+ msgstr ""
1282
+
1283
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
1284
+ msgid ""
1285
+ "Go to the OAuth consent screen tab and enter a product name and provide the "
1286
+ "Privacy Policy URL, then click on the save button."
1287
+ msgstr ""
1288
+
1289
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1290
+ msgid ""
1291
+ "Go back to the Credentials tab and locate the small box at the middle. Click "
1292
+ "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
1293
+ "from the dropdown list."
1294
+ msgstr ""
1295
+
1296
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1297
+ msgid "Your application type should be \"Web application\""
1298
+ msgstr ""
1299
+
1300
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1301
+ msgid "Name your application"
1302
+ msgstr ""
1303
+
1304
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1305
+ msgid "Click on the Create button"
1306
+ msgstr ""
1307
+
1308
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1309
+ msgid ""
1310
+ "A modal should pop up with your credentials. If that doesn't happen, go to "
1311
+ "the Credentials in the left hand menu and select your app by clicking on its "
1312
+ "name and you'll be able to copy-paste the Client ID and Client Secret from "
1313
+ "there."
1314
+ msgstr ""
1315
+
1316
+ #: nextend-facebook-connect/providers/google/admin/import.php:7
1317
+ msgid "Import Google configuration"
1318
+ msgstr ""
1319
+
1320
+ #: nextend-facebook-connect/providers/google/admin/import.php:14
1321
+ msgid "If you have more projects, select the one where your app is."
1322
+ msgstr ""
1323
+
1324
+ #: nextend-facebook-connect/providers/google/admin/import.php:15
1325
+ msgid "Click on Credentials at the left-hand menu then select your app."
1326
+ msgstr ""
1327
+
1328
+ #: nextend-facebook-connect/providers/google/admin/settings.php:25
1329
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:24
1330
+ msgid "Client ID"
1331
+ msgstr ""
1332
+
1333
+ #: nextend-facebook-connect/providers/google/admin/settings.php:38
1334
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:36
1335
+ msgid "Client Secret"
1336
+ msgstr ""
1337
+
1338
+ #: nextend-facebook-connect/providers/google/google.php:38
1339
+ msgid "Continue with <b>Google</b>"
1340
+ msgstr ""
1341
+
1342
+ #: nextend-facebook-connect/providers/google/google.php:39
1343
+ msgid "Link account with <b>Google</b>"
1344
+ msgstr ""
1345
+
1346
+ #: nextend-facebook-connect/providers/google/google.php:40
1347
+ msgid "Unlink account from <b>Google</b>"
1348
+ msgstr ""
1349
+
1350
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1351
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1352
+ msgid "Click on the App"
1353
+ msgstr ""
1354
+
1355
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1356
+ msgid "Click on the \"Settings\" tab"
1357
+ msgstr ""
1358
+
1359
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1360
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1361
+ #, php-format
1362
+ msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
1363
+ msgstr ""
1364
+
1365
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1366
+ msgid "Click on \"Update Settings\""
1367
+ msgstr ""
1368
+
1369
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1370
+ msgid "Click on the \"Create New App\" button"
1371
+ msgstr ""
1372
+
1373
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1374
+ #, php-format
1375
+ msgid ""
1376
+ "Fill the name and description fields. Then enter your site's URL to the "
1377
+ "Website field: <b>%s</b>"
1378
+ msgstr ""
1379
+
1380
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1381
+ msgid "Accept the Twitter Developer Agreement"
1382
+ msgstr ""
1383
+
1384
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1385
+ msgid ""
1386
+ "Create your application by clicking on the Create your Twitter application "
1387
+ "button"
1388
+ msgstr ""
1389
+
1390
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1391
+ msgid ""
1392
+ "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
1393
+ msgstr ""
1394
+
1395
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:7
1396
+ msgid "Import Twitter configuration"
1397
+ msgstr ""
1398
+
1399
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:15
1400
+ msgid "Go to the Settings tab."
1401
+ msgstr ""
1402
+
1403
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:25
1404
+ msgid "Consumer Key"
1405
+ msgstr ""
1406
+
1407
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:36
1408
+ msgid "Consumer Secret"
1409
+ msgstr ""
1410
+
1411
+ #: nextend-facebook-connect/providers/twitter/twitter.php:38
1412
+ msgid "Continue with <b>Twitter</b>"
1413
+ msgstr ""
1414
+
1415
+ #: nextend-facebook-connect/providers/twitter/twitter.php:39
1416
+ msgid "Link account with <b>Twitter</b>"
1417
+ msgstr ""
1418
+
1419
+ #: nextend-facebook-connect/providers/twitter/twitter.php:40
1420
+ msgid "Unlink account from <b>Twitter</b>"
1421
+ msgstr ""
1422
+
1423
+ #: nextend-facebook-connect/widget.php:10
1424
+ #, php-format
1425
+ msgid "%s Buttons"
1426
+ msgstr ""
1427
+
1428
+ #: nextend-facebook-connect/widget.php:22
1429
+ msgid "Title:"
1430
+ msgstr ""
1431
+
1432
+ #: nextend-facebook-connect/widget.php:30
1433
+ msgid "Button style:"
1434
+ msgstr ""
1435
+
1436
+ #: nextend-social-login-pro/class-provider-extension.php:78
1437
+ msgid "Social login is not allowed with this role!"
1438
+ msgstr ""
1439
+
1440
+ #: nextend-social-login-pro/class-provider-extension.php:155
1441
+ #: nextend-social-login-pro/class-provider-extension.php:157
1442
+ #: nextend-social-login-pro/class-provider-extension.php:160
1443
+ #: nextend-social-login-pro/class-provider-extension.php:166
1444
+ #: nextend-social-login-pro/class-provider-extension.php:179
1445
+ #: nextend-social-login-pro/class-provider-extension.php:181
1446
+ #: nextend-social-login-pro/class-provider-extension.php:184
1447
+ msgid "ERROR"
1448
+ msgstr ""
1449
+
1450
+ #: nextend-social-login-pro/class-provider-extension.php:155
1451
+ msgid "Please enter a username."
1452
+ msgstr ""
1453
+
1454
+ #: nextend-social-login-pro/class-provider-extension.php:157
1455
+ msgid ""
1456
+ "This username is invalid because it uses illegal characters. Please enter a "
1457
+ "valid username."
1458
+ msgstr ""
1459
+
1460
+ #: nextend-social-login-pro/class-provider-extension.php:160
1461
+ msgid "This username is already registered. Please choose another one."
1462
+ msgstr ""
1463
+
1464
+ #: nextend-social-login-pro/class-provider-extension.php:166
1465
+ msgid "Sorry, that username is not allowed."
1466
+ msgstr ""
1467
+
1468
+ #: nextend-social-login-pro/class-provider-extension.php:179
1469
+ msgid "Please enter an email address."
1470
+ msgstr ""
1471
+
1472
+ #: nextend-social-login-pro/class-provider-extension.php:181
1473
+ msgid "The email address isn&#8217;t correct."
1474
+ msgstr ""
1475
+
1476
+ #: nextend-social-login-pro/class-provider-extension.php:184
1477
+ msgid "This email is already registered, please choose another one."
1478
+ msgstr ""
1479
+
1480
+ #: nextend-social-login-pro/class-provider-extension.php:238
1481
+ msgid "Registration Form"
1482
+ msgstr ""
1483
+
1484
+ #: nextend-social-login-pro/class-provider-extension.php:238
1485
+ msgid "Register For This Site!"
1486
+ msgstr ""
1487
+
1488
+ #: nextend-social-login-pro/class-provider-extension.php:263
1489
+ msgid "Username"
1490
+ msgstr ""
1491
+
1492
+ #: nextend-social-login-pro/class-provider-extension.php:270
1493
+ msgid "Email"
1494
+ msgstr ""
1495
+
1496
+ #: nextend-social-login-pro/class-provider-extension.php:275
1497
+ msgid "Registration confirmation will be emailed to you."
1498
+ msgstr ""
1499
+
1500
+ #: nextend-social-login-pro/class-provider-extension.php:279
1501
+ msgid "Register"
1502
+ msgstr ""
1503
+
1504
+ #: nextend-social-login-pro/class-provider-extension.php:373
1505
+ msgid ""
1506
+ "This email is already registered, please login in to your account to link "
1507
+ "with Facebook."
1508
+ msgstr ""
1509
+
1510
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1511
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
1512
+ #, php-format
1513
+ msgid ""
1514
+ "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</b>"
1515
+ msgstr ""
1516
+
1517
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1518
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
1519
+ msgid "Hit update to save the changes"
1520
+ msgstr ""
1521
+
1522
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1523
+ msgid "Locate the yellow \"Create application\" button and click on it."
1524
+ msgstr ""
1525
+
1526
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1527
+ msgid "Fill the fields marked with *"
1528
+ msgstr ""
1529
+
1530
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
1531
+ #, php-format
1532
+ msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
1533
+ msgstr ""
1534
+
1535
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
1536
+ msgid "Accept the Terms of use and hit Submit"
1537
+ msgstr ""
1538
+
1539
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
1540
+ msgid "Find the necessary Authentication Keys under the Authentication menu"
1541
+ msgstr ""
1542
+
1543
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
1544
+ msgid ""
1545
+ "You probably want to enable the \"r_emailaddress\" under the Default "
1546
+ "Application Permissions"
1547
+ msgstr ""
1548
+
1549
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
1550
+ msgid "Continue with <b>LinkedIn</b>"
1551
+ msgstr ""
1552
+
1553
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
1554
+ msgid "Link account with <b>LinkedIn</b>"
1555
+ msgstr ""
1556
+
1557
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
1558
+ msgid "Unlink account from <b>LinkedIn</b>"
1559
+ msgstr ""
1560
+
1561
+ #: nextend-social-login-pro/template-parts/embedded-login-layout-above-separator.php:8
1562
+ #: nextend-social-login-pro/template-parts/embedded-login-layout-below-separator.php:8
1563
+ #: nextend-social-login-pro/template-parts/login-layout-above-separator.php:10
1564
+ #: nextend-social-login-pro/template-parts/login-layout-below-separator.php:14
1565
+ msgid "OR"
1566
+ msgstr "OU"
1567
+
1568
+ #: nextend-social-login-pro/template-parts/woocommerce-edit-account-after.php:1
1569
+ #: nextend-social-login-pro/template-parts/woocommerce-edit-account-before.php:1
1570
+ msgid "Social accounts"
1571
+ msgstr ""
languages/nextend-facebook-connect-hu_HU.mo CHANGED
Binary file
languages/nextend-facebook-connect-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2018-02-27 18:12+0100\n"
5
- "PO-Revision-Date: 2018-02-27 18:12+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
@@ -17,428 +17,310 @@ msgstr ""
17
  "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
18
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
19
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n"
20
- "X-Poedit-SearchPath-0: nextend-social-connect-pro-new\n"
21
- "X-Poedit-SearchPath-1: nextend-facebook-connect-new\n"
22
- "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect-new/providers/"
23
- "twitter/compat\n"
24
- "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect-new/providers/google/"
 
 
25
  "compat\n"
26
- "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect-new/providers/"
27
- "facebook/compat\n"
28
 
29
- #: nextend-facebook-connect-new/admin/admin.php:133
30
  #, php-format
31
- msgid "%s needs the CURL PHP extension."
32
- msgstr "A %s-nak szüksége van a CURL PHP kiegészítőre."
33
 
34
- #: nextend-facebook-connect-new/admin/admin.php:133
35
- #: nextend-facebook-connect-new/admin/admin.php:138
36
- #: nextend-facebook-connect-new/admin/admin.php:148
37
  msgid "Please contact your server administrator and ask for solution!"
38
  msgstr ""
39
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
40
 
41
- #: nextend-facebook-connect-new/admin/admin.php:138
42
- msgid "Https protocol is not supported or disabled in CURL."
43
- msgstr "A HTTPS protokol nincs támogat a CURL-ben vagy ki van kapcsolva."
44
-
45
- #: nextend-facebook-connect-new/admin/admin.php:148
46
- #, php-format
47
- msgid "%s needs json_decode function."
48
- msgstr "A %s-nak szüksége van a json_decode függvényre."
49
-
50
- #: nextend-facebook-connect-new/admin/admin.php:166
51
- #: nextend-facebook-connect-new/admin/admin.php:206
52
  msgid "Settings saved."
53
  msgstr "Beállítások elmentve."
54
 
55
- #: nextend-facebook-connect-new/admin/admin.php:174
56
  msgid "The authorization was successful"
57
  msgstr "Az engedélyezés sikeres volt"
58
 
59
- #: nextend-facebook-connect-new/admin/admin.php:185
60
  msgid "Deauthorize completed."
61
  msgstr "A engedély visszavonása befejeződött."
62
 
63
- #: nextend-facebook-connect-new/admin/admin.php:297
64
- #: nextend-facebook-connect-new/admin/templates-provider/menu.php:10
65
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:95
66
- #: nextend-facebook-connect-new/admin/templates/providers.php:78
67
- #: nextend-facebook-connect-new/admin/templates/providers.php:90
68
  msgid "Settings"
69
  msgstr "Beállítások"
70
 
71
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  msgid "Login label"
73
  msgstr "Bejelentkezés felirat"
74
 
75
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:77
76
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:88
77
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:99
78
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:128
79
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:158
80
  msgid "Reset to default"
81
  msgstr "Alapbeállítás visszaállítása"
82
 
83
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:82
84
  msgid "Link label"
85
  msgstr "Profil összekapcsolás felirat"
86
 
87
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:94
88
  msgid "Unlink label"
89
  msgstr "Profile szétkapcsolás felirat"
90
 
91
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:105
92
  msgid "Default button"
93
  msgstr "Alap gomb"
94
 
95
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:121
96
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:151
97
  msgid "Use custom button"
98
  msgstr "Egyedi gomb használata"
99
 
100
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:128
101
  #, php-format
102
  msgid "Use the %s in your custom button's code to make the label show up."
103
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
104
 
105
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:136
106
  msgid "Icon button"
107
  msgstr "Ikon gomb"
108
 
109
- #: nextend-facebook-connect-new/admin/templates-provider/buttons.php:167
110
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:122
111
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:232
112
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:103
113
- #: nextend-facebook-connect-new/providers/facebook/admin/settings.php:48
114
- #: nextend-facebook-connect-new/providers/google/admin/settings.php:47
115
- #: nextend-facebook-connect-new/providers/twitter/admin/settings.php:46
116
- #: nextend-social-connect-pro-new/providers/linkedin/admin/settings.php:45
 
 
 
 
 
117
  msgid "Save Changes"
118
  msgstr "Változtatások Mentése"
119
 
120
- #: nextend-facebook-connect-new/admin/templates-provider/menu.php:8
121
- #: nextend-facebook-connect-new/admin/templates/providers.php:58
122
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:7
123
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:7
124
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:6
125
  msgid "Getting Started"
126
  msgstr "Első Lépések"
127
 
128
- #: nextend-facebook-connect-new/admin/templates-provider/menu.php:12
129
  msgid "Buttons"
130
  msgstr "Gombok"
131
 
132
- #: nextend-facebook-connect-new/admin/templates-provider/menu.php:14
133
  msgid "Usage"
134
  msgstr "Használat"
135
 
136
- #: nextend-facebook-connect-new/admin/templates-provider/settings-other.php:9
137
  msgid "Other settings"
138
  msgstr "Egyéb beállítások"
139
 
140
- #: nextend-facebook-connect-new/admin/templates-provider/settings-other.php:14
141
  msgid "Username prefix on register"
142
  msgstr "Felhasználónév előtag regisztrációkor"
143
 
144
- #: nextend-facebook-connect-new/admin/templates-provider/settings-other.php:20
145
  msgid "Fallback username prefix on register"
146
  msgstr ""
147
 
148
- #: nextend-facebook-connect-new/admin/templates-provider/settings-other.php:23
149
  msgid "Used when username is invalid"
150
  msgstr ""
151
 
152
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:16
153
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:14
 
154
  msgid "PRO settings"
155
  msgstr "PRO beállítások"
156
 
157
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:26
158
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:30
159
  msgid "Ask E-mail on registration"
160
  msgstr "E-mail kérésére regisztrációkor"
161
 
162
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:33
163
  msgid "Never"
164
  msgstr "Soha"
165
 
166
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:36
167
  msgid "When email is not provided or empty"
168
  msgstr "Amikor a e-mail cím nem elérhető"
169
 
170
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:39
171
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:54
172
  msgid "Always"
173
  msgstr "Mindig"
174
 
175
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:44
176
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:48
177
  msgid "Ask Username on registration"
178
  msgstr "Felhasználónév kérése regisztrációkor"
179
 
180
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:51
181
  msgid "Never, generate automatically"
182
  msgstr "Soha, automata generálás"
183
 
184
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:59
185
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:63
186
  msgid "Automatically connect the existing account upon registration"
187
  msgstr "Fiók csatlakoztatása, ha regisztráció esetén már létezik a fiók"
188
 
189
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:67
190
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:50
191
- #: nextend-facebook-connect-new/admin/templates/providers.php:33
192
- #: nextend-facebook-connect-new/includes/provider.php:900
193
  msgid "Disabled"
194
  msgstr "Kikapcsolva"
195
 
196
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:70
197
  msgid "Automatic, based on email address"
198
  msgstr "Automatán, e-mail cím egyezés esetén"
199
 
200
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:75
201
  msgid "Disable login for the selected roles"
202
  msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek"
203
 
204
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:95
205
  msgid "Default roles for user who registered with this provider"
206
  msgstr "Alap szerepkör, aki ezzel a szolgáltatóval registrál"
207
 
208
- #: nextend-facebook-connect-new/admin/templates-provider/settings-pro.php:103
209
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:31
210
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:107
211
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:192
212
- #: nextend-facebook-connect-new/widget.php:34
 
 
213
  msgid "Default"
214
  msgstr "Alapbeállítás"
215
 
216
- #: nextend-facebook-connect-new/admin/templates-provider/usage.php:7
217
  msgid "Shortcode"
218
  msgstr ""
219
 
220
- #: nextend-facebook-connect-new/admin/templates-provider/usage.php:21
221
  msgid "Simple link"
222
  msgstr "Egyszerű link"
223
 
224
- #: nextend-facebook-connect-new/admin/templates-provider/usage.php:24
225
  msgid "Click here to login or register"
226
  msgstr "Kattints ide a belépéshez vagy a regisztrációhoz"
227
 
228
- #: nextend-facebook-connect-new/admin/templates-provider/usage.php:29
229
  msgid "Image button"
230
  msgstr "Gomb képpel"
231
 
232
- #: nextend-facebook-connect-new/admin/templates-provider/usage.php:32
233
  msgid "Image url"
234
  msgstr "Kép URL"
235
 
236
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:23
237
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:27
238
- msgid "Login form button style"
239
- msgstr "Login gomb stílusa"
240
-
241
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:37
242
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:113
243
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:198
244
- #: nextend-facebook-connect-new/widget.php:39
245
- msgid "Icon"
246
- msgstr "Imon"
247
-
248
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:44
249
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:48
250
- msgid "Login layout"
251
- msgstr "Login elrendezése"
252
-
253
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:52
254
- msgid "Below"
255
- msgstr "Alul"
256
-
257
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:58
258
- msgid "Below with separator"
259
- msgstr "Alul, elválasztóval"
260
-
261
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:64
262
- msgid "Below and floating"
263
- msgstr "Alul lebegve"
264
-
265
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:70
266
- msgid "Above"
267
- msgstr "Felül"
268
-
269
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:76
270
- msgid "Above with separator"
271
- msgstr "Felül, elválasztóval"
272
-
273
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:83
274
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:87
275
- msgid "Comment login button"
276
- msgstr "Belépés gomb a kommenteknél"
277
-
278
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:90
279
- msgid "Show"
280
- msgstr "Megjelenít"
281
-
282
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:93
283
- msgid "Hide"
284
- msgstr "Elrejt"
285
-
286
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:95
287
- #, php-format
288
- msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
289
  msgstr ""
290
- "Ahhoz, hogy ez a funkció működjön, be kell kapcsolnod a ' %1$s > %2$s > %3$s "
291
- "'-t."
292
 
293
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:95
294
- msgid "Discussion"
295
  msgstr ""
296
 
297
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:95
298
- msgid "Users must be registered and logged in to comment"
299
  msgstr ""
300
 
301
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:99
302
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:103
303
- msgid "Comment button style"
304
- msgstr "Gomb stílusa a kommenteknél"
305
-
306
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:120
307
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:124
308
- msgid "WooCommerce login form"
309
- msgstr "WooCommerce belépési űrlap"
310
-
311
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:127
312
- msgid "No Connect button in login form"
313
- msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
314
-
315
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:130
316
- msgid "Connect button before login form"
317
- msgstr "Belépés gomb a belépési űrlap előtt"
318
-
319
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:131
320
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:136
321
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:154
322
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:159
323
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:173
324
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:178
325
- msgid "Action:"
326
- msgstr "Action:"
327
-
328
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:135
329
- msgid "Connect button after login form"
330
- msgstr "Belépés gomb a belépési űrlap után"
331
-
332
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:143
333
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:147
334
- msgid "WooCommerce billing form"
335
- msgstr "WooCommerce számlázási űrlap"
336
-
337
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:150
338
- msgid "No Connect button in billing form"
339
- msgstr "Ne legyen összekapcsoló gomb a számlázási űrlapnál"
340
-
341
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:153
342
- msgid "Connect button before billing form"
343
- msgstr "Belépés gomb a számlázási űrlap előtt"
344
-
345
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:158
346
- msgid "Connect button after billing form"
347
- msgstr "Belépés gomb a számlázási űrlapon"
348
-
349
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:165
350
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:169
351
- msgid "WooCommerce account details"
352
- msgstr "WooCommerce fiók részletes beállítások"
353
-
354
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:172
355
- msgid "Link buttons before account details"
356
- msgstr "Összekapcsoló gombok a profil részletes beállításai előtt"
357
-
358
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:177
359
- msgid "Link buttons after account details"
360
- msgstr "Összekapcsoló gombok a profil részletes beállításai után"
361
-
362
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:184
363
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:188
364
- msgid "WooCommerce button style"
365
- msgstr "WooCommerce gomb stílusa"
366
-
367
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:205
368
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:209
369
- msgid "Registration notification sent to"
370
- msgstr ""
371
-
372
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:212
373
- msgid "WordPress default"
374
- msgstr ""
375
-
376
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:215
377
- msgid "Nobody"
378
- msgstr ""
379
 
380
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:218
381
- msgid "User"
382
  msgstr ""
383
 
384
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:221
385
- msgid "Admin"
386
  msgstr ""
387
 
388
- #: nextend-facebook-connect-new/admin/templates/global-settings-pro.php:224
389
- msgid "User and Admin"
390
  msgstr ""
391
 
392
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:43
393
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:47
394
- msgid "Debug mode"
395
- msgstr "Debug mód"
396
-
397
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:53
398
- #: nextend-facebook-connect-new/admin/templates/providers.php:36
399
- #: nextend-facebook-connect-new/includes/provider.php:903
400
- msgid "Enabled"
401
- msgstr "Bekapcsolva"
402
-
403
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:59
404
- msgid "Fixed redirect url for login"
405
- msgstr "Fix átirányítási link belépésnél"
406
-
407
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:72
408
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:93
409
- msgid "Use custom"
410
- msgstr "Egyedi gomb használata"
411
-
412
- #: nextend-facebook-connect-new/admin/templates/global-settings.php:80
413
- msgid "Fixed redirect url for register"
414
- msgstr "Fix átirányítási link regisztrációnál"
415
-
416
- #: nextend-facebook-connect-new/admin/templates/header.php:14
417
  msgid "Docs"
418
  msgstr "Dokumentáció"
419
 
420
- #: nextend-facebook-connect-new/admin/templates/header.php:17
421
  msgid "Support"
422
  msgstr "Támogatás"
423
 
424
- #: nextend-facebook-connect-new/admin/templates/header.php:20
425
- #: nextend-facebook-connect-new/admin/templates/menu.php:12
426
  msgid "Pro Addon"
427
  msgstr "Pro Kiegészítő"
428
 
429
- #: nextend-facebook-connect-new/admin/templates/menu.php:6
430
  msgid "Providers"
431
  msgstr "Providerek"
432
 
433
- #: nextend-facebook-connect-new/admin/templates/menu.php:8
434
- msgid "Global Settings"
435
- msgstr "Általános beállítások"
436
-
437
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:13
438
  msgid "Error"
439
  msgstr "Hiba"
440
 
441
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:14
442
  msgid ""
443
  "You don’t have sufficient permissions to install and activate plugins. "
444
  "Please contact your site’s administrator!"
@@ -447,13 +329,13 @@ msgstr ""
447
  "Lépj kapcsolatba az oldalad adminisztrátorával a további teendőkkel "
448
  "kapcsolatban!"
449
 
450
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:22
451
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:32
452
- #: nextend-facebook-connect-new/admin/templates/pro.php:34
453
  msgid "Activate Pro Addon"
454
  msgstr "Pro Addon aktiválása"
455
 
456
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:23
457
  msgid ""
458
  "Pro Addon is installed but not activated. To be able to use the Pro "
459
  "features, you need to activate it."
@@ -461,61 +343,61 @@ msgstr ""
461
  "A Pro Kiegészítő telepítve van, de nincs aktiválva. Ahhoz, hogy használjasd "
462
  "a Pro funkciókat aktiválnod kell a Pro Kiegészítőt."
463
 
464
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:37
465
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:215
466
  msgid "Deauthorize Pro Addon"
467
  msgstr "Pro kiegészítő deaktiválása"
468
 
469
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:48
470
- #: nextend-facebook-connect-new/admin/templates/pro.php:43
471
  msgid "Pro Addon is not installed"
472
  msgstr "A Pro Kiegészítő nincs telepítve"
473
 
474
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:50
475
  msgid ""
476
  "To access the Pro features, you need to install and activate the Pro Addon."
477
  msgstr ""
478
  "Ahhoz, hogy hozzáférj a Pro funkciókhoz fel kell telepítened és aktiválnod "
479
  "kell a Pro Kiegészítőt."
480
 
481
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:59
482
  #, php-format
483
  msgid "Install %s now"
484
  msgstr ""
485
 
486
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:60
487
- #: nextend-facebook-connect-new/admin/templates/pro.php:47
488
  msgid "Install Pro Addon"
489
  msgstr "Pro Kiegészítő telepítése"
490
 
491
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:94
492
  msgid "Activating..."
493
  msgstr "Aktiválás..."
494
 
495
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:126
496
  msgid "Authorize your Pro Addon"
497
  msgstr "Aktiváld a Pro Kiegészítődet"
498
 
499
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:127
500
  msgid ""
501
  "To be able to use the Pro features, you need to authorize Nextend Social "
502
  "Connect Pro Addon. You can do this by clicking on the Authorize button below "
503
  "then select the related purchase."
504
  msgstr ""
505
 
506
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:132
507
  msgid "Authorize"
508
  msgstr "Aktiválás"
509
 
510
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:189
511
  msgid "License key"
512
  msgstr "Licensz kulcs"
513
 
514
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:206
515
  msgid "Pro Addon is installed and activated"
516
  msgstr "A Pro Kiegészítő telepítve és aktiválva"
517
 
518
- #: nextend-facebook-connect-new/admin/templates/pro-addon.php:208
519
  msgid ""
520
  "You installed and activated the Pro Addon. If you don’t want to use it "
521
  "anymore, you can deauthorize using the button below."
@@ -523,11 +405,11 @@ msgstr ""
523
  "A Pro Kiegészítő fel van telepítve és aktiválva van. Ha nem akarod tovább "
524
  "használni, visszavonhatod az aktiválást a lenti gombra kattintva."
525
 
526
- #: nextend-facebook-connect-new/admin/templates/pro.php:8
527
  msgid "Get Pro Addon to unlock more features"
528
  msgstr "Vásárold meg a Pro Kiegészítőt, hogy még több funkcióhoz juss"
529
 
530
- #: nextend-facebook-connect-new/admin/templates/pro.php:9
531
  #, php-format
532
  msgid ""
533
  "The features below are available in %s Pro Addon. Get it today and tweak the "
@@ -536,7 +418,7 @@ msgstr ""
536
  "Az alábbi funkciók a %s Pro Kiegészítőben érhetőek el. Vásárold meg még ma, "
537
  "hogy hozzáférj a fantasztikus új beállításokhoz."
538
 
539
- #: nextend-facebook-connect-new/admin/templates/pro.php:10
540
  msgid ""
541
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
542
  "you can purchase it using the button below."
@@ -544,82 +426,404 @@ msgstr ""
544
  "Ha már van licenszed engedélyezheted a Pro Kiegészítődet. Ha nincs licenszed "
545
  "vásárolhatsz a lenti gombra kattintva. "
546
 
547
- #: nextend-facebook-connect-new/admin/templates/pro.php:14
548
  msgid "Buy Pro Addon"
549
  msgstr "Vedd meg a Pro Kiegészítőt"
550
 
551
- #: nextend-facebook-connect-new/admin/templates/pro.php:16
552
  msgid "Authorize Pro Addon"
553
  msgstr "Pro Kiegészítő aktiválása"
554
 
555
- #: nextend-facebook-connect-new/admin/templates/pro.php:25
556
  msgid "Pro Addon is not activated"
557
  msgstr "A Pro Kiegészítő nincs aktiválva"
558
 
559
- #: nextend-facebook-connect-new/admin/templates/pro.php:26
560
- #: nextend-facebook-connect-new/admin/templates/pro.php:44
561
  msgid ""
562
  "To be able to use the Pro features, you need to install and activate the "
563
  "Nextend Social Connect Pro Addon."
564
  msgstr ""
565
 
566
- #: nextend-facebook-connect-new/admin/templates/providers.php:24
567
  msgid "Not Available"
568
  msgstr "Nem elérhető"
569
 
570
- #: nextend-facebook-connect-new/admin/templates/providers.php:27
571
  msgid "Not Configured"
572
  msgstr "Nincs beállítva"
573
 
574
- #: nextend-facebook-connect-new/admin/templates/providers.php:30
575
- msgid "Not Tested"
576
- msgstr "Nincs Tesztelve"
 
 
 
 
 
 
577
 
578
- #: nextend-facebook-connect-new/admin/templates/providers.php:39
579
  msgid "Legacy"
580
  msgstr "Örökölt"
581
 
582
- #: nextend-facebook-connect-new/admin/templates/providers.php:51
583
  msgid "Upgrade Now"
584
  msgstr ""
585
 
586
- #: nextend-facebook-connect-new/admin/templates/providers.php:66
587
- msgid "Test to Enable"
588
- msgstr "Tesztelés az Engedélyezéshez"
 
589
 
590
- #: nextend-facebook-connect-new/admin/templates/providers.php:74
591
- #: nextend-facebook-connect-new/includes/provider.php:932
592
  msgid "Enable"
593
  msgstr "Bekapcsolás"
594
 
595
- #: nextend-facebook-connect-new/admin/templates/providers.php:86
596
- #: nextend-facebook-connect-new/includes/provider.php:940
597
  msgid "Disable"
598
  msgstr "Kikapcsolás"
599
 
600
- #: nextend-facebook-connect-new/admin/templates/providers.php:97
601
  msgid "Import"
602
  msgstr "Importálás"
603
 
604
- #: nextend-facebook-connect-new/admin/templates/providers.php:116
605
  msgid "Saving..."
606
  msgstr "Mentés..."
607
 
608
- #: nextend-facebook-connect-new/admin/templates/providers.php:117
609
  msgid "Saving failed"
610
  msgstr "A mentés nem sikerült"
611
 
612
- #: nextend-facebook-connect-new/admin/templates/providers.php:118
613
  msgid "Order Saved"
614
  msgstr "Sorrend elmentve"
615
 
616
- #: nextend-facebook-connect-new/includes/provider.php:325
617
- #: nextend-facebook-connect-new/includes/provider.php:544
618
- #: nextend-facebook-connect-new/includes/provider.php:555
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
619
  msgid "Authentication successful"
620
  msgstr "Hitelesítés sikeres"
621
 
622
- #: nextend-facebook-connect-new/includes/provider.php:373
623
  #, php-format
624
  msgid ""
625
  "Your %1$s account is successfully linked with your account. Now you can sign "
@@ -628,36 +832,41 @@ msgstr ""
628
  "A(z) %1$s fiók sikeresen össze lett kapcsolva a fiókoddal. Már könnyedén be "
629
  "tudsz lépni a %2$s fiókoddal is."
630
 
631
- #: nextend-facebook-connect-new/includes/provider.php:377
632
  #, php-format
633
  msgid ""
634
- "This %s account is already linked with other account. Linking process failed!"
 
635
  msgstr ""
636
- "Az %s fiók már haszálva van egy másik közösségi fiókkal. Az összekapcsolási "
637
- "folyamat sikertelen!"
638
 
639
- #: nextend-facebook-connect-new/includes/provider.php:483
 
 
 
 
 
 
640
  msgid "Authentication error"
641
  msgstr "Hitelesítési hiba"
642
 
643
- #: nextend-facebook-connect-new/includes/provider.php:492
644
  msgid "Unlink successful."
645
  msgstr "Szétkapcsolás sikeres"
646
 
647
- #: nextend-facebook-connect-new/includes/provider.php:762
648
- #: nextend-facebook-connect-new/includes/provider.php:769
649
  msgid "The test was successful"
650
  msgstr "A teszt sikeres volt"
651
 
652
- #: nextend-facebook-connect-new/includes/provider.php:810
653
  msgid "Authentication failed"
654
  msgstr "Hitelesítés sikertelen"
655
 
656
- #: nextend-facebook-connect-new/includes/provider.php:881
657
- msgid "Your configuration needs testing"
658
- msgstr "A konfigurációt le kell tesztelni"
659
 
660
- #: nextend-facebook-connect-new/includes/provider.php:882
661
  msgid ""
662
  "Before you can start letting your users register with your app it needs to "
663
  "be tested. This test makes sure that no users will have troubles with the "
@@ -671,20 +880,15 @@ msgstr ""
671
  "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. "
672
  "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van."
673
 
674
- #: nextend-facebook-connect-new/includes/provider.php:887
675
- msgid "Test the Configuration"
676
- msgstr "Teszteld le a Konfigurációt"
677
-
678
- #: nextend-facebook-connect-new/includes/provider.php:888
679
- #: nextend-facebook-connect-new/includes/provider.php:925
680
- msgid "Please save your changes before testing."
681
  msgstr ""
682
 
683
- #: nextend-facebook-connect-new/includes/provider.php:896
684
  msgid "Works Fine"
685
  msgstr "Megfelelően Működik"
686
 
687
- #: nextend-facebook-connect-new/includes/provider.php:910
688
  #, php-format
689
  msgid ""
690
  "This provider is currently disabled, which means that users can’t register "
@@ -693,7 +897,7 @@ msgstr ""
693
  "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a "
694
  "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal."
695
 
696
- #: nextend-facebook-connect-new/includes/provider.php:913
697
  #, php-format
698
  msgid ""
699
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -703,7 +907,7 @@ msgstr ""
703
  "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s "
704
  "fiókjukkal kikapcsolhatod a providertt."
705
 
706
- #: nextend-facebook-connect-new/includes/provider.php:916
707
  #, php-format
708
  msgid ""
709
  "This provider is currently enabled, which means that users can register or "
@@ -712,23 +916,26 @@ msgstr ""
712
  "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók "
713
  "regisztrálhatnak és beléphetnek a %s fiókjukkal."
714
 
715
- #: nextend-facebook-connect-new/includes/provider.php:924
716
- msgid "Test Again"
717
- msgstr "Teszteld Újra"
718
 
719
- #: nextend-facebook-connect-new/nextend-social-login.php:19
 
 
 
 
 
720
  #, php-format
721
- msgid ""
722
- "%5$s plugin (version: %1$s, required: %2$s or newer) is not compatible with "
723
- "the PRO addon (version: %3$s, required: %4$s or newer). Please upgrade to "
724
- "the latest version! PRO addon disabled."
 
 
725
  msgstr ""
726
- "%5$s plugin (jelenlegi verzió %1$s, szükséges verzió: %2$s vagy újabb) nem "
727
- "kompatibilis a Pro Kiegészítővel (jelenlegi verzió: %3$s , szükséges verzió: "
728
- "%4$s vagy újabb). Kérlek frissítd a legújabb verzióra! A Pro Kiegészítő "
729
- "kikapcsolva."
730
 
731
- #: nextend-facebook-connect-new/nextend-social-login.php:260
732
  #, php-format
733
  msgid ""
734
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
@@ -737,7 +944,7 @@ msgstr ""
737
  "%s átvette a Nextend Google Connect helyét. Letörölheted a Nextend Google "
738
  "Connect plguint, mivel már nincs rá szükség."
739
 
740
- #: nextend-facebook-connect-new/nextend-social-login.php:271
741
  #, php-format
742
  msgid ""
743
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
@@ -746,18 +953,69 @@ msgstr ""
746
  "%s átvette a Nextend Twitter Connect helyét. Letörölheted a Nextend Twitter "
747
  "Connect plguint, mivel már nincs rá szükség."
748
 
749
- #: nextend-facebook-connect-new/nextend-social-login.php:364
750
  msgid "You have logged in successfully."
751
  msgstr ""
752
 
753
- #: nextend-facebook-connect-new/nextend-social-login.php:441
 
754
  msgid "Social Login"
755
  msgstr "Közösségi belépés"
756
 
757
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:7
758
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:9
759
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:9
760
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
761
  #, php-format
762
  msgid ""
763
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -772,46 +1030,30 @@ msgstr ""
772
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
773
  "alapján."
774
 
775
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:9
776
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:11
777
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:11
778
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:10
779
  #, php-format
780
  msgctxt "App creation"
781
  msgid "Create %s"
782
  msgstr "%s létrehozása"
783
 
784
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:12
785
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:14
786
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:14
787
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:13
788
- #, php-format
789
- msgid "Navigate to %s"
790
- msgstr "Látogasd meg ezt az oldalt: %s"
791
-
792
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:13
793
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:15
794
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:15
795
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:14
796
- #, php-format
797
- msgid "Log in with your %s credentials if you are not logged in"
798
- msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
799
-
800
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:14
801
  msgid "Click on the \"Add a New App\" button"
802
  msgstr "Kattints az \"Add a New App\" gombra"
803
 
804
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:15
805
  msgid "Fill \"Display Name\" and \"Contact Email\""
806
  msgstr ""
807
  "Töltsd ki a \"Display name\" mezőt az app nevével. A \"Contact Email\" "
808
  "mezőbe írd be az email címet, amin keresztül elérhetnek."
809
 
810
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:16
811
  msgid "Click on blue \"Create App ID\" button"
812
  msgstr "Kattints a kék \"Create App ID\" gombra"
813
 
814
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:17
815
  msgid ""
816
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
817
  "button"
@@ -819,42 +1061,31 @@ msgstr ""
819
  "Vidd a kurzort a \"Facebook Login\" doboz fölé és kattints a megjelenő \"Set "
820
  "Up\" gombra."
821
 
822
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:18
823
  msgid "Choose Web"
824
  msgstr "Válaszd a \"Web\"-et"
825
 
826
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:19
827
  #, php-format
828
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
829
  msgstr ""
830
  "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg ez "
831
  "lesz az: <b>%s</b>"
832
 
833
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:20
 
834
  msgid "Click on \"Save\""
835
  msgstr "Kattints a \"Save\" gombra"
836
 
837
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:21
838
  msgid "In the left sidebar, click on \"Facebook Login\""
839
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
840
 
841
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:22
842
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:24
843
- #, php-format
844
- msgid ""
845
- "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
846
- msgstr ""
847
- "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
848
-
849
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:23
850
- msgid "Click on \"Save Changes\""
851
- msgstr "Kattints a \"Save Changes\"-re"
852
-
853
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:24
854
  msgid "In the top of the left sidebar, click on \"Settings\""
855
  msgstr "A bal oldali menü tetején kattints a \"Settings\"-re"
856
 
857
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:25
858
  msgid ""
859
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
860
  "click on the \"Show\" button. These will be needed in plugin's settings."
@@ -862,11 +1093,11 @@ msgstr ""
862
  "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
863
  "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
864
 
865
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:26
866
  msgid "Enter your domain name to the App Domains"
867
  msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
868
 
869
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:27
870
  msgid ""
871
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
872
  "accessible privacy policy that explains what data you are collecting and how "
@@ -876,14 +1107,14 @@ msgstr ""
876
  "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen "
877
  "információkat gyűjtesz és mihez kezdesz velük."
878
 
879
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:28
880
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:17
881
- #: nextend-facebook-connect-new/providers/google/admin/import.php:17
882
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:17
883
  msgid "Save your changes."
884
  msgstr "Mentsd el a módosításaidat."
885
 
886
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:29
887
  msgid ""
888
  "Your application is currently private, which means that only you can log in "
889
  "with it. In the left sidebar choose \"App Review\" and make your App public"
@@ -892,98 +1123,98 @@ msgstr ""
892
  "vele. A bal oldali menüben válaszd az \"App Review\" gombot és tedd "
893
  "nyilvánossá az Appodat."
894
 
895
- #: nextend-facebook-connect-new/providers/facebook/admin/getting-started.php:33
896
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:30
897
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:25
898
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:27
899
  #, php-format
900
  msgid "I am done setting up my %s"
901
  msgstr "Befejeztem a %s appom elkészítését"
902
 
903
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:7
904
  msgid "Import Facebook configuration"
905
  msgstr "Facebook konfiguráció importálása"
906
 
907
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:8
908
- #: nextend-facebook-connect-new/providers/google/admin/import.php:8
909
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:8
910
  msgid "Be sure to read the following notices before you proceed."
911
  msgstr "Mielőtt tovább lépnél, olvasd el az alábbi figyelmeztetéseket."
912
 
913
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:10
914
- #: nextend-facebook-connect-new/providers/google/admin/import.php:10
915
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:10
916
  msgid "Important steps before the import"
917
  msgstr "Fontos lépések az importálás megkezdése előtt"
918
 
919
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:11
920
- #: nextend-facebook-connect-new/providers/google/admin/import.php:11
921
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:11
922
  msgid ""
923
  "Make sure that the redirect URI for your app is correct before proceeding."
924
  msgstr ""
925
  "A továbblépés előtt győződj meg róla, hogy a \"Redirect URI\" az appodnál "
926
  "helyesen van beállítva."
927
 
928
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:13
929
- #: nextend-facebook-connect-new/providers/google/admin/import.php:13
930
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:13
931
  #, php-format
932
  msgid "Visit %s."
933
  msgstr "Látogass el ide: %s."
934
 
935
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:14
936
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:14
937
  msgid "Select your app."
938
  msgstr "Válaszd ki az appodat."
939
 
940
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:15
941
  msgid ""
942
  "Go to the Settings menu which you can find below the Facebook Login in the "
943
  "left menu."
944
  msgstr ""
945
  "Menj a \"Settings\" menübe a \"Facebook Login\" alatt a bal oldali menüben."
946
 
947
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:16
948
- #: nextend-facebook-connect-new/providers/google/admin/import.php:16
949
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:16
950
  #, php-format
951
  msgid "Make sure that the \"%1$s\" field contains %2$s"
952
  msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
953
 
954
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:20
955
- #: nextend-facebook-connect-new/providers/google/admin/import.php:20
956
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:20
957
  msgid "The following settings will be imported:"
958
  msgstr "Az alábbi beállítások kerülnek importálásra:"
959
 
960
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:22
961
- #: nextend-facebook-connect-new/providers/google/admin/import.php:22
962
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:22
963
  msgid "Your old API configurations"
964
  msgstr "A régi API beállításaid"
965
 
966
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:23
967
- #: nextend-facebook-connect-new/providers/google/admin/import.php:23
968
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:23
969
  msgid "The user prefix you set"
970
  msgstr "A beállított felhasználónév előtag"
971
 
972
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:26
973
- #: nextend-facebook-connect-new/providers/google/admin/import.php:26
974
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:26
975
  msgid "Create a backup of the old settings"
976
  msgstr "Készíts biztonsági mentést a régi beállításokról"
977
 
978
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:29
979
- #: nextend-facebook-connect-new/providers/google/admin/import.php:29
980
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:29
981
  msgid "Other changes"
982
  msgstr "Egyéb változások"
983
 
984
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:31
985
- #: nextend-facebook-connect-new/providers/google/admin/import.php:31
986
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:31
987
  msgid ""
988
  "The custom redirect URI is now handled globally for all providers, so it "
989
  "won't be imported from the previous version. Visit \"Nextend Social Login > "
@@ -994,9 +1225,9 @@ msgstr ""
994
  "Social Login > Általános beállítások\" fülre az új átirányítási link "
995
  "beállításához."
996
 
997
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:32
998
- #: nextend-facebook-connect-new/providers/google/admin/import.php:32
999
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:32
1000
  msgid ""
1001
  "The login button's layout will be changed to a new, more modern look. If you "
1002
  "used any custom buttons that won't be imported."
@@ -1005,9 +1236,9 @@ msgstr ""
1005
  "valamilyen egyedi gombot használtál azok a beállítások nem kerülnek "
1006
  "importálásra."
1007
 
1008
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:33
1009
- #: nextend-facebook-connect-new/providers/google/admin/import.php:33
1010
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:33
1011
  msgid ""
1012
  "The old version's PHP functions are not available anymore. This means if you "
1013
  "used any custom codes where you used these old functions, you need to remove "
@@ -1017,9 +1248,9 @@ msgstr ""
1017
  "jelenti, hogy ha bármilyen egyedi kódban használtad őket el kell távolítanod "
1018
  "a kódot."
1019
 
1020
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:35
1021
- #: nextend-facebook-connect-new/providers/google/admin/import.php:35
1022
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:35
1023
  msgid ""
1024
  "After the importing process finishes, you will need to <b>test</b> your app "
1025
  "and <b>enable</b> the provider. You can do both in the next screen."
@@ -1028,30 +1259,30 @@ msgstr ""
1028
  "appodat majd <b>engedélyezni</a> a providert. Mindkettőt meg tudod tenni a "
1029
  "következő oldalon."
1030
 
1031
- #: nextend-facebook-connect-new/providers/facebook/admin/import.php:42
1032
- #: nextend-facebook-connect-new/providers/google/admin/import.php:42
1033
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:43
1034
  msgid "Import Configuration"
1035
  msgstr "Konfiguráció Importálása"
1036
 
1037
- #: nextend-facebook-connect-new/providers/facebook/admin/settings.php:26
1038
  msgid "App ID"
1039
  msgstr "App ID"
1040
 
1041
- #: nextend-facebook-connect-new/providers/facebook/admin/settings.php:27
1042
- #: nextend-facebook-connect-new/providers/facebook/admin/settings.php:39
1043
- #: nextend-facebook-connect-new/providers/google/admin/settings.php:26
1044
- #: nextend-facebook-connect-new/providers/google/admin/settings.php:39
1045
- #: nextend-facebook-connect-new/providers/twitter/admin/settings.php:26
1046
- #: nextend-social-connect-pro-new/providers/linkedin/admin/settings.php:25
1047
- #: nextend-social-connect-pro-new/providers/linkedin/admin/settings.php:37
1048
  msgid "Required"
1049
  msgstr "Kötelező"
1050
 
1051
- #: nextend-facebook-connect-new/providers/facebook/admin/settings.php:32
1052
- #: nextend-facebook-connect-new/providers/google/admin/settings.php:33
1053
- #: nextend-facebook-connect-new/providers/twitter/admin/settings.php:31
1054
- #: nextend-social-connect-pro-new/providers/linkedin/admin/settings.php:31
1055
  #, php-format
1056
  msgid ""
1057
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -1060,26 +1291,26 @@ msgstr ""
1060
  "Ha nem vagy benne biztos, hogy mit kell írnod a(z) %1$s mezőbe, menj vissza "
1061
  "az <a href=\"%2$s\">Első lépések</a> fülre."
1062
 
1063
- #: nextend-facebook-connect-new/providers/facebook/admin/settings.php:38
1064
  msgid "App Secret"
1065
  msgstr "App Secret"
1066
 
1067
- #: nextend-facebook-connect-new/providers/facebook/facebook.php:49
1068
  msgid "Continue with <b>Facebook</b>"
1069
  msgstr "Folytatás a <b>Facebookkal</b>"
1070
 
1071
- #: nextend-facebook-connect-new/providers/facebook/facebook.php:50
1072
  msgid "Link account with <b>Facebook</b>"
1073
  msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
1074
 
1075
- #: nextend-facebook-connect-new/providers/facebook/facebook.php:51
1076
  msgid "Unlink account from <b>Facebook</b>"
1077
  msgstr "Szétkapcsolás <b>Facebook</b>-kal"
1078
 
1079
- #: nextend-facebook-connect-new/providers/facebook/facebook.php:109
1080
- #: nextend-facebook-connect-new/providers/google/google.php:71
1081
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:72
1082
- #: nextend-social-connect-pro-new/providers/linkedin/linkedin.php:68
1083
  #, php-format
1084
  msgid ""
1085
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
@@ -1087,7 +1318,24 @@ msgstr ""
1087
  "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s "
1088
  "helyes."
1089
 
1090
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1091
  msgid ""
1092
  "If you don't have a project yet, you'll need to create one. You can do this "
1093
  "by clicking on the blue \"Create project\" button on the right side"
@@ -1095,15 +1343,15 @@ msgstr ""
1095
  "Ha még nincs projected, újat kell készítened. Ezt megteheted a kék \"Create "
1096
  "project\" gombra kattintva a jobb oldalon."
1097
 
1098
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:17
1099
  msgid "Name your project and then click on the Create button"
1100
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra"
1101
 
1102
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:18
1103
  msgid "Once you have a project, you'll end up in the dashboard."
1104
  msgstr "Ha van már projekted át leszel irányítva az irányítópultra"
1105
 
1106
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:19
1107
  msgid ""
1108
  "Click on the \"Credentials\" in the left hand menu to create new API "
1109
  "credentials"
@@ -1111,7 +1359,7 @@ msgstr ""
1111
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
1112
  "adatokat készíts"
1113
 
1114
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:20
1115
  msgid ""
1116
  "Go to the OAuth consent screen tab and enter a product name and provide the "
1117
  "Privacy Policy URL, then click on the save button."
@@ -1119,7 +1367,7 @@ msgstr ""
1119
  "Menj az \"OAuth consent screen\" fülre. Írd be a termék nevét és írd be a "
1120
  "linket az Adatvédelmi Irányelvek oldalad linkjét. Kattints a Save gombra."
1121
 
1122
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:21
1123
  msgid ""
1124
  "Go back to the Credentials tab and locate the small box at the middle. Click "
1125
  "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
@@ -1129,19 +1377,19 @@ msgstr ""
1129
  "Kattints a kék \"Create credentials\" gombra. Válaszd ki az \"OAuth client ID"
1130
  "\"-t a lenyíló listából."
1131
 
1132
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:22
1133
  msgid "Your application type should be \"Web application\""
1134
  msgstr "Az applikációd típusa legyen \"Web application\""
1135
 
1136
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:23
1137
  msgid "Name your application"
1138
  msgstr "Adj nevet az alkalmazásodnak"
1139
 
1140
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:25
1141
  msgid "Click on the Create button"
1142
  msgstr "Kattints a \"Create\" gombra"
1143
 
1144
- #: nextend-facebook-connect-new/providers/google/admin/getting-started.php:26
1145
  msgid ""
1146
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1147
  "the Credentials in the left hand menu and select your app by clicking on its "
@@ -1152,47 +1400,66 @@ msgstr ""
1152
  "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a "
1153
  "nevére kattintva. Innen ki tudod másolni a Client ID-t és Client Secretet."
1154
 
1155
- #: nextend-facebook-connect-new/providers/google/admin/import.php:7
1156
  msgid "Import Google configuration"
1157
  msgstr "Google konfiguráció importálása"
1158
 
1159
- #: nextend-facebook-connect-new/providers/google/admin/import.php:14
1160
  msgid "If you have more projects, select the one where your app is."
1161
  msgstr "Ha több projekted van, válaszd ki azt, amelyikben az appod van."
1162
 
1163
- #: nextend-facebook-connect-new/providers/google/admin/import.php:15
1164
  msgid "Click on Credentials at the left-hand menu then select your app."
1165
  msgstr ""
1166
  "Kattints a \"Credentials\" feliratra a bal oldali menüben majd válaszd ki az "
1167
  "appodat."
1168
 
1169
- #: nextend-facebook-connect-new/providers/google/admin/settings.php:25
1170
- #: nextend-social-connect-pro-new/providers/linkedin/admin/settings.php:24
1171
  msgid "Client ID"
1172
  msgstr "Client ID"
1173
 
1174
- #: nextend-facebook-connect-new/providers/google/admin/settings.php:38
1175
- #: nextend-social-connect-pro-new/providers/linkedin/admin/settings.php:36
1176
  msgid "Client Secret"
1177
  msgstr "Client Secret"
1178
 
1179
- #: nextend-facebook-connect-new/providers/google/google.php:38
1180
  msgid "Continue with <b>Google</b>"
1181
  msgstr "Folytatás a <b>Google-el</b>"
1182
 
1183
- #: nextend-facebook-connect-new/providers/google/google.php:39
1184
  msgid "Link account with <b>Google</b>"
1185
  msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
1186
 
1187
- #: nextend-facebook-connect-new/providers/google/google.php:40
1188
  msgid "Unlink account from <b>Google</b>"
1189
  msgstr "Szétkapcsolás <b>Google</b>-lel"
1190
 
1191
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:16
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1192
  msgid "Click on the \"Create New App\" button"
1193
  msgstr "Kattints a \"Create New App\" gombra"
1194
 
1195
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:17
1196
  #, php-format
1197
  msgid ""
1198
  "Fill the name and description fields. Then enter your site's URL to the "
@@ -1201,16 +1468,11 @@ msgstr ""
1201
  "Írd be az appod nevét a \"name\" és a leírását a \"description\" mezőbe. "
1202
  "Aztán írd be az oldalad címét a Website mezőbe: <b>%s</b>"
1203
 
1204
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:18
1205
- #, php-format
1206
- msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
1207
- msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
1208
-
1209
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:19
1210
  msgid "Accept the Twitter Developer Agreement"
1211
  msgstr "Fogadd el a Twitter Fejlesztői Megállapodást"
1212
 
1213
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:20
1214
  msgid ""
1215
  "Create your application by clicking on the Create your Twitter application "
1216
  "button"
@@ -1218,174 +1480,169 @@ msgstr ""
1218
  "Hozd létre az alkalmazásodat a \"Create your Twitter application\" gombra "
1219
  "kattintva"
1220
 
1221
- #: nextend-facebook-connect-new/providers/twitter/admin/getting-started.php:21
1222
  msgid ""
1223
  "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
1224
  msgstr ""
1225
  "Menj a \"Keys and Access Tokens\" fülre ahol megtalálod a \"Consumer Key\"-t "
1226
  "és \"Secret\"-et"
1227
 
1228
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:7
1229
  msgid "Import Twitter configuration"
1230
  msgstr "Twitter konfiguráció importálása"
1231
 
1232
- #: nextend-facebook-connect-new/providers/twitter/admin/import.php:15
1233
  msgid "Go to the Settings tab."
1234
  msgstr "Menj a \"Settings\" fülre."
1235
 
1236
- #: nextend-facebook-connect-new/providers/twitter/admin/settings.php:25
1237
  msgid "Consumer Key"
1238
  msgstr "Consumer Key"
1239
 
1240
- #: nextend-facebook-connect-new/providers/twitter/admin/settings.php:36
1241
  msgid "Consumer Secret"
1242
  msgstr "Consumer Secret"
1243
 
1244
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:39
1245
  msgid "Continue with <b>Twitter</b>"
1246
  msgstr "Folytatás a <b>Twitterrel</b>"
1247
 
1248
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:40
1249
  msgid "Link account with <b>Twitter</b>"
1250
  msgstr "Fiók összekapcsolása a <b>Twitter</b>-rel"
1251
 
1252
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:41
1253
  msgid "Unlink account from <b>Twitter</b>"
1254
  msgstr "Szétkapcsolás <b>Twitter</b>-rel"
1255
 
1256
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:154
1257
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:156
1258
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:159
1259
- #: nextend-social-connect-pro-new/class-provider-extension.php:142
1260
- #: nextend-social-connect-pro-new/class-provider-extension.php:144
1261
- #: nextend-social-connect-pro-new/class-provider-extension.php:147
1262
- #: nextend-social-connect-pro-new/class-provider-extension.php:153
1263
- #: nextend-social-connect-pro-new/class-provider-extension.php:166
1264
- #: nextend-social-connect-pro-new/class-provider-extension.php:168
1265
- #: nextend-social-connect-pro-new/class-provider-extension.php:171
1266
- msgid "ERROR"
1267
- msgstr "HIBA"
1268
-
1269
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:154
1270
- #: nextend-social-connect-pro-new/class-provider-extension.php:166
1271
- msgid "Please enter an email address."
1272
- msgstr ""
1273
-
1274
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:156
1275
- #: nextend-social-connect-pro-new/class-provider-extension.php:168
1276
- msgid "The email address isn&#8217;t correct."
1277
- msgstr ""
1278
-
1279
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:159
1280
- #: nextend-social-connect-pro-new/class-provider-extension.php:171
1281
- msgid "This email is already registered, please choose another one."
1282
- msgstr ""
1283
-
1284
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:168
1285
- #: nextend-social-connect-pro-new/class-provider-extension.php:183
1286
- msgid "Registration Form"
1287
- msgstr ""
1288
-
1289
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:168
1290
- #: nextend-social-connect-pro-new/class-provider-extension.php:183
1291
- msgid "Register For This Site!"
1292
- msgstr ""
1293
-
1294
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:174
1295
- #: nextend-social-connect-pro-new/class-provider-extension.php:197
1296
- msgid "Email"
1297
- msgstr "Email"
1298
-
1299
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:178
1300
- #: nextend-social-connect-pro-new/class-provider-extension.php:202
1301
- msgid "Registration confirmation will be emailed to you."
1302
- msgstr ""
1303
-
1304
- #: nextend-facebook-connect-new/providers/twitter/twitter.php:182
1305
- #: nextend-social-connect-pro-new/class-provider-extension.php:206
1306
- msgid "Register"
1307
- msgstr ""
1308
-
1309
- #: nextend-facebook-connect-new/widget.php:10
1310
  #, php-format
1311
  msgid "%s Buttons"
1312
  msgstr "%s Gombok"
1313
 
1314
- #: nextend-facebook-connect-new/widget.php:22
1315
  msgid "Title:"
1316
  msgstr ""
1317
 
1318
- #: nextend-facebook-connect-new/widget.php:30
1319
  msgid "Button style:"
1320
  msgstr "Gomb stílus:"
1321
 
1322
- #: nextend-social-connect-pro-new/class-provider-extension.php:78
1323
  msgid "Social login is not allowed with this role!"
1324
  msgstr ""
1325
  "A közösségi fiókkal való belépés nem engedélyezett erre a felhasználói "
1326
  "szintre."
1327
 
1328
- #: nextend-social-connect-pro-new/class-provider-extension.php:142
 
 
 
 
 
 
 
 
 
 
1329
  msgid "Please enter a username."
1330
  msgstr ""
1331
 
1332
- #: nextend-social-connect-pro-new/class-provider-extension.php:144
1333
  msgid ""
1334
  "This username is invalid because it uses illegal characters. Please enter a "
1335
  "valid username."
1336
  msgstr ""
1337
 
1338
- #: nextend-social-connect-pro-new/class-provider-extension.php:147
1339
  msgid "This username is already registered. Please choose another one."
1340
  msgstr ""
1341
 
1342
- #: nextend-social-connect-pro-new/class-provider-extension.php:153
1343
  msgid "Sorry, that username is not allowed."
1344
  msgstr ""
1345
 
1346
- #: nextend-social-connect-pro-new/class-provider-extension.php:190
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1347
  msgid "Username"
1348
  msgstr ""
1349
 
1350
- #: nextend-social-connect-pro-new/class-provider-extension.php:218
 
 
 
 
 
 
 
 
 
 
 
 
1351
  msgid ""
1352
  "This email is already registered, please login in to your account to link "
1353
  "with Facebook."
1354
  msgstr ""
1355
 
1356
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:15
 
 
 
 
 
 
 
 
 
 
 
 
 
1357
  msgid "Locate the yellow \"Create application\" button and click on it."
1358
  msgstr "Keresd meg a sárga \"Create application\" gombot és kattints rá."
1359
 
1360
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:16
1361
  msgid "Fill the fields marked with *"
1362
  msgstr "Töltsd ki a csillaggal jelölt mezőket"
1363
 
1364
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:17
1365
  #, php-format
1366
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
1367
  msgstr ""
1368
  "Írd be a weboldalad főoldalának címét a \"Website URL\" mezőbe. "
1369
  "Valószínűleg ez lesz az: <b>%s</b>"
1370
 
1371
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:19
1372
  msgid "Accept the Terms of use and hit Submit"
1373
  msgstr ""
1374
  "Fogadd el a Felhasználási Feltétleket és kattints a Beküldés (Submit) gombra"
1375
 
1376
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:20
1377
  msgid "Find the necessary Authentication Keys under the Authentication menu"
1378
  msgstr ""
1379
  "A szükséges \"Authentication Keys\"-t az Authentication menüben találod"
1380
 
1381
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:21
1382
- #, php-format
1383
- msgid ""
1384
- "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</b>"
1385
- msgstr ""
1386
- "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: <b>%s</b>"
1387
-
1388
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:22
1389
  msgid ""
1390
  "You probably want to enable the \"r_emailaddress\" under the Default "
1391
  "Application Permissions"
@@ -1393,32 +1650,68 @@ msgstr ""
1393
  "Valószínűleg be kell kapcsolnod a \"r_emailaddress\"-t a \"Default "
1394
  "Application Permissions\" alatt"
1395
 
1396
- #: nextend-social-connect-pro-new/providers/linkedin/admin/getting-started.php:23
1397
- msgid "Hit update to save the changes"
1398
- msgstr "Kattints az \"update\" gombra és mentsd el a beállításaidat."
1399
-
1400
- #: nextend-social-connect-pro-new/providers/linkedin/linkedin.php:34
1401
  msgid "Continue with <b>LinkedIn</b>"
1402
  msgstr "Folytatás a <b>LinkedInnel</b>"
1403
 
1404
- #: nextend-social-connect-pro-new/providers/linkedin/linkedin.php:35
1405
  msgid "Link account with <b>LinkedIn</b>"
1406
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
1407
 
1408
- #: nextend-social-connect-pro-new/providers/linkedin/linkedin.php:36
1409
  msgid "Unlink account from <b>LinkedIn</b>"
1410
  msgstr "Szétkapcsolás <b>LinkedIn</b>-nel"
1411
 
1412
- #: nextend-social-connect-pro-new/template-parts/login-layout-above-separator.php:9
1413
- #: nextend-social-connect-pro-new/template-parts/login-layout-below-separator.php:9
 
 
1414
  msgid "OR"
1415
  msgstr "VAGY"
1416
 
1417
- #: nextend-social-connect-pro-new/template-parts/woocommerce-edit-account-after.php:1
1418
- #: nextend-social-connect-pro-new/template-parts/woocommerce-edit-account-before.php:1
1419
  msgid "Social accounts"
1420
  msgstr "Közösségi fiókok"
1421
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1422
  #~ msgctxt "App creation"
1423
  #~ msgid "Create %"
1424
  #~ msgstr "%s"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2018-03-08 15:39+0100\n"
5
+ "PO-Revision-Date: 2018-03-08 15:39+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend\n"
8
  "Language: hu\n"
17
  "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
18
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
19
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n"
20
+ "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
21
+ "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
22
+ "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
23
+ "compat\n"
24
+ "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/"
25
+ "compat\n"
26
+ "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
 
 
28
 
29
+ #: nextend-facebook-connect/admin/admin.php:189
30
  #, php-format
31
+ msgid "%s needs json_decode function."
32
+ msgstr "A %s-nak szüksége van a json_decode függvényre."
33
 
34
+ #: nextend-facebook-connect/admin/admin.php:189
 
 
35
  msgid "Please contact your server administrator and ask for solution!"
36
  msgstr ""
37
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
38
 
39
+ #: nextend-facebook-connect/admin/admin.php:207
40
+ #: nextend-facebook-connect/admin/admin.php:248
 
 
 
 
 
 
 
 
 
41
  msgid "Settings saved."
42
  msgstr "Beállítások elmentve."
43
 
44
+ #: nextend-facebook-connect/admin/admin.php:216
45
  msgid "The authorization was successful"
46
  msgstr "Az engedélyezés sikeres volt"
47
 
48
+ #: nextend-facebook-connect/admin/admin.php:227
49
  msgid "Deauthorize completed."
50
  msgstr "A engedély visszavonása befejeződött."
51
 
52
+ #: nextend-facebook-connect/admin/admin.php:348
53
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:10
54
+ #: nextend-facebook-connect/admin/templates/providers.php:84
55
+ #: nextend-facebook-connect/admin/templates/providers.php:96
56
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
57
  msgid "Settings"
58
  msgstr "Beállítások"
59
 
60
+ #: nextend-facebook-connect/admin/admin.php:422
61
+ #: nextend-facebook-connect/includes/oauth2.php:113
62
+ #: nextend-facebook-connect/includes/oauth2.php:238
63
+ #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
64
+ #: nextend-facebook-connect/providers/twitter/twitter-client.php:150
65
+ #, php-format
66
+ msgid "Unexpected response: %s"
67
+ msgstr ""
68
+
69
+ #: nextend-facebook-connect/admin/admin.php:480
70
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:19
71
+ #, php-format
72
+ msgid ""
73
+ "%s detected that your login url changed. You must update the Oauth redirect "
74
+ "URIs in the related social applications."
75
+ msgstr ""
76
+
77
+ #: nextend-facebook-connect/admin/admin.php:481
78
+ msgid "Fix Error"
79
+ msgstr ""
80
+
81
+ #: nextend-facebook-connect/admin/admin.php:481
82
+ msgid "Oauth Redirect URI"
83
+ msgstr ""
84
+
85
+ #: nextend-facebook-connect/admin/admin.php:491
86
+ #, php-format
87
+ msgid ""
88
+ "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
89
+ "display Social Login buttons in %2$s login form!"
90
+ msgstr ""
91
+
92
+ #: nextend-facebook-connect/admin/admin.php:492
93
+ msgid "Dismiss and check Pro Addon"
94
+ msgstr ""
95
+
96
+ #: nextend-facebook-connect/admin/admin.php:492
97
+ msgid "Dismiss"
98
+ msgstr ""
99
+
100
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:72
101
  msgid "Login label"
102
  msgstr "Bejelentkezés felirat"
103
 
104
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:77
105
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:88
106
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:99
107
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
108
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:158
109
  msgid "Reset to default"
110
  msgstr "Alapbeállítás visszaállítása"
111
 
112
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:82
113
  msgid "Link label"
114
  msgstr "Profil összekapcsolás felirat"
115
 
116
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:94
117
  msgid "Unlink label"
118
  msgstr "Profile szétkapcsolás felirat"
119
 
120
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:105
121
  msgid "Default button"
122
  msgstr "Alap gomb"
123
 
124
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:121
125
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:151
126
  msgid "Use custom button"
127
  msgstr "Egyedi gomb használata"
128
 
129
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:128
130
  #, php-format
131
  msgid "Use the %s in your custom button's code to make the label show up."
132
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
133
 
134
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:136
135
  msgid "Icon button"
136
  msgstr "Ikon gomb"
137
 
138
+ #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
139
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:122
140
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
141
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:56
142
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
143
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
144
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
145
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
146
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
147
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
148
+ #: nextend-facebook-connect/providers/google/admin/settings.php:47
149
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:46
150
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:45
151
  msgid "Save Changes"
152
  msgstr "Változtatások Mentése"
153
 
154
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:8
155
+ #: nextend-facebook-connect/admin/templates/providers.php:64
156
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:7
157
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:7
158
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:6
159
  msgid "Getting Started"
160
  msgstr "Első Lépések"
161
 
162
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:12
163
  msgid "Buttons"
164
  msgstr "Gombok"
165
 
166
+ #: nextend-facebook-connect/admin/templates-provider/menu.php:14
167
  msgid "Usage"
168
  msgstr "Használat"
169
 
170
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:9
171
  msgid "Other settings"
172
  msgstr "Egyéb beállítások"
173
 
174
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:14
175
  msgid "Username prefix on register"
176
  msgstr "Felhasználónév előtag regisztrációkor"
177
 
178
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:20
179
  msgid "Fallback username prefix on register"
180
  msgstr ""
181
 
182
+ #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
183
  msgid "Used when username is invalid"
184
  msgstr ""
185
 
186
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:16
187
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
188
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:10
189
  msgid "PRO settings"
190
  msgstr "PRO beállítások"
191
 
192
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:26
193
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:30
194
  msgid "Ask E-mail on registration"
195
  msgstr "E-mail kérésére regisztrációkor"
196
 
197
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:33
198
  msgid "Never"
199
  msgstr "Soha"
200
 
201
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:36
202
  msgid "When email is not provided or empty"
203
  msgstr "Amikor a e-mail cím nem elérhető"
204
 
205
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:39
206
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:54
207
  msgid "Always"
208
  msgstr "Mindig"
209
 
210
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:44
211
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:48
212
  msgid "Ask Username on registration"
213
  msgstr "Felhasználónév kérése regisztrációkor"
214
 
215
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:51
216
  msgid "Never, generate automatically"
217
  msgstr "Soha, automata generálás"
218
 
219
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
220
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:63
221
  msgid "Automatically connect the existing account upon registration"
222
  msgstr "Fiók csatlakoztatása, ha regisztráció esetén már létezik a fiók"
223
 
224
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:67
225
+ #: nextend-facebook-connect/admin/templates/providers.php:39
226
+ #: nextend-facebook-connect/admin/templates/settings/general.php:37
227
+ #: nextend-facebook-connect/includes/provider.php:985
228
  msgid "Disabled"
229
  msgstr "Kikapcsolva"
230
 
231
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:70
232
  msgid "Automatic, based on email address"
233
  msgstr "Automatán, e-mail cím egyezés esetén"
234
 
235
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:75
236
  msgid "Disable login for the selected roles"
237
  msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek"
238
 
239
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:95
240
  msgid "Default roles for user who registered with this provider"
241
  msgstr "Alap szerepkör, aki ezzel a szolgáltatóval registrál"
242
 
243
+ #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:103
244
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
245
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:40
246
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
247
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
248
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
249
+ #: nextend-facebook-connect/widget.php:34
250
  msgid "Default"
251
  msgstr "Alapbeállítás"
252
 
253
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:7
254
  msgid "Shortcode"
255
  msgstr ""
256
 
257
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:23
258
  msgid "Simple link"
259
  msgstr "Egyszerű link"
260
 
261
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:26
262
  msgid "Click here to login or register"
263
  msgstr "Kattints ide a belépéshez vagy a regisztrációhoz"
264
 
265
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:31
266
  msgid "Image button"
267
  msgstr "Gomb képpel"
268
 
269
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:34
270
  msgid "Image url"
271
  msgstr "Kép URL"
272
 
273
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
274
+ msgid "Fix Oauth Redirect URIs"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
275
  msgstr ""
 
 
276
 
277
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:12
278
+ msgid "Every Oauth Redirect URI seems fine"
279
  msgstr ""
280
 
281
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:29
282
+ msgid "Got it"
283
  msgstr ""
284
 
285
+ #: nextend-facebook-connect/admin/templates/global-settings.php:24
286
+ #: nextend-facebook-connect/admin/templates/menu.php:8
287
+ msgid "Global Settings"
288
+ msgstr "Általános beállítások"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
 
290
+ #: nextend-facebook-connect/admin/templates/global-settings.php:27
291
+ msgid "General"
292
  msgstr ""
293
 
294
+ #: nextend-facebook-connect/admin/templates/global-settings.php:29
295
+ msgid "Login Form"
296
  msgstr ""
297
 
298
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
299
+ msgid "Comment"
300
  msgstr ""
301
 
302
+ #: nextend-facebook-connect/admin/templates/header.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
303
  msgid "Docs"
304
  msgstr "Dokumentáció"
305
 
306
+ #: nextend-facebook-connect/admin/templates/header.php:17
307
  msgid "Support"
308
  msgstr "Támogatás"
309
 
310
+ #: nextend-facebook-connect/admin/templates/header.php:20
311
+ #: nextend-facebook-connect/admin/templates/menu.php:12
312
  msgid "Pro Addon"
313
  msgstr "Pro Kiegészítő"
314
 
315
+ #: nextend-facebook-connect/admin/templates/menu.php:6
316
  msgid "Providers"
317
  msgstr "Providerek"
318
 
319
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:13
 
 
 
 
320
  msgid "Error"
321
  msgstr "Hiba"
322
 
323
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:14
324
  msgid ""
325
  "You don’t have sufficient permissions to install and activate plugins. "
326
  "Please contact your site’s administrator!"
329
  "Lépj kapcsolatba az oldalad adminisztrátorával a további teendőkkel "
330
  "kapcsolatban!"
331
 
332
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:22
333
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:32
334
+ #: nextend-facebook-connect/admin/templates/pro.php:34
335
  msgid "Activate Pro Addon"
336
  msgstr "Pro Addon aktiválása"
337
 
338
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:23
339
  msgid ""
340
  "Pro Addon is installed but not activated. To be able to use the Pro "
341
  "features, you need to activate it."
343
  "A Pro Kiegészítő telepítve van, de nincs aktiválva. Ahhoz, hogy használjasd "
344
  "a Pro funkciókat aktiválnod kell a Pro Kiegészítőt."
345
 
346
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:37
347
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:215
348
  msgid "Deauthorize Pro Addon"
349
  msgstr "Pro kiegészítő deaktiválása"
350
 
351
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:48
352
+ #: nextend-facebook-connect/admin/templates/pro.php:43
353
  msgid "Pro Addon is not installed"
354
  msgstr "A Pro Kiegészítő nincs telepítve"
355
 
356
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:50
357
  msgid ""
358
  "To access the Pro features, you need to install and activate the Pro Addon."
359
  msgstr ""
360
  "Ahhoz, hogy hozzáférj a Pro funkciókhoz fel kell telepítened és aktiválnod "
361
  "kell a Pro Kiegészítőt."
362
 
363
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:59
364
  #, php-format
365
  msgid "Install %s now"
366
  msgstr ""
367
 
368
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:60
369
+ #: nextend-facebook-connect/admin/templates/pro.php:47
370
  msgid "Install Pro Addon"
371
  msgstr "Pro Kiegészítő telepítése"
372
 
373
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:94
374
  msgid "Activating..."
375
  msgstr "Aktiválás..."
376
 
377
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:126
378
  msgid "Authorize your Pro Addon"
379
  msgstr "Aktiváld a Pro Kiegészítődet"
380
 
381
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
382
  msgid ""
383
  "To be able to use the Pro features, you need to authorize Nextend Social "
384
  "Connect Pro Addon. You can do this by clicking on the Authorize button below "
385
  "then select the related purchase."
386
  msgstr ""
387
 
388
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:132
389
  msgid "Authorize"
390
  msgstr "Aktiválás"
391
 
392
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:189
393
  msgid "License key"
394
  msgstr "Licensz kulcs"
395
 
396
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:206
397
  msgid "Pro Addon is installed and activated"
398
  msgstr "A Pro Kiegészítő telepítve és aktiválva"
399
 
400
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:208
401
  msgid ""
402
  "You installed and activated the Pro Addon. If you don’t want to use it "
403
  "anymore, you can deauthorize using the button below."
405
  "A Pro Kiegészítő fel van telepítve és aktiválva van. Ha nem akarod tovább "
406
  "használni, visszavonhatod az aktiválást a lenti gombra kattintva."
407
 
408
+ #: nextend-facebook-connect/admin/templates/pro.php:8
409
  msgid "Get Pro Addon to unlock more features"
410
  msgstr "Vásárold meg a Pro Kiegészítőt, hogy még több funkcióhoz juss"
411
 
412
+ #: nextend-facebook-connect/admin/templates/pro.php:9
413
  #, php-format
414
  msgid ""
415
  "The features below are available in %s Pro Addon. Get it today and tweak the "
418
  "Az alábbi funkciók a %s Pro Kiegészítőben érhetőek el. Vásárold meg még ma, "
419
  "hogy hozzáférj a fantasztikus új beállításokhoz."
420
 
421
+ #: nextend-facebook-connect/admin/templates/pro.php:10
422
  msgid ""
423
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
424
  "you can purchase it using the button below."
426
  "Ha már van licenszed engedélyezheted a Pro Kiegészítődet. Ha nincs licenszed "
427
  "vásárolhatsz a lenti gombra kattintva. "
428
 
429
+ #: nextend-facebook-connect/admin/templates/pro.php:14
430
  msgid "Buy Pro Addon"
431
  msgstr "Vedd meg a Pro Kiegészítőt"
432
 
433
+ #: nextend-facebook-connect/admin/templates/pro.php:16
434
  msgid "Authorize Pro Addon"
435
  msgstr "Pro Kiegészítő aktiválása"
436
 
437
+ #: nextend-facebook-connect/admin/templates/pro.php:25
438
  msgid "Pro Addon is not activated"
439
  msgstr "A Pro Kiegészítő nincs aktiválva"
440
 
441
+ #: nextend-facebook-connect/admin/templates/pro.php:26
442
+ #: nextend-facebook-connect/admin/templates/pro.php:44
443
  msgid ""
444
  "To be able to use the Pro features, you need to install and activate the "
445
  "Nextend Social Connect Pro Addon."
446
  msgstr ""
447
 
448
+ #: nextend-facebook-connect/admin/templates/providers.php:30
449
  msgid "Not Available"
450
  msgstr "Nem elérhető"
451
 
452
+ #: nextend-facebook-connect/admin/templates/providers.php:33
453
  msgid "Not Configured"
454
  msgstr "Nincs beállítva"
455
 
456
+ #: nextend-facebook-connect/admin/templates/providers.php:36
457
+ msgid "Not Verified"
458
+ msgstr ""
459
+
460
+ #: nextend-facebook-connect/admin/templates/providers.php:42
461
+ #: nextend-facebook-connect/admin/templates/settings/general.php:40
462
+ #: nextend-facebook-connect/includes/provider.php:988
463
+ msgid "Enabled"
464
+ msgstr "Bekapcsolva"
465
 
466
+ #: nextend-facebook-connect/admin/templates/providers.php:45
467
  msgid "Legacy"
468
  msgstr "Örökölt"
469
 
470
+ #: nextend-facebook-connect/admin/templates/providers.php:57
471
  msgid "Upgrade Now"
472
  msgstr ""
473
 
474
+ #: nextend-facebook-connect/admin/templates/providers.php:72
475
+ #: nextend-facebook-connect/includes/provider.php:972
476
+ msgid "Verify Settings"
477
+ msgstr ""
478
 
479
+ #: nextend-facebook-connect/admin/templates/providers.php:80
480
+ #: nextend-facebook-connect/includes/provider.php:1017
481
  msgid "Enable"
482
  msgstr "Bekapcsolás"
483
 
484
+ #: nextend-facebook-connect/admin/templates/providers.php:92
485
+ #: nextend-facebook-connect/includes/provider.php:1025
486
  msgid "Disable"
487
  msgstr "Kikapcsolás"
488
 
489
+ #: nextend-facebook-connect/admin/templates/providers.php:103
490
  msgid "Import"
491
  msgstr "Importálás"
492
 
493
+ #: nextend-facebook-connect/admin/templates/providers.php:122
494
  msgid "Saving..."
495
  msgstr "Mentés..."
496
 
497
+ #: nextend-facebook-connect/admin/templates/providers.php:123
498
  msgid "Saving failed"
499
  msgstr "A mentés nem sikerült"
500
 
501
+ #: nextend-facebook-connect/admin/templates/providers.php:124
502
  msgid "Order Saved"
503
  msgstr "Sorrend elmentve"
504
 
505
+ #: nextend-facebook-connect/admin/templates/review.php:14
506
+ msgid "Rate your experience!"
507
+ msgstr ""
508
+
509
+ #: nextend-facebook-connect/admin/templates/review.php:15
510
+ msgid "Hated it"
511
+ msgstr ""
512
+
513
+ #: nextend-facebook-connect/admin/templates/review.php:16
514
+ msgid "Disliked it"
515
+ msgstr ""
516
+
517
+ #: nextend-facebook-connect/admin/templates/review.php:17
518
+ msgid "It was ok"
519
+ msgstr ""
520
+
521
+ #: nextend-facebook-connect/admin/templates/review.php:18
522
+ msgid "Liked it"
523
+ msgstr ""
524
+
525
+ #: nextend-facebook-connect/admin/templates/review.php:19
526
+ msgid "Loved it"
527
+ msgstr ""
528
+
529
+ #: nextend-facebook-connect/admin/templates/review.php:31
530
+ msgid "Please Leave a Review"
531
+ msgstr ""
532
+
533
+ #: nextend-facebook-connect/admin/templates/review.php:32
534
+ msgid ""
535
+ "If you are happy with <b>Nextend Social Login</b> and can take a minute "
536
+ "please leave us a review. It will be a tremendous help for us!"
537
+ msgstr ""
538
+
539
+ #: nextend-facebook-connect/admin/templates/review.php:34
540
+ msgid "Ok, you deserve it"
541
+ msgstr ""
542
+
543
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
544
+ msgid "BuddyPress register form"
545
+ msgstr ""
546
+
547
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
548
+ msgid "No Connect button"
549
+ msgstr ""
550
+
551
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
552
+ msgid "Connect button before register"
553
+ msgstr ""
554
+
555
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
556
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
557
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
558
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
559
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
560
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
561
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
562
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
563
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
564
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
565
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
566
+ msgid "Action:"
567
+ msgstr "Action:"
568
+
569
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
570
+ msgid "Connect button before account details"
571
+ msgstr ""
572
+
573
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
574
+ msgid "Connect button after register"
575
+ msgstr ""
576
+
577
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
578
+ msgid "BuddyPress register button style"
579
+ msgstr ""
580
+
581
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
582
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:46
583
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
584
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
585
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
586
+ #: nextend-facebook-connect/widget.php:39
587
+ msgid "Icon"
588
+ msgstr "Imon"
589
+
590
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:18
591
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:22
592
+ msgid "Comment login button"
593
+ msgstr "Belépés gomb a kommenteknél"
594
+
595
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:25
596
+ msgid "Show"
597
+ msgstr "Megjelenít"
598
+
599
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
600
+ msgid "Hide"
601
+ msgstr "Elrejt"
602
+
603
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
604
+ #, php-format
605
+ msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
606
+ msgstr ""
607
+ "Ahhoz, hogy ez a funkció működjön, be kell kapcsolnod a ' %1$s > %2$s > %3$s "
608
+ "'-t."
609
+
610
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
611
+ msgid "Discussion"
612
+ msgstr ""
613
+
614
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
615
+ msgid "Users must be registered and logged in to comment"
616
+ msgstr ""
617
+
618
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:34
619
+ msgid "Comment button style"
620
+ msgstr "Gomb stílusa a kommenteknél"
621
+
622
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
623
+ msgid "Target window"
624
+ msgstr ""
625
+
626
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:32
627
+ msgid "Prefer popup"
628
+ msgstr ""
629
+
630
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:35
631
+ msgid "Prefer new tab"
632
+ msgstr ""
633
+
634
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:38
635
+ msgid "Prefer same window"
636
+ msgstr ""
637
+
638
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:43
639
+ msgid "Membership"
640
+ msgstr ""
641
+
642
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:49
643
+ msgid "Allow registration with Social login"
644
+ msgstr ""
645
+
646
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
647
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
648
+ msgid "Registration notification sent to"
649
+ msgstr ""
650
+
651
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
652
+ msgid "WordPress default"
653
+ msgstr ""
654
+
655
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
656
+ msgid "Nobody"
657
+ msgstr ""
658
+
659
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
660
+ msgid "User"
661
+ msgstr ""
662
+
663
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
664
+ msgid "Admin"
665
+ msgstr ""
666
+
667
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
668
+ msgid "User and Admin"
669
+ msgstr ""
670
+
671
+ #: nextend-facebook-connect/admin/templates/settings/general.php:30
672
+ #: nextend-facebook-connect/admin/templates/settings/general.php:34
673
+ msgid "Debug mode"
674
+ msgstr "Debug mód"
675
+
676
+ #: nextend-facebook-connect/admin/templates/settings/general.php:46
677
+ msgid "Fixed redirect url for login"
678
+ msgstr "Fix átirányítási link belépésnél"
679
+
680
+ #: nextend-facebook-connect/admin/templates/settings/general.php:59
681
+ #: nextend-facebook-connect/admin/templates/settings/general.php:80
682
+ msgid "Use custom"
683
+ msgstr "Egyedi gomb használata"
684
+
685
+ #: nextend-facebook-connect/admin/templates/settings/general.php:67
686
+ msgid "Fixed redirect url for register"
687
+ msgstr "Fix átirányítási link regisztrációnál"
688
+
689
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
690
+ msgid "Login form button style"
691
+ msgstr "Login gomb stílusa"
692
+
693
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
694
+ msgid "Login layout"
695
+ msgstr "Login elrendezése"
696
+
697
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
698
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
699
+ msgid "Below"
700
+ msgstr "Alul"
701
+
702
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
703
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
704
+ msgid "Below with separator"
705
+ msgstr "Alul, elválasztóval"
706
+
707
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:64
708
+ msgid "Below and floating"
709
+ msgstr "Alul lebegve"
710
+
711
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
712
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
713
+ msgid "Above"
714
+ msgstr "Felül"
715
+
716
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
717
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
718
+ msgid "Above with separator"
719
+ msgstr "Felül, elválasztóval"
720
+
721
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:83
722
+ msgid "Embedded Login form button style"
723
+ msgstr ""
724
+
725
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:102
726
+ msgid "Embedded Login layout"
727
+ msgstr ""
728
+
729
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
730
+ msgid "Login form"
731
+ msgstr ""
732
+
733
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
734
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
735
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
736
+ msgid "Show login buttons"
737
+ msgstr ""
738
+
739
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
740
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
741
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
742
+ msgid "Hide login buttons"
743
+ msgstr ""
744
+
745
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
746
+ msgid "Registration form"
747
+ msgstr ""
748
+
749
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
750
+ msgid "Embedded login form"
751
+ msgstr ""
752
+
753
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
754
+ msgid "WooCommerce login form"
755
+ msgstr "WooCommerce belépési űrlap"
756
+
757
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
758
+ msgid "No Connect button in login form"
759
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
760
+
761
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
762
+ msgid "Connect button before login form"
763
+ msgstr "Belépés gomb a belépési űrlap előtt"
764
+
765
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
766
+ msgid "Connect button after login form"
767
+ msgstr "Belépés gomb a belépési űrlap után"
768
+
769
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
770
+ msgid "WooCommerce register form"
771
+ msgstr ""
772
+
773
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
774
+ msgid "No Connect button in register form"
775
+ msgstr ""
776
+
777
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
778
+ msgid "Connect button before register form"
779
+ msgstr ""
780
+
781
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
782
+ msgid "Connect button after register form"
783
+ msgstr ""
784
+
785
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
786
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
787
+ msgid "WooCommerce billing form"
788
+ msgstr "WooCommerce számlázási űrlap"
789
+
790
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
791
+ msgid "No Connect button in billing form"
792
+ msgstr "Ne legyen összekapcsoló gomb a számlázási űrlapnál"
793
+
794
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
795
+ msgid "Connect button before billing form"
796
+ msgstr "Belépés gomb a számlázási űrlap előtt"
797
+
798
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
799
+ msgid "Connect button after billing form"
800
+ msgstr "Belépés gomb a számlázási űrlapon"
801
+
802
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
803
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
804
+ msgid "WooCommerce account details"
805
+ msgstr "WooCommerce fiók részletes beállítások"
806
+
807
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
808
+ msgid "Link buttons before account details"
809
+ msgstr "Összekapcsoló gombok a profil részletes beállításai előtt"
810
+
811
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
812
+ msgid "Link buttons after account details"
813
+ msgstr "Összekapcsoló gombok a profil részletes beállításai után"
814
+
815
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
816
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
817
+ msgid "WooCommerce button style"
818
+ msgstr "WooCommerce gomb stílusa"
819
+
820
+ #: nextend-facebook-connect/includes/provider.php:359
821
+ #: nextend-facebook-connect/includes/provider.php:624
822
+ #: nextend-facebook-connect/includes/provider.php:635
823
  msgid "Authentication successful"
824
  msgstr "Hitelesítés sikeres"
825
 
826
+ #: nextend-facebook-connect/includes/provider.php:407
827
  #, php-format
828
  msgid ""
829
  "Your %1$s account is successfully linked with your account. Now you can sign "
832
  "A(z) %1$s fiók sikeresen össze lett kapcsolva a fiókoddal. Már könnyedén be "
833
  "tudsz lépni a %2$s fiókoddal is."
834
 
835
+ #: nextend-facebook-connect/includes/provider.php:410
836
  #, php-format
837
  msgid ""
838
+ "You have already linked a(n) %s account. Please unlink the current and then "
839
+ "you can link other %s account."
840
  msgstr ""
 
 
841
 
842
+ #: nextend-facebook-connect/includes/provider.php:415
843
+ #, php-format
844
+ msgid "This %s account is already linked to other user."
845
+ msgstr ""
846
+
847
+ #: nextend-facebook-connect/includes/provider.php:557
848
+ #: nextend-facebook-connect/includes/provider.php:701
849
  msgid "Authentication error"
850
  msgstr "Hitelesítési hiba"
851
 
852
+ #: nextend-facebook-connect/includes/provider.php:566
853
  msgid "Unlink successful."
854
  msgstr "Szétkapcsolás sikeres"
855
 
856
+ #: nextend-facebook-connect/includes/provider.php:847
857
+ #: nextend-facebook-connect/includes/provider.php:854
858
  msgid "The test was successful"
859
  msgstr "A teszt sikeres volt"
860
 
861
+ #: nextend-facebook-connect/includes/provider.php:895
862
  msgid "Authentication failed"
863
  msgstr "Hitelesítés sikertelen"
864
 
865
+ #: nextend-facebook-connect/includes/provider.php:966
866
+ msgid "Your configuration needs to be verified"
867
+ msgstr ""
868
 
869
+ #: nextend-facebook-connect/includes/provider.php:967
870
  msgid ""
871
  "Before you can start letting your users register with your app it needs to "
872
  "be tested. This test makes sure that no users will have troubles with the "
880
  "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. "
881
  "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van."
882
 
883
+ #: nextend-facebook-connect/includes/provider.php:973
884
+ msgid "Please save your changes to verify settings."
 
 
 
 
 
885
  msgstr ""
886
 
887
+ #: nextend-facebook-connect/includes/provider.php:981
888
  msgid "Works Fine"
889
  msgstr "Megfelelően Működik"
890
 
891
+ #: nextend-facebook-connect/includes/provider.php:995
892
  #, php-format
893
  msgid ""
894
  "This provider is currently disabled, which means that users can’t register "
897
  "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a "
898
  "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal."
899
 
900
+ #: nextend-facebook-connect/includes/provider.php:998
901
  #, php-format
902
  msgid ""
903
  "This provider works fine, but you can test it again. If you don’t want to "
907
  "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s "
908
  "fiókjukkal kikapcsolhatod a providertt."
909
 
910
+ #: nextend-facebook-connect/includes/provider.php:1001
911
  #, php-format
912
  msgid ""
913
  "This provider is currently enabled, which means that users can register or "
916
  "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók "
917
  "regisztrálhatnak és beléphetnek a %s fiókjukkal."
918
 
919
+ #: nextend-facebook-connect/includes/provider.php:1009
920
+ msgid "Verify Settings Again"
921
+ msgstr ""
922
 
923
+ #: nextend-facebook-connect/includes/provider.php:1010
924
+ msgid "Please save your changes before testing."
925
+ msgstr ""
926
+
927
+ #: nextend-facebook-connect/nextend-social-login.php:22
928
+ #: nextend-facebook-connect/nextend-social-login.php:30
929
  #, php-format
930
+ msgid "Please update %1$s to version %2$s or newer."
931
+ msgstr ""
932
+
933
+ #: nextend-facebook-connect/nextend-social-login.php:22
934
+ #: nextend-facebook-connect/nextend-social-login.php:30
935
+ msgid "Update now!"
936
  msgstr ""
 
 
 
 
937
 
938
+ #: nextend-facebook-connect/nextend-social-login.php:325
939
  #, php-format
940
  msgid ""
941
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
944
  "%s átvette a Nextend Google Connect helyét. Letörölheted a Nextend Google "
945
  "Connect plguint, mivel már nincs rá szükség."
946
 
947
+ #: nextend-facebook-connect/nextend-social-login.php:336
948
  #, php-format
949
  msgid ""
950
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
953
  "%s átvette a Nextend Twitter Connect helyét. Letörölheted a Nextend Twitter "
954
  "Connect plguint, mivel már nincs rá szükség."
955
 
956
+ #: nextend-facebook-connect/nextend-social-login.php:449
957
  msgid "You have logged in successfully."
958
  msgstr ""
959
 
960
+ #: nextend-facebook-connect/nextend-social-login.php:573
961
+ #: nextend-facebook-connect/nextend-social-login.php:892
962
  msgid "Social Login"
963
  msgstr "Közösségi belépés"
964
 
965
+ #: nextend-facebook-connect/nextend-social-login.php:876
966
+ msgid "Social Accounts"
967
+ msgstr ""
968
+
969
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:6
970
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:12
971
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:6
972
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:14
973
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:6
974
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:14
975
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:6
976
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:13
977
+ #, php-format
978
+ msgid "Navigate to %s"
979
+ msgstr "Látogasd meg ezt az oldalt: %s"
980
+
981
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:7
982
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
983
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:7
984
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
985
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:7
986
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
987
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:7
988
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
989
+ #, php-format
990
+ msgid "Log in with your %s credentials if you are not logged in"
991
+ msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
992
+
993
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
994
+ #, php-format
995
+ msgid "Click on the App with App ID: %s"
996
+ msgstr ""
997
+
998
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
999
+ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1000
+ msgstr ""
1001
+
1002
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
1003
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
1004
+ #, php-format
1005
+ msgid ""
1006
+ "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
1007
+ msgstr ""
1008
+ "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1009
+
1010
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
1011
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1012
+ msgid "Click on \"Save Changes\""
1013
+ msgstr "Kattints a \"Save Changes\"-re"
1014
+
1015
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:7
1016
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
1017
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
1018
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
1019
  #, php-format
1020
  msgid ""
1021
  "To allow your visitors to log in with their %1$s account, first you must "
1030
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
1031
  "alapján."
1032
 
1033
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:9
1034
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1035
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1036
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1037
  #, php-format
1038
  msgctxt "App creation"
1039
  msgid "Create %s"
1040
  msgstr "%s létrehozása"
1041
 
1042
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1043
  msgid "Click on the \"Add a New App\" button"
1044
  msgstr "Kattints az \"Add a New App\" gombra"
1045
 
1046
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:15
1047
  msgid "Fill \"Display Name\" and \"Contact Email\""
1048
  msgstr ""
1049
  "Töltsd ki a \"Display name\" mezőt az app nevével. A \"Contact Email\" "
1050
  "mezőbe írd be az email címet, amin keresztül elérhetnek."
1051
 
1052
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:16
1053
  msgid "Click on blue \"Create App ID\" button"
1054
  msgstr "Kattints a kék \"Create App ID\" gombra"
1055
 
1056
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
1057
  msgid ""
1058
  "Move your mouse over Facebook Login and click on the appearing \"Set Up\" "
1059
  "button"
1061
  "Vidd a kurzort a \"Facebook Login\" doboz fölé és kattints a megjelenő \"Set "
1062
  "Up\" gombra."
1063
 
1064
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:18
1065
  msgid "Choose Web"
1066
  msgstr "Válaszd a \"Web\"-et"
1067
 
1068
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1069
  #, php-format
1070
  msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
1071
  msgstr ""
1072
  "Írd be a weboldalad főoldalának címét a \"Site URL\" mezőbe. Valószínűleg ez "
1073
  "lesz az: <b>%s</b>"
1074
 
1075
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:20
1076
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
1077
  msgid "Click on \"Save\""
1078
  msgstr "Kattints a \"Save\" gombra"
1079
 
1080
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:21
1081
  msgid "In the left sidebar, click on \"Facebook Login\""
1082
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1083
 
1084
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
 
 
 
 
 
 
 
 
 
 
 
 
1085
  msgid "In the top of the left sidebar, click on \"Settings\""
1086
  msgstr "A bal oldali menü tetején kattints a \"Settings\"-re"
1087
 
1088
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:25
1089
  msgid ""
1090
  "Here you can see your \"APP ID\" and you can see your \"App secret\" if you "
1091
  "click on the \"Show\" button. These will be needed in plugin's settings."
1093
  "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
1094
  "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
1095
 
1096
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1097
  msgid "Enter your domain name to the App Domains"
1098
  msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
1099
 
1100
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1101
  msgid ""
1102
  "Fill up the \"Privacy Policy URL\". Provide a publicly available and easily "
1103
  "accessible privacy policy that explains what data you are collecting and how "
1107
  "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen "
1108
  "információkat gyűjtesz és mihez kezdesz velük."
1109
 
1110
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1111
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:17
1112
+ #: nextend-facebook-connect/providers/google/admin/import.php:17
1113
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:17
1114
  msgid "Save your changes."
1115
  msgstr "Mentsd el a módosításaidat."
1116
 
1117
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1118
  msgid ""
1119
  "Your application is currently private, which means that only you can log in "
1120
  "with it. In the left sidebar choose \"App Review\" and make your App public"
1123
  "vele. A bal oldali menüben válaszd az \"App Review\" gombot és tedd "
1124
  "nyilvánossá az Appodat."
1125
 
1126
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1127
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
1128
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
1129
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
1130
  #, php-format
1131
  msgid "I am done setting up my %s"
1132
  msgstr "Befejeztem a %s appom elkészítését"
1133
 
1134
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:7
1135
  msgid "Import Facebook configuration"
1136
  msgstr "Facebook konfiguráció importálása"
1137
 
1138
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:8
1139
+ #: nextend-facebook-connect/providers/google/admin/import.php:8
1140
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:8
1141
  msgid "Be sure to read the following notices before you proceed."
1142
  msgstr "Mielőtt tovább lépnél, olvasd el az alábbi figyelmeztetéseket."
1143
 
1144
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:10
1145
+ #: nextend-facebook-connect/providers/google/admin/import.php:10
1146
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:10
1147
  msgid "Important steps before the import"
1148
  msgstr "Fontos lépések az importálás megkezdése előtt"
1149
 
1150
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:11
1151
+ #: nextend-facebook-connect/providers/google/admin/import.php:11
1152
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:11
1153
  msgid ""
1154
  "Make sure that the redirect URI for your app is correct before proceeding."
1155
  msgstr ""
1156
  "A továbblépés előtt győződj meg róla, hogy a \"Redirect URI\" az appodnál "
1157
  "helyesen van beállítva."
1158
 
1159
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:13
1160
+ #: nextend-facebook-connect/providers/google/admin/import.php:13
1161
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:13
1162
  #, php-format
1163
  msgid "Visit %s."
1164
  msgstr "Látogass el ide: %s."
1165
 
1166
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:14
1167
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:14
1168
  msgid "Select your app."
1169
  msgstr "Válaszd ki az appodat."
1170
 
1171
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:15
1172
  msgid ""
1173
  "Go to the Settings menu which you can find below the Facebook Login in the "
1174
  "left menu."
1175
  msgstr ""
1176
  "Menj a \"Settings\" menübe a \"Facebook Login\" alatt a bal oldali menüben."
1177
 
1178
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:16
1179
+ #: nextend-facebook-connect/providers/google/admin/import.php:16
1180
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:16
1181
  #, php-format
1182
  msgid "Make sure that the \"%1$s\" field contains %2$s"
1183
  msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
1184
 
1185
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:20
1186
+ #: nextend-facebook-connect/providers/google/admin/import.php:20
1187
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:20
1188
  msgid "The following settings will be imported:"
1189
  msgstr "Az alábbi beállítások kerülnek importálásra:"
1190
 
1191
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:22
1192
+ #: nextend-facebook-connect/providers/google/admin/import.php:22
1193
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:22
1194
  msgid "Your old API configurations"
1195
  msgstr "A régi API beállításaid"
1196
 
1197
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:23
1198
+ #: nextend-facebook-connect/providers/google/admin/import.php:23
1199
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:23
1200
  msgid "The user prefix you set"
1201
  msgstr "A beállított felhasználónév előtag"
1202
 
1203
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:26
1204
+ #: nextend-facebook-connect/providers/google/admin/import.php:26
1205
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:26
1206
  msgid "Create a backup of the old settings"
1207
  msgstr "Készíts biztonsági mentést a régi beállításokról"
1208
 
1209
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:29
1210
+ #: nextend-facebook-connect/providers/google/admin/import.php:29
1211
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:29
1212
  msgid "Other changes"
1213
  msgstr "Egyéb változások"
1214
 
1215
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:31
1216
+ #: nextend-facebook-connect/providers/google/admin/import.php:31
1217
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:31
1218
  msgid ""
1219
  "The custom redirect URI is now handled globally for all providers, so it "
1220
  "won't be imported from the previous version. Visit \"Nextend Social Login > "
1225
  "Social Login > Általános beállítások\" fülre az új átirányítási link "
1226
  "beállításához."
1227
 
1228
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:32
1229
+ #: nextend-facebook-connect/providers/google/admin/import.php:32
1230
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:32
1231
  msgid ""
1232
  "The login button's layout will be changed to a new, more modern look. If you "
1233
  "used any custom buttons that won't be imported."
1236
  "valamilyen egyedi gombot használtál azok a beállítások nem kerülnek "
1237
  "importálásra."
1238
 
1239
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:33
1240
+ #: nextend-facebook-connect/providers/google/admin/import.php:33
1241
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:33
1242
  msgid ""
1243
  "The old version's PHP functions are not available anymore. This means if you "
1244
  "used any custom codes where you used these old functions, you need to remove "
1248
  "jelenti, hogy ha bármilyen egyedi kódban használtad őket el kell távolítanod "
1249
  "a kódot."
1250
 
1251
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:35
1252
+ #: nextend-facebook-connect/providers/google/admin/import.php:35
1253
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:35
1254
  msgid ""
1255
  "After the importing process finishes, you will need to <b>test</b> your app "
1256
  "and <b>enable</b> the provider. You can do both in the next screen."
1259
  "appodat majd <b>engedélyezni</a> a providert. Mindkettőt meg tudod tenni a "
1260
  "következő oldalon."
1261
 
1262
+ #: nextend-facebook-connect/providers/facebook/admin/import.php:42
1263
+ #: nextend-facebook-connect/providers/google/admin/import.php:42
1264
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:43
1265
  msgid "Import Configuration"
1266
  msgstr "Konfiguráció Importálása"
1267
 
1268
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:26
1269
  msgid "App ID"
1270
  msgstr "App ID"
1271
 
1272
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:27
1273
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:39
1274
+ #: nextend-facebook-connect/providers/google/admin/settings.php:26
1275
+ #: nextend-facebook-connect/providers/google/admin/settings.php:39
1276
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:26
1277
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:25
1278
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:37
1279
  msgid "Required"
1280
  msgstr "Kötelező"
1281
 
1282
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:32
1283
+ #: nextend-facebook-connect/providers/google/admin/settings.php:33
1284
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:31
1285
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:31
1286
  #, php-format
1287
  msgid ""
1288
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1291
  "Ha nem vagy benne biztos, hogy mit kell írnod a(z) %1$s mezőbe, menj vissza "
1292
  "az <a href=\"%2$s\">Első lépések</a> fülre."
1293
 
1294
+ #: nextend-facebook-connect/providers/facebook/admin/settings.php:38
1295
  msgid "App Secret"
1296
  msgstr "App Secret"
1297
 
1298
+ #: nextend-facebook-connect/providers/facebook/facebook.php:49
1299
  msgid "Continue with <b>Facebook</b>"
1300
  msgstr "Folytatás a <b>Facebookkal</b>"
1301
 
1302
+ #: nextend-facebook-connect/providers/facebook/facebook.php:50
1303
  msgid "Link account with <b>Facebook</b>"
1304
  msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
1305
 
1306
+ #: nextend-facebook-connect/providers/facebook/facebook.php:51
1307
  msgid "Unlink account from <b>Facebook</b>"
1308
  msgstr "Szétkapcsolás <b>Facebook</b>-kal"
1309
 
1310
+ #: nextend-facebook-connect/providers/facebook/facebook.php:109
1311
+ #: nextend-facebook-connect/providers/google/google.php:71
1312
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
1313
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1314
  #, php-format
1315
  msgid ""
1316
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1318
  "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s "
1319
  "helyes."
1320
 
1321
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1322
+ msgid "Click on the \"Credentials\" in the left hand menu"
1323
+ msgstr ""
1324
+
1325
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1326
+ #, php-format
1327
+ msgid "Click on OAuth 2.0 client ID: %s"
1328
+ msgstr ""
1329
+
1330
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1331
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1332
+ #, php-format
1333
+ msgid ""
1334
+ "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1335
+ msgstr ""
1336
+ "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1337
+
1338
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1339
  msgid ""
1340
  "If you don't have a project yet, you'll need to create one. You can do this "
1341
  "by clicking on the blue \"Create project\" button on the right side"
1343
  "Ha még nincs projected, újat kell készítened. Ezt megteheted a kék \"Create "
1344
  "project\" gombra kattintva a jobb oldalon."
1345
 
1346
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:17
1347
  msgid "Name your project and then click on the Create button"
1348
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra"
1349
 
1350
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1351
  msgid "Once you have a project, you'll end up in the dashboard."
1352
  msgstr "Ha van már projekted át leszel irányítva az irányítópultra"
1353
 
1354
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1355
  msgid ""
1356
  "Click on the \"Credentials\" in the left hand menu to create new API "
1357
  "credentials"
1359
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
1360
  "adatokat készíts"
1361
 
1362
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
1363
  msgid ""
1364
  "Go to the OAuth consent screen tab and enter a product name and provide the "
1365
  "Privacy Policy URL, then click on the save button."
1367
  "Menj az \"OAuth consent screen\" fülre. Írd be a termék nevét és írd be a "
1368
  "linket az Adatvédelmi Irányelvek oldalad linkjét. Kattints a Save gombra."
1369
 
1370
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
1371
  msgid ""
1372
  "Go back to the Credentials tab and locate the small box at the middle. Click "
1373
  "on the blue \"Create credentials\" button. Chose the \"OAuth client ID\" "
1377
  "Kattints a kék \"Create credentials\" gombra. Válaszd ki az \"OAuth client ID"
1378
  "\"-t a lenyíló listából."
1379
 
1380
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
1381
  msgid "Your application type should be \"Web application\""
1382
  msgstr "Az applikációd típusa legyen \"Web application\""
1383
 
1384
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
1385
  msgid "Name your application"
1386
  msgstr "Adj nevet az alkalmazásodnak"
1387
 
1388
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:25
1389
  msgid "Click on the Create button"
1390
  msgstr "Kattints a \"Create\" gombra"
1391
 
1392
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
1393
  msgid ""
1394
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1395
  "the Credentials in the left hand menu and select your app by clicking on its "
1400
  "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a "
1401
  "nevére kattintva. Innen ki tudod másolni a Client ID-t és Client Secretet."
1402
 
1403
+ #: nextend-facebook-connect/providers/google/admin/import.php:7
1404
  msgid "Import Google configuration"
1405
  msgstr "Google konfiguráció importálása"
1406
 
1407
+ #: nextend-facebook-connect/providers/google/admin/import.php:14
1408
  msgid "If you have more projects, select the one where your app is."
1409
  msgstr "Ha több projekted van, válaszd ki azt, amelyikben az appod van."
1410
 
1411
+ #: nextend-facebook-connect/providers/google/admin/import.php:15
1412
  msgid "Click on Credentials at the left-hand menu then select your app."
1413
  msgstr ""
1414
  "Kattints a \"Credentials\" feliratra a bal oldali menüben majd válaszd ki az "
1415
  "appodat."
1416
 
1417
+ #: nextend-facebook-connect/providers/google/admin/settings.php:25
1418
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:24
1419
  msgid "Client ID"
1420
  msgstr "Client ID"
1421
 
1422
+ #: nextend-facebook-connect/providers/google/admin/settings.php:38
1423
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:36
1424
  msgid "Client Secret"
1425
  msgstr "Client Secret"
1426
 
1427
+ #: nextend-facebook-connect/providers/google/google.php:38
1428
  msgid "Continue with <b>Google</b>"
1429
  msgstr "Folytatás a <b>Google-el</b>"
1430
 
1431
+ #: nextend-facebook-connect/providers/google/google.php:39
1432
  msgid "Link account with <b>Google</b>"
1433
  msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
1434
 
1435
+ #: nextend-facebook-connect/providers/google/google.php:40
1436
  msgid "Unlink account from <b>Google</b>"
1437
  msgstr "Szétkapcsolás <b>Google</b>-lel"
1438
 
1439
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1440
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1441
+ msgid "Click on the App"
1442
+ msgstr ""
1443
+
1444
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1445
+ msgid "Click on the \"Settings\" tab"
1446
+ msgstr ""
1447
+
1448
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1449
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1450
+ #, php-format
1451
+ msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
1452
+ msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
1453
+
1454
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1455
+ msgid "Click on \"Update Settings\""
1456
+ msgstr ""
1457
+
1458
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1459
  msgid "Click on the \"Create New App\" button"
1460
  msgstr "Kattints a \"Create New App\" gombra"
1461
 
1462
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:17
1463
  #, php-format
1464
  msgid ""
1465
  "Fill the name and description fields. Then enter your site's URL to the "
1468
  "Írd be az appod nevét a \"name\" és a leírását a \"description\" mezőbe. "
1469
  "Aztán írd be az oldalad címét a Website mezőbe: <b>%s</b>"
1470
 
1471
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
 
 
 
 
 
1472
  msgid "Accept the Twitter Developer Agreement"
1473
  msgstr "Fogadd el a Twitter Fejlesztői Megállapodást"
1474
 
1475
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
1476
  msgid ""
1477
  "Create your application by clicking on the Create your Twitter application "
1478
  "button"
1480
  "Hozd létre az alkalmazásodat a \"Create your Twitter application\" gombra "
1481
  "kattintva"
1482
 
1483
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
1484
  msgid ""
1485
  "Go to the Keys and Access Tokens tab and find the Consumer Key and Secret"
1486
  msgstr ""
1487
  "Menj a \"Keys and Access Tokens\" fülre ahol megtalálod a \"Consumer Key\"-t "
1488
  "és \"Secret\"-et"
1489
 
1490
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:7
1491
  msgid "Import Twitter configuration"
1492
  msgstr "Twitter konfiguráció importálása"
1493
 
1494
+ #: nextend-facebook-connect/providers/twitter/admin/import.php:15
1495
  msgid "Go to the Settings tab."
1496
  msgstr "Menj a \"Settings\" fülre."
1497
 
1498
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:25
1499
  msgid "Consumer Key"
1500
  msgstr "Consumer Key"
1501
 
1502
+ #: nextend-facebook-connect/providers/twitter/admin/settings.php:36
1503
  msgid "Consumer Secret"
1504
  msgstr "Consumer Secret"
1505
 
1506
+ #: nextend-facebook-connect/providers/twitter/twitter.php:38
1507
  msgid "Continue with <b>Twitter</b>"
1508
  msgstr "Folytatás a <b>Twitterrel</b>"
1509
 
1510
+ #: nextend-facebook-connect/providers/twitter/twitter.php:39
1511
  msgid "Link account with <b>Twitter</b>"
1512
  msgstr "Fiók összekapcsolása a <b>Twitter</b>-rel"
1513
 
1514
+ #: nextend-facebook-connect/providers/twitter/twitter.php:40
1515
  msgid "Unlink account from <b>Twitter</b>"
1516
  msgstr "Szétkapcsolás <b>Twitter</b>-rel"
1517
 
1518
+ #: nextend-facebook-connect/widget.php:10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1519
  #, php-format
1520
  msgid "%s Buttons"
1521
  msgstr "%s Gombok"
1522
 
1523
+ #: nextend-facebook-connect/widget.php:22
1524
  msgid "Title:"
1525
  msgstr ""
1526
 
1527
+ #: nextend-facebook-connect/widget.php:30
1528
  msgid "Button style:"
1529
  msgstr "Gomb stílus:"
1530
 
1531
+ #: nextend-social-login-pro/class-provider-extension.php:78
1532
  msgid "Social login is not allowed with this role!"
1533
  msgstr ""
1534
  "A közösségi fiókkal való belépés nem engedélyezett erre a felhasználói "
1535
  "szintre."
1536
 
1537
+ #: nextend-social-login-pro/class-provider-extension.php:155
1538
+ #: nextend-social-login-pro/class-provider-extension.php:157
1539
+ #: nextend-social-login-pro/class-provider-extension.php:160
1540
+ #: nextend-social-login-pro/class-provider-extension.php:166
1541
+ #: nextend-social-login-pro/class-provider-extension.php:179
1542
+ #: nextend-social-login-pro/class-provider-extension.php:181
1543
+ #: nextend-social-login-pro/class-provider-extension.php:184
1544
+ msgid "ERROR"
1545
+ msgstr "HIBA"
1546
+
1547
+ #: nextend-social-login-pro/class-provider-extension.php:155
1548
  msgid "Please enter a username."
1549
  msgstr ""
1550
 
1551
+ #: nextend-social-login-pro/class-provider-extension.php:157
1552
  msgid ""
1553
  "This username is invalid because it uses illegal characters. Please enter a "
1554
  "valid username."
1555
  msgstr ""
1556
 
1557
+ #: nextend-social-login-pro/class-provider-extension.php:160
1558
  msgid "This username is already registered. Please choose another one."
1559
  msgstr ""
1560
 
1561
+ #: nextend-social-login-pro/class-provider-extension.php:166
1562
  msgid "Sorry, that username is not allowed."
1563
  msgstr ""
1564
 
1565
+ #: nextend-social-login-pro/class-provider-extension.php:179
1566
+ msgid "Please enter an email address."
1567
+ msgstr ""
1568
+
1569
+ #: nextend-social-login-pro/class-provider-extension.php:181
1570
+ msgid "The email address isn&#8217;t correct."
1571
+ msgstr ""
1572
+
1573
+ #: nextend-social-login-pro/class-provider-extension.php:184
1574
+ msgid "This email is already registered, please choose another one."
1575
+ msgstr ""
1576
+
1577
+ #: nextend-social-login-pro/class-provider-extension.php:238
1578
+ msgid "Registration Form"
1579
+ msgstr ""
1580
+
1581
+ #: nextend-social-login-pro/class-provider-extension.php:238
1582
+ msgid "Register For This Site!"
1583
+ msgstr ""
1584
+
1585
+ #: nextend-social-login-pro/class-provider-extension.php:263
1586
  msgid "Username"
1587
  msgstr ""
1588
 
1589
+ #: nextend-social-login-pro/class-provider-extension.php:270
1590
+ msgid "Email"
1591
+ msgstr "Email"
1592
+
1593
+ #: nextend-social-login-pro/class-provider-extension.php:275
1594
+ msgid "Registration confirmation will be emailed to you."
1595
+ msgstr ""
1596
+
1597
+ #: nextend-social-login-pro/class-provider-extension.php:279
1598
+ msgid "Register"
1599
+ msgstr ""
1600
+
1601
+ #: nextend-social-login-pro/class-provider-extension.php:373
1602
  msgid ""
1603
  "This email is already registered, please login in to your account to link "
1604
  "with Facebook."
1605
  msgstr ""
1606
 
1607
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1608
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
1609
+ #, php-format
1610
+ msgid ""
1611
+ "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</b>"
1612
+ msgstr ""
1613
+ "Tedd a következő linket az \"Authorized Redirect URLs:\" mezőbe: <b>%s</b>"
1614
+
1615
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1616
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
1617
+ msgid "Hit update to save the changes"
1618
+ msgstr "Kattints az \"update\" gombra és mentsd el a beállításaidat."
1619
+
1620
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1621
  msgid "Locate the yellow \"Create application\" button and click on it."
1622
  msgstr "Keresd meg a sárga \"Create application\" gombot és kattints rá."
1623
 
1624
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1625
  msgid "Fill the fields marked with *"
1626
  msgstr "Töltsd ki a csillaggal jelölt mezőket"
1627
 
1628
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
1629
  #, php-format
1630
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
1631
  msgstr ""
1632
  "Írd be a weboldalad főoldalának címét a \"Website URL\" mezőbe. "
1633
  "Valószínűleg ez lesz az: <b>%s</b>"
1634
 
1635
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
1636
  msgid "Accept the Terms of use and hit Submit"
1637
  msgstr ""
1638
  "Fogadd el a Felhasználási Feltétleket és kattints a Beküldés (Submit) gombra"
1639
 
1640
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
1641
  msgid "Find the necessary Authentication Keys under the Authentication menu"
1642
  msgstr ""
1643
  "A szükséges \"Authentication Keys\"-t az Authentication menüben találod"
1644
 
1645
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
 
 
 
 
 
 
 
1646
  msgid ""
1647
  "You probably want to enable the \"r_emailaddress\" under the Default "
1648
  "Application Permissions"
1650
  "Valószínűleg be kell kapcsolnod a \"r_emailaddress\"-t a \"Default "
1651
  "Application Permissions\" alatt"
1652
 
1653
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
 
 
 
 
1654
  msgid "Continue with <b>LinkedIn</b>"
1655
  msgstr "Folytatás a <b>LinkedInnel</b>"
1656
 
1657
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
1658
  msgid "Link account with <b>LinkedIn</b>"
1659
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
1660
 
1661
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
1662
  msgid "Unlink account from <b>LinkedIn</b>"
1663
  msgstr "Szétkapcsolás <b>LinkedIn</b>-nel"
1664
 
1665
+ #: nextend-social-login-pro/template-parts/embedded-login-layout-above-separator.php:8
1666
+ #: nextend-social-login-pro/template-parts/embedded-login-layout-below-separator.php:8
1667
+ #: nextend-social-login-pro/template-parts/login-layout-above-separator.php:10
1668
+ #: nextend-social-login-pro/template-parts/login-layout-below-separator.php:14
1669
  msgid "OR"
1670
  msgstr "VAGY"
1671
 
1672
+ #: nextend-social-login-pro/template-parts/woocommerce-edit-account-after.php:1
1673
+ #: nextend-social-login-pro/template-parts/woocommerce-edit-account-before.php:1
1674
  msgid "Social accounts"
1675
  msgstr "Közösségi fiókok"
1676
 
1677
+ #~ msgid ""
1678
+ #~ "%5$s plugin (version: %1$s, required: %2$s or newer) is not compatible "
1679
+ #~ "with the PRO addon (version: %3$s, required: %4$s or newer). Please "
1680
+ #~ "upgrade to the latest version! PRO addon disabled."
1681
+ #~ msgstr ""
1682
+ #~ "%5$s plugin (jelenlegi verzió %1$s, szükséges verzió: %2$s vagy újabb) "
1683
+ #~ "nem kompatibilis a Pro Kiegészítővel (jelenlegi verzió: %3$s , szükséges "
1684
+ #~ "verzió: %4$s vagy újabb). Kérlek frissítd a legújabb verzióra! A Pro "
1685
+ #~ "Kiegészítő kikapcsolva."
1686
+
1687
+ #~ msgid "%s needs the CURL PHP extension."
1688
+ #~ msgstr "A %s-nak szüksége van a CURL PHP kiegészítőre."
1689
+
1690
+ #~ msgid "Https protocol is not supported or disabled in CURL."
1691
+ #~ msgstr "A HTTPS protokol nincs támogat a CURL-ben vagy ki van kapcsolva."
1692
+
1693
+ #~ msgid "Not Tested"
1694
+ #~ msgstr "Nincs Tesztelve"
1695
+
1696
+ #~ msgid "Test to Enable"
1697
+ #~ msgstr "Tesztelés az Engedélyezéshez"
1698
+
1699
+ #~ msgid ""
1700
+ #~ "This %s account is already linked with other account. Linking process "
1701
+ #~ "failed!"
1702
+ #~ msgstr ""
1703
+ #~ "Az %s fiók már haszálva van egy másik közösségi fiókkal. Az "
1704
+ #~ "összekapcsolási folyamat sikertelen!"
1705
+
1706
+ #~ msgid "Your configuration needs testing"
1707
+ #~ msgstr "A konfigurációt le kell tesztelni"
1708
+
1709
+ #~ msgid "Test the Configuration"
1710
+ #~ msgstr "Teszteld le a Konfigurációt"
1711
+
1712
+ #~ msgid "Test Again"
1713
+ #~ msgstr "Teszteld Újra"
1714
+
1715
  #~ msgctxt "App creation"
1716
  #~ msgid "Create %"
1717
  #~ msgstr "%s"
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: ss3\n"
4
- "POT-Creation-Date: 2018-03-01 15:22+0100\n"
5
- "PO-Revision-Date: 2018-03-01 15:23+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
@@ -17,46 +17,46 @@ msgstr ""
17
  "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
18
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
19
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n"
20
- "X-Poedit-SearchPath-0: nextend-social-login-pro-new\n"
21
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
22
- "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect-new/providers/"
23
- "twitter/compat\n"
24
- "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect-new/providers/google/"
 
 
25
  "compat\n"
26
- "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect-new/providers/"
27
- "facebook/compat\n"
28
 
29
- #: nextend-facebook-connect/admin/admin.php:133
30
  #, php-format
31
  msgid "%s needs json_decode function."
32
  msgstr ""
33
 
34
- #: nextend-facebook-connect/admin/admin.php:133
35
  msgid "Please contact your server administrator and ask for solution!"
36
  msgstr ""
37
 
38
- #: nextend-facebook-connect/admin/admin.php:151
39
- #: nextend-facebook-connect/admin/admin.php:191
40
  msgid "Settings saved."
41
  msgstr ""
42
 
43
- #: nextend-facebook-connect/admin/admin.php:159
44
  msgid "The authorization was successful"
45
  msgstr ""
46
 
47
- #: nextend-facebook-connect/admin/admin.php:170
48
  msgid "Deauthorize completed."
49
  msgstr ""
50
 
51
- #: nextend-facebook-connect/admin/admin.php:282
52
  #: nextend-facebook-connect/admin/templates-provider/menu.php:10
53
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:125
54
- #: nextend-facebook-connect/admin/templates/providers.php:78
55
- #: nextend-facebook-connect/admin/templates/providers.php:90
56
  msgid "Settings"
57
  msgstr ""
58
 
59
- #: nextend-facebook-connect/admin/admin.php:356
60
  #: nextend-facebook-connect/includes/oauth2.php:113
61
  #: nextend-facebook-connect/includes/oauth2.php:238
62
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
@@ -65,6 +65,37 @@ msgstr ""
65
  msgid "Unexpected response: %s"
66
  msgstr ""
67
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
68
  #: nextend-facebook-connect/admin/templates-provider/buttons.php:72
69
  msgid "Login label"
70
  msgstr ""
@@ -105,20 +136,25 @@ msgstr ""
105
 
106
  #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
107
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:122
108
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:262
109
- #: nextend-facebook-connect/admin/templates/global-settings.php:103
 
 
 
 
 
110
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
111
  #: nextend-facebook-connect/providers/google/admin/settings.php:47
112
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:46
113
- #: nextend-social-login-pro-new/providers/linkedin/admin/settings.php:45
114
  msgid "Save Changes"
115
  msgstr ""
116
 
117
  #: nextend-facebook-connect/admin/templates-provider/menu.php:8
118
- #: nextend-facebook-connect/admin/templates/providers.php:58
119
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:7
120
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:7
121
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:6
122
  msgid "Getting Started"
123
  msgstr ""
124
 
@@ -147,7 +183,8 @@ msgid "Used when username is invalid"
147
  msgstr ""
148
 
149
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:16
150
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:14
 
151
  msgid "PRO settings"
152
  msgstr ""
153
 
@@ -184,9 +221,9 @@ msgid "Automatically connect the existing account upon registration"
184
  msgstr ""
185
 
186
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:67
187
- #: nextend-facebook-connect/admin/templates/global-settings.php:50
188
- #: nextend-facebook-connect/admin/templates/providers.php:33
189
- #: nextend-facebook-connect/includes/provider.php:903
190
  msgid "Disabled"
191
  msgstr ""
192
 
@@ -203,9 +240,11 @@ msgid "Default roles for user who registered with this provider"
203
  msgstr ""
204
 
205
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:103
206
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:61
207
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:137
208
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:222
 
 
209
  #: nextend-facebook-connect/widget.php:34
210
  msgid "Default"
211
  msgstr ""
@@ -214,451 +253,602 @@ msgstr ""
214
  msgid "Shortcode"
215
  msgstr ""
216
 
217
- #: nextend-facebook-connect/admin/templates-provider/usage.php:21
218
  msgid "Simple link"
219
  msgstr ""
220
 
221
- #: nextend-facebook-connect/admin/templates-provider/usage.php:24
222
  msgid "Click here to login or register"
223
  msgstr ""
224
 
225
- #: nextend-facebook-connect/admin/templates-provider/usage.php:29
226
  msgid "Image button"
227
  msgstr ""
228
 
229
- #: nextend-facebook-connect/admin/templates-provider/usage.php:32
230
  msgid "Image url"
231
  msgstr ""
232
 
233
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:23
234
- msgid "Login form"
235
  msgstr ""
236
 
237
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:27
238
- msgid "Show buttons on Login form"
239
  msgstr ""
240
 
241
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:30
242
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:45
243
- msgid "Show login buttons"
244
  msgstr ""
245
 
246
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:33
247
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:48
248
- msgid "Hide login buttons"
249
  msgstr ""
250
 
251
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:38
252
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:42
253
- msgid "Registration form"
254
  msgstr ""
255
 
256
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:53
257
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:57
258
- msgid "Login form button style"
259
  msgstr ""
260
 
261
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:67
262
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:143
263
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:228
264
- #: nextend-facebook-connect/widget.php:39
265
- msgid "Icon"
266
  msgstr ""
267
 
268
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:74
269
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:78
270
- msgid "Login layout"
271
  msgstr ""
272
 
273
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:82
274
- msgid "Below"
275
  msgstr ""
276
 
277
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:88
278
- msgid "Below with separator"
 
279
  msgstr ""
280
 
281
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:94
282
- msgid "Below and floating"
283
  msgstr ""
284
 
285
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:100
286
- msgid "Above"
287
  msgstr ""
288
 
289
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:106
290
- msgid "Above with separator"
 
 
291
  msgstr ""
292
 
293
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:113
294
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:117
295
- msgid "Comment login button"
 
296
  msgstr ""
297
 
298
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:120
299
- msgid "Show"
 
 
300
  msgstr ""
301
 
302
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:123
303
- msgid "Hide"
 
 
 
 
 
 
304
  msgstr ""
305
 
306
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:125
 
 
 
 
 
307
  #, php-format
308
- msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
309
  msgstr ""
310
 
311
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:125
312
- msgid "Discussion"
 
313
  msgstr ""
314
 
315
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:125
316
- msgid "Users must be registered and logged in to comment"
317
  msgstr ""
318
 
319
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:129
320
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:133
321
- msgid "Comment button style"
322
  msgstr ""
323
 
324
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:150
325
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:154
326
- msgid "WooCommerce login form"
 
 
327
  msgstr ""
328
 
329
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:157
330
- msgid "No Connect button in login form"
331
  msgstr ""
332
 
333
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:160
334
- msgid "Connect button before login form"
335
  msgstr ""
336
 
337
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:161
338
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:166
339
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:184
340
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:189
341
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:203
342
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:208
343
- msgid "Action:"
344
  msgstr ""
345
 
346
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:165
347
- msgid "Connect button after login form"
 
 
348
  msgstr ""
349
 
350
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:173
351
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:177
352
- msgid "WooCommerce billing form"
353
  msgstr ""
354
 
355
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:180
356
- msgid "No Connect button in billing form"
 
 
 
357
  msgstr ""
358
 
359
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:183
360
- msgid "Connect button before billing form"
 
 
361
  msgstr ""
362
 
363
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:188
364
- msgid "Connect button after billing form"
365
  msgstr ""
366
 
367
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:195
368
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:199
369
- msgid "WooCommerce account details"
370
  msgstr ""
371
 
372
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:202
373
- msgid "Link buttons before account details"
374
  msgstr ""
375
 
376
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:207
377
- msgid "Link buttons after account details"
 
 
 
378
  msgstr ""
379
 
380
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:214
381
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:218
382
- msgid "WooCommerce button style"
383
  msgstr ""
384
 
385
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:235
386
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:239
387
- msgid "Registration notification sent to"
388
  msgstr ""
389
 
390
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:242
391
- msgid "WordPress default"
392
  msgstr ""
393
 
394
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:245
395
- msgid "Nobody"
 
 
396
  msgstr ""
397
 
398
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:248
399
- msgid "User"
400
  msgstr ""
401
 
402
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:251
403
- msgid "Admin"
404
  msgstr ""
405
 
406
- #: nextend-facebook-connect/admin/templates/global-settings-pro.php:254
407
- msgid "User and Admin"
 
408
  msgstr ""
409
 
410
- #: nextend-facebook-connect/admin/templates/global-settings.php:43
411
- #: nextend-facebook-connect/admin/templates/global-settings.php:47
412
- msgid "Debug mode"
413
  msgstr ""
414
 
415
- #: nextend-facebook-connect/admin/templates/global-settings.php:53
416
- #: nextend-facebook-connect/admin/templates/providers.php:36
417
- #: nextend-facebook-connect/includes/provider.php:906
418
- msgid "Enabled"
419
  msgstr ""
420
 
421
- #: nextend-facebook-connect/admin/templates/global-settings.php:59
422
- msgid "Fixed redirect url for login"
423
  msgstr ""
424
 
425
- #: nextend-facebook-connect/admin/templates/global-settings.php:72
426
- #: nextend-facebook-connect/admin/templates/global-settings.php:93
427
- msgid "Use custom"
428
  msgstr ""
429
 
430
- #: nextend-facebook-connect/admin/templates/global-settings.php:80
431
- msgid "Fixed redirect url for register"
432
  msgstr ""
433
 
434
- #: nextend-facebook-connect/admin/templates/header.php:14
435
- msgid "Docs"
436
  msgstr ""
437
 
438
- #: nextend-facebook-connect/admin/templates/header.php:17
439
- msgid "Support"
440
  msgstr ""
441
 
442
- #: nextend-facebook-connect/admin/templates/header.php:20
443
- #: nextend-facebook-connect/admin/templates/menu.php:12
444
- msgid "Pro Addon"
445
  msgstr ""
446
 
447
- #: nextend-facebook-connect/admin/templates/menu.php:6
448
- msgid "Providers"
449
  msgstr ""
450
 
451
- #: nextend-facebook-connect/admin/templates/menu.php:8
452
- msgid "Global Settings"
453
  msgstr ""
454
 
455
- #: nextend-facebook-connect/admin/templates/pro-addon.php:13
456
- msgid "Error"
457
  msgstr ""
458
 
459
- #: nextend-facebook-connect/admin/templates/pro-addon.php:14
460
- msgid ""
461
- "You don’t have sufficient permissions to install and activate plugins. "
462
- "Please contact your site’s administrator!"
463
  msgstr ""
464
 
465
- #: nextend-facebook-connect/admin/templates/pro-addon.php:22
466
- #: nextend-facebook-connect/admin/templates/pro-addon.php:32
467
- #: nextend-facebook-connect/admin/templates/pro.php:34
468
- msgid "Activate Pro Addon"
469
  msgstr ""
470
 
471
- #: nextend-facebook-connect/admin/templates/pro-addon.php:23
472
  msgid ""
473
- "Pro Addon is installed but not activated. To be able to use the Pro "
474
- "features, you need to activate it."
475
  msgstr ""
476
 
477
- #: nextend-facebook-connect/admin/templates/pro-addon.php:37
478
- #: nextend-facebook-connect/admin/templates/pro-addon.php:215
479
- msgid "Deauthorize Pro Addon"
480
  msgstr ""
481
 
482
- #: nextend-facebook-connect/admin/templates/pro-addon.php:48
483
- #: nextend-facebook-connect/admin/templates/pro.php:43
484
- msgid "Pro Addon is not installed"
485
  msgstr ""
486
 
487
- #: nextend-facebook-connect/admin/templates/pro-addon.php:50
488
- msgid ""
489
- "To access the Pro features, you need to install and activate the Pro Addon."
490
  msgstr ""
491
 
492
- #: nextend-facebook-connect/admin/templates/pro-addon.php:59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
493
  #, php-format
494
- msgid "Install %s now"
495
  msgstr ""
496
 
497
- #: nextend-facebook-connect/admin/templates/pro-addon.php:60
498
- #: nextend-facebook-connect/admin/templates/pro.php:47
499
- msgid "Install Pro Addon"
500
  msgstr ""
501
 
502
- #: nextend-facebook-connect/admin/templates/pro-addon.php:94
503
- msgid "Activating..."
504
  msgstr ""
505
 
506
- #: nextend-facebook-connect/admin/templates/pro-addon.php:126
507
- msgid "Authorize your Pro Addon"
508
  msgstr ""
509
 
510
- #: nextend-facebook-connect/admin/templates/pro-addon.php:127
511
- msgid ""
512
- "To be able to use the Pro features, you need to authorize Nextend Social "
513
- "Connect Pro Addon. You can do this by clicking on the Authorize button below "
514
- "then select the related purchase."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
515
  msgstr ""
516
 
517
- #: nextend-facebook-connect/admin/templates/pro-addon.php:132
518
- msgid "Authorize"
519
  msgstr ""
520
 
521
- #: nextend-facebook-connect/admin/templates/pro-addon.php:189
522
- msgid "License key"
523
  msgstr ""
524
 
525
- #: nextend-facebook-connect/admin/templates/pro-addon.php:206
526
- msgid "Pro Addon is installed and activated"
527
  msgstr ""
528
 
529
- #: nextend-facebook-connect/admin/templates/pro-addon.php:208
530
- msgid ""
531
- "You installed and activated the Pro Addon. If you don’t want to use it "
532
- "anymore, you can deauthorize using the button below."
533
  msgstr ""
534
 
535
- #: nextend-facebook-connect/admin/templates/pro.php:8
536
- msgid "Get Pro Addon to unlock more features"
 
 
537
  msgstr ""
538
 
539
- #: nextend-facebook-connect/admin/templates/pro.php:9
540
- #, php-format
541
- msgid ""
542
- "The features below are available in %s Pro Addon. Get it today and tweak the "
543
- "awesome settings."
544
  msgstr ""
545
 
546
- #: nextend-facebook-connect/admin/templates/pro.php:10
547
- msgid ""
548
- "If you already have a license, you can Authorize your Pro Addon. Otherwise "
549
- "you can purchase it using the button below."
550
  msgstr ""
551
 
552
- #: nextend-facebook-connect/admin/templates/pro.php:14
553
- msgid "Buy Pro Addon"
554
  msgstr ""
555
 
556
- #: nextend-facebook-connect/admin/templates/pro.php:16
557
- msgid "Authorize Pro Addon"
558
  msgstr ""
559
 
560
- #: nextend-facebook-connect/admin/templates/pro.php:25
561
- msgid "Pro Addon is not activated"
562
  msgstr ""
563
 
564
- #: nextend-facebook-connect/admin/templates/pro.php:26
565
- #: nextend-facebook-connect/admin/templates/pro.php:44
566
- msgid ""
567
- "To be able to use the Pro features, you need to install and activate the "
568
- "Nextend Social Connect Pro Addon."
569
  msgstr ""
570
 
571
- #: nextend-facebook-connect/admin/templates/providers.php:24
572
- msgid "Not Available"
573
  msgstr ""
574
 
575
- #: nextend-facebook-connect/admin/templates/providers.php:27
576
- msgid "Not Configured"
577
  msgstr ""
578
 
579
- #: nextend-facebook-connect/admin/templates/providers.php:30
580
- msgid "Not Tested"
581
  msgstr ""
582
 
583
- #: nextend-facebook-connect/admin/templates/providers.php:39
584
- msgid "Legacy"
585
  msgstr ""
586
 
587
- #: nextend-facebook-connect/admin/templates/providers.php:51
588
- msgid "Upgrade Now"
 
589
  msgstr ""
590
 
591
- #: nextend-facebook-connect/admin/templates/providers.php:66
592
- msgid "Test to Enable"
593
  msgstr ""
594
 
595
- #: nextend-facebook-connect/admin/templates/providers.php:74
596
- #: nextend-facebook-connect/includes/provider.php:935
597
- msgid "Enable"
598
  msgstr ""
599
 
600
- #: nextend-facebook-connect/admin/templates/providers.php:86
601
- #: nextend-facebook-connect/includes/provider.php:943
602
- msgid "Disable"
603
  msgstr ""
604
 
605
- #: nextend-facebook-connect/admin/templates/providers.php:97
606
- msgid "Import"
 
607
  msgstr ""
608
 
609
- #: nextend-facebook-connect/admin/templates/providers.php:116
610
- msgid "Saving..."
611
  msgstr ""
612
 
613
- #: nextend-facebook-connect/admin/templates/providers.php:117
614
- msgid "Saving failed"
615
  msgstr ""
616
 
617
- #: nextend-facebook-connect/admin/templates/providers.php:118
618
- msgid "Order Saved"
 
619
  msgstr ""
620
 
621
- #: nextend-facebook-connect/includes/provider.php:327
622
- #: nextend-facebook-connect/includes/provider.php:546
623
- #: nextend-facebook-connect/includes/provider.php:557
624
  msgid "Authentication successful"
625
  msgstr ""
626
 
627
- #: nextend-facebook-connect/includes/provider.php:375
628
  #, php-format
629
  msgid ""
630
  "Your %1$s account is successfully linked with your account. Now you can sign "
631
  "in with %2$s easily."
632
  msgstr ""
633
 
634
- #: nextend-facebook-connect/includes/provider.php:379
635
  #, php-format
636
  msgid ""
637
- "This %s account is already linked with other account. Linking process failed!"
 
 
 
 
 
 
638
  msgstr ""
639
 
640
- #: nextend-facebook-connect/includes/provider.php:485
 
641
  msgid "Authentication error"
642
  msgstr ""
643
 
644
- #: nextend-facebook-connect/includes/provider.php:494
645
  msgid "Unlink successful."
646
  msgstr ""
647
 
648
- #: nextend-facebook-connect/includes/provider.php:765
649
- #: nextend-facebook-connect/includes/provider.php:772
650
  msgid "The test was successful"
651
  msgstr ""
652
 
653
- #: nextend-facebook-connect/includes/provider.php:813
654
  msgid "Authentication failed"
655
  msgstr ""
656
 
657
- #: nextend-facebook-connect/includes/provider.php:884
658
- msgid "Your configuration needs testing"
659
  msgstr ""
660
 
661
- #: nextend-facebook-connect/includes/provider.php:885
662
  msgid ""
663
  "Before you can start letting your users register with your app it needs to "
664
  "be tested. This test makes sure that no users will have troubles with the "
@@ -667,78 +857,130 @@ msgid ""
667
  "are fine."
668
  msgstr ""
669
 
670
- #: nextend-facebook-connect/includes/provider.php:890
671
- msgid "Test the Configuration"
672
- msgstr ""
673
-
674
- #: nextend-facebook-connect/includes/provider.php:891
675
- #: nextend-facebook-connect/includes/provider.php:928
676
- msgid "Please save your changes before testing."
677
  msgstr ""
678
 
679
- #: nextend-facebook-connect/includes/provider.php:899
680
  msgid "Works Fine"
681
  msgstr ""
682
 
683
- #: nextend-facebook-connect/includes/provider.php:913
684
  #, php-format
685
  msgid ""
686
  "This provider is currently disabled, which means that users can’t register "
687
  "or login via their %s account."
688
  msgstr ""
689
 
690
- #: nextend-facebook-connect/includes/provider.php:916
691
  #, php-format
692
  msgid ""
693
  "This provider works fine, but you can test it again. If you don’t want to "
694
  "let users register or login with %s anymore you can disable it."
695
  msgstr ""
696
 
697
- #: nextend-facebook-connect/includes/provider.php:919
698
  #, php-format
699
  msgid ""
700
  "This provider is currently enabled, which means that users can register or "
701
  "login via their %s account."
702
  msgstr ""
703
 
704
- #: nextend-facebook-connect/includes/provider.php:927
705
- msgid "Test Again"
706
  msgstr ""
707
 
708
- #: nextend-facebook-connect/nextend-social-login.php:19
 
 
 
 
 
709
  #, php-format
710
- msgid ""
711
- "%5$s plugin (version: %1$s, required: %2$s or newer) is not compatible with "
712
- "the PRO addon (version: %3$s, required: %4$s or newer). Please upgrade to "
713
- "the latest version! PRO addon disabled."
714
  msgstr ""
715
 
716
- #: nextend-facebook-connect/nextend-social-login.php:275
 
 
 
 
 
717
  #, php-format
718
  msgid ""
719
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
720
  "Connect as it is not needed anymore."
721
  msgstr ""
722
 
723
- #: nextend-facebook-connect/nextend-social-login.php:286
724
  #, php-format
725
  msgid ""
726
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
727
  "Connect as it is not needed anymore."
728
  msgstr ""
729
 
730
- #: nextend-facebook-connect/nextend-social-login.php:379
731
  msgid "You have logged in successfully."
732
  msgstr ""
733
 
734
- #: nextend-facebook-connect/nextend-social-login.php:466
 
735
  msgid "Social Login"
736
  msgstr ""
737
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
738
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:7
739
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
740
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
741
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:8
742
  #, php-format
743
  msgid ""
744
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -751,28 +993,12 @@ msgstr ""
751
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:9
752
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
753
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
754
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:10
755
  #, php-format
756
  msgctxt "App creation"
757
  msgid "Create %s"
758
  msgstr ""
759
 
760
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:12
761
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:14
762
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:14
763
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:13
764
- #, php-format
765
- msgid "Navigate to %s"
766
- msgstr ""
767
-
768
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
769
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
770
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
771
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:14
772
- #, php-format
773
- msgid "Log in with your %s credentials if you are not logged in"
774
- msgstr ""
775
-
776
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:14
777
  msgid "Click on the \"Add a New App\" button"
778
  msgstr ""
@@ -801,6 +1027,7 @@ msgid "Fill \"Site URL\" with the url of your homepage, probably: <b>%s</b>"
801
  msgstr ""
802
 
803
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:20
 
804
  msgid "Click on \"Save\""
805
  msgstr ""
806
 
@@ -808,17 +1035,6 @@ msgstr ""
808
  msgid "In the left sidebar, click on \"Facebook Login\""
809
  msgstr ""
810
 
811
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
812
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
813
- #, php-format
814
- msgid ""
815
- "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
816
- msgstr ""
817
-
818
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
819
- msgid "Click on \"Save Changes\""
820
- msgstr ""
821
-
822
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
823
  msgid "In the top of the left sidebar, click on \"Settings\""
824
  msgstr ""
@@ -856,7 +1072,7 @@ msgstr ""
856
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
857
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
858
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
859
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:27
860
  #, php-format
861
  msgid "I am done setting up my %s"
862
  msgstr ""
@@ -988,15 +1204,15 @@ msgstr ""
988
  #: nextend-facebook-connect/providers/google/admin/settings.php:26
989
  #: nextend-facebook-connect/providers/google/admin/settings.php:39
990
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:26
991
- #: nextend-social-login-pro-new/providers/linkedin/admin/settings.php:25
992
- #: nextend-social-login-pro-new/providers/linkedin/admin/settings.php:37
993
  msgid "Required"
994
  msgstr ""
995
 
996
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:32
997
  #: nextend-facebook-connect/providers/google/admin/settings.php:33
998
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:31
999
- #: nextend-social-login-pro-new/providers/linkedin/admin/settings.php:31
1000
  #, php-format
1001
  msgid ""
1002
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -1007,18 +1223,6 @@ msgstr ""
1007
  msgid "App Secret"
1008
  msgstr ""
1009
 
1010
- #: nextend-facebook-connect/providers/facebook/compat/nextend-facebook-connect.php:430
1011
- #: nextend-facebook-connect/providers/google/compat/nextend-google-connect.php:352
1012
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:414
1013
- #: nextend-social-login-pro-new/template-parts/login-layout-above-separator.php:9
1014
- #: nextend-social-login-pro-new/template-parts/login-layout-below-separator.php:9
1015
- msgid "OR"
1016
- msgstr ""
1017
-
1018
- #: nextend-facebook-connect/providers/facebook/compat/nextend-facebook-settings.php:312
1019
- msgid "Nextend FB Connect"
1020
- msgstr ""
1021
-
1022
  #: nextend-facebook-connect/providers/facebook/facebook.php:49
1023
  msgid "Continue with <b>Facebook</b>"
1024
  msgstr ""
@@ -1033,13 +1237,29 @@ msgstr ""
1033
 
1034
  #: nextend-facebook-connect/providers/facebook/facebook.php:109
1035
  #: nextend-facebook-connect/providers/google/google.php:71
1036
- #: nextend-facebook-connect/providers/twitter/twitter.php:72
1037
- #: nextend-social-login-pro-new/providers/linkedin/linkedin.php:68
1038
  #, php-format
1039
  msgid ""
1040
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1041
  msgstr ""
1042
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1043
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1044
  msgid ""
1045
  "If you don't have a project yet, you'll need to create one. You can do this "
@@ -1106,19 +1326,15 @@ msgid "Click on Credentials at the left-hand menu then select your app."
1106
  msgstr ""
1107
 
1108
  #: nextend-facebook-connect/providers/google/admin/settings.php:25
1109
- #: nextend-social-login-pro-new/providers/linkedin/admin/settings.php:24
1110
  msgid "Client ID"
1111
  msgstr ""
1112
 
1113
  #: nextend-facebook-connect/providers/google/admin/settings.php:38
1114
- #: nextend-social-login-pro-new/providers/linkedin/admin/settings.php:36
1115
  msgid "Client Secret"
1116
  msgstr ""
1117
 
1118
- #: nextend-facebook-connect/providers/google/compat/nextend-google-settings.php:307
1119
- msgid "Nextend Google Connect"
1120
- msgstr ""
1121
-
1122
  #: nextend-facebook-connect/providers/google/google.php:38
1123
  msgid "Continue with <b>Google</b>"
1124
  msgstr ""
@@ -1131,6 +1347,25 @@ msgstr ""
1131
  msgid "Unlink account from <b>Google</b>"
1132
  msgstr ""
1133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1134
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1135
  msgid "Click on the \"Create New App\" button"
1136
  msgstr ""
@@ -1142,11 +1377,6 @@ msgid ""
1142
  "Website field: <b>%s</b>"
1143
  msgstr ""
1144
 
1145
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1146
- #, php-format
1147
- msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
1148
- msgstr ""
1149
-
1150
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1151
  msgid "Accept the Twitter Developer Agreement"
1152
  msgstr ""
@@ -1178,219 +1408,164 @@ msgstr ""
1178
  msgid "Consumer Secret"
1179
  msgstr ""
1180
 
1181
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:314
1182
- msgid "<strong>ERROR</strong>: Please type your e-mail address."
1183
- msgstr ""
1184
-
1185
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:316
1186
- msgid "<strong>ERROR</strong>: The email address isn&#8217;t correct."
1187
- msgstr ""
1188
-
1189
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:319
1190
- msgid ""
1191
- "<strong>ERROR</strong>: This email is already registered, please choose "
1192
- "another one."
1193
- msgstr ""
1194
-
1195
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:326
1196
- #: nextend-facebook-connect/providers/twitter/twitter.php:175
1197
- #: nextend-social-login-pro-new/class-provider-extension.php:183
1198
- msgid "Registration Form"
1199
- msgstr ""
1200
-
1201
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:326
1202
- msgid "Please enter your email address to register!"
1203
- msgstr ""
1204
-
1205
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:331
1206
- msgid "E-mail"
1207
- msgstr ""
1208
-
1209
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:335
1210
- msgid "A password will be e-mailed to you."
1211
  msgstr ""
1212
 
1213
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:338
1214
- #: nextend-facebook-connect/providers/twitter/twitter.php:189
1215
- #: nextend-social-login-pro-new/class-provider-extension.php:206
1216
- msgid "Register"
1217
  msgstr ""
1218
 
1219
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:672
1220
- msgid "http://wordpress.org/"
1221
  msgstr ""
1222
 
1223
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:673
1224
- msgid "Powered by WordPress"
 
1225
  msgstr ""
1226
 
1227
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:749
1228
- msgid "Are you lost?"
1229
  msgstr ""
1230
 
1231
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-connect.php:749
1232
- #, php-format
1233
- msgid "&larr; Back to %s"
1234
  msgstr ""
1235
 
1236
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-settings.php:117
1237
- msgid "Check the realted <b>blog post</b>!"
1238
  msgstr ""
1239
 
1240
- #: nextend-facebook-connect/providers/twitter/compat/nextend-twitter-settings.php:287
1241
- msgid "Nextend Twitter Connect"
 
 
 
 
 
 
1242
  msgstr ""
1243
 
1244
- #: nextend-facebook-connect/providers/twitter/twitter.php:39
1245
- msgid "Continue with <b>Twitter</b>"
1246
  msgstr ""
1247
 
1248
- #: nextend-facebook-connect/providers/twitter/twitter.php:40
1249
- msgid "Link account with <b>Twitter</b>"
 
 
1250
  msgstr ""
1251
 
1252
- #: nextend-facebook-connect/providers/twitter/twitter.php:41
1253
- msgid "Unlink account from <b>Twitter</b>"
1254
  msgstr ""
1255
 
1256
- #: nextend-facebook-connect/providers/twitter/twitter.php:161
1257
- #: nextend-facebook-connect/providers/twitter/twitter.php:163
1258
- #: nextend-facebook-connect/providers/twitter/twitter.php:166
1259
- #: nextend-social-login-pro-new/class-provider-extension.php:142
1260
- #: nextend-social-login-pro-new/class-provider-extension.php:144
1261
- #: nextend-social-login-pro-new/class-provider-extension.php:147
1262
- #: nextend-social-login-pro-new/class-provider-extension.php:153
1263
- #: nextend-social-login-pro-new/class-provider-extension.php:166
1264
- #: nextend-social-login-pro-new/class-provider-extension.php:168
1265
- #: nextend-social-login-pro-new/class-provider-extension.php:171
1266
- msgid "ERROR"
1267
  msgstr ""
1268
 
1269
- #: nextend-facebook-connect/providers/twitter/twitter.php:161
1270
- #: nextend-social-login-pro-new/class-provider-extension.php:166
1271
  msgid "Please enter an email address."
1272
  msgstr ""
1273
 
1274
- #: nextend-facebook-connect/providers/twitter/twitter.php:163
1275
- #: nextend-social-login-pro-new/class-provider-extension.php:168
1276
  msgid "The email address isn&#8217;t correct."
1277
  msgstr ""
1278
 
1279
- #: nextend-facebook-connect/providers/twitter/twitter.php:166
1280
- #: nextend-social-login-pro-new/class-provider-extension.php:171
1281
  msgid "This email is already registered, please choose another one."
1282
  msgstr ""
1283
 
1284
- #: nextend-facebook-connect/providers/twitter/twitter.php:175
1285
- #: nextend-social-login-pro-new/class-provider-extension.php:183
1286
- msgid "Register For This Site!"
1287
- msgstr ""
1288
-
1289
- #: nextend-facebook-connect/providers/twitter/twitter.php:181
1290
- #: nextend-social-login-pro-new/class-provider-extension.php:197
1291
- msgid "Email"
1292
- msgstr ""
1293
-
1294
- #: nextend-facebook-connect/providers/twitter/twitter.php:185
1295
- #: nextend-social-login-pro-new/class-provider-extension.php:202
1296
- msgid "Registration confirmation will be emailed to you."
1297
  msgstr ""
1298
 
1299
- #: nextend-facebook-connect/widget.php:10
1300
- #, php-format
1301
- msgid "%s Buttons"
1302
  msgstr ""
1303
 
1304
- #: nextend-facebook-connect/widget.php:22
1305
- msgid "Title:"
1306
  msgstr ""
1307
 
1308
- #: nextend-facebook-connect/widget.php:30
1309
- msgid "Button style:"
1310
  msgstr ""
1311
 
1312
- #: nextend-social-login-pro-new/class-provider-extension.php:78
1313
- msgid "Social login is not allowed with this role!"
1314
  msgstr ""
1315
 
1316
- #: nextend-social-login-pro-new/class-provider-extension.php:142
1317
- msgid "Please enter a username."
1318
  msgstr ""
1319
 
1320
- #: nextend-social-login-pro-new/class-provider-extension.php:144
1321
  msgid ""
1322
- "This username is invalid because it uses illegal characters. Please enter a "
1323
- "valid username."
1324
- msgstr ""
1325
-
1326
- #: nextend-social-login-pro-new/class-provider-extension.php:147
1327
- msgid "This username is already registered. Please choose another one."
1328
- msgstr ""
1329
-
1330
- #: nextend-social-login-pro-new/class-provider-extension.php:153
1331
- msgid "Sorry, that username is not allowed."
1332
  msgstr ""
1333
 
1334
- #: nextend-social-login-pro-new/class-provider-extension.php:190
1335
- msgid "Username"
 
 
 
1336
  msgstr ""
1337
 
1338
- #: nextend-social-login-pro-new/class-provider-extension.php:218
1339
- msgid ""
1340
- "This email is already registered, please login in to your account to link "
1341
- "with Facebook."
1342
  msgstr ""
1343
 
1344
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:15
1345
  msgid "Locate the yellow \"Create application\" button and click on it."
1346
  msgstr ""
1347
 
1348
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:16
1349
  msgid "Fill the fields marked with *"
1350
  msgstr ""
1351
 
1352
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:17
1353
  #, php-format
1354
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
1355
  msgstr ""
1356
 
1357
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:19
1358
  msgid "Accept the Terms of use and hit Submit"
1359
  msgstr ""
1360
 
1361
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:20
1362
  msgid "Find the necessary Authentication Keys under the Authentication menu"
1363
  msgstr ""
1364
 
1365
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:21
1366
- #, php-format
1367
- msgid ""
1368
- "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</b>"
1369
- msgstr ""
1370
-
1371
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:22
1372
  msgid ""
1373
  "You probably want to enable the \"r_emailaddress\" under the Default "
1374
  "Application Permissions"
1375
  msgstr ""
1376
 
1377
- #: nextend-social-login-pro-new/providers/linkedin/admin/getting-started.php:23
1378
- msgid "Hit update to save the changes"
1379
- msgstr ""
1380
-
1381
- #: nextend-social-login-pro-new/providers/linkedin/linkedin.php:34
1382
  msgid "Continue with <b>LinkedIn</b>"
1383
  msgstr ""
1384
 
1385
- #: nextend-social-login-pro-new/providers/linkedin/linkedin.php:35
1386
  msgid "Link account with <b>LinkedIn</b>"
1387
  msgstr ""
1388
 
1389
- #: nextend-social-login-pro-new/providers/linkedin/linkedin.php:36
1390
  msgid "Unlink account from <b>LinkedIn</b>"
1391
  msgstr ""
1392
 
1393
- #: nextend-social-login-pro-new/template-parts/woocommerce-edit-account-after.php:1
1394
- #: nextend-social-login-pro-new/template-parts/woocommerce-edit-account-before.php:1
 
 
 
 
 
 
 
1395
  msgid "Social accounts"
1396
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ss3\n"
4
+ "POT-Creation-Date: 2018-03-08 15:39+0100\n"
5
+ "PO-Revision-Date: 2018-03-08 15:39+0100\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu\n"
17
  "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
18
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;"
19
  "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_x:1,2c;esc_html_e\n"
20
+ "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
21
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
22
+ "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
23
+ "compat\n"
24
+ "X-Poedit-SearchPathExcluded-1: nextend-facebook-connect/providers/google/"
25
+ "compat\n"
26
+ "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
 
 
28
 
29
+ #: nextend-facebook-connect/admin/admin.php:189
30
  #, php-format
31
  msgid "%s needs json_decode function."
32
  msgstr ""
33
 
34
+ #: nextend-facebook-connect/admin/admin.php:189
35
  msgid "Please contact your server administrator and ask for solution!"
36
  msgstr ""
37
 
38
+ #: nextend-facebook-connect/admin/admin.php:207
39
+ #: nextend-facebook-connect/admin/admin.php:248
40
  msgid "Settings saved."
41
  msgstr ""
42
 
43
+ #: nextend-facebook-connect/admin/admin.php:216
44
  msgid "The authorization was successful"
45
  msgstr ""
46
 
47
+ #: nextend-facebook-connect/admin/admin.php:227
48
  msgid "Deauthorize completed."
49
  msgstr ""
50
 
51
+ #: nextend-facebook-connect/admin/admin.php:348
52
  #: nextend-facebook-connect/admin/templates-provider/menu.php:10
53
+ #: nextend-facebook-connect/admin/templates/providers.php:84
54
+ #: nextend-facebook-connect/admin/templates/providers.php:96
55
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
56
  msgid "Settings"
57
  msgstr ""
58
 
59
+ #: nextend-facebook-connect/admin/admin.php:422
60
  #: nextend-facebook-connect/includes/oauth2.php:113
61
  #: nextend-facebook-connect/includes/oauth2.php:238
62
  #: nextend-facebook-connect/providers/facebook/facebook-client.php:70
65
  msgid "Unexpected response: %s"
66
  msgstr ""
67
 
68
+ #: nextend-facebook-connect/admin/admin.php:480
69
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:19
70
+ #, php-format
71
+ msgid ""
72
+ "%s detected that your login url changed. You must update the Oauth redirect "
73
+ "URIs in the related social applications."
74
+ msgstr ""
75
+
76
+ #: nextend-facebook-connect/admin/admin.php:481
77
+ msgid "Fix Error"
78
+ msgstr ""
79
+
80
+ #: nextend-facebook-connect/admin/admin.php:481
81
+ msgid "Oauth Redirect URI"
82
+ msgstr ""
83
+
84
+ #: nextend-facebook-connect/admin/admin.php:491
85
+ #, php-format
86
+ msgid ""
87
+ "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
88
+ "display Social Login buttons in %2$s login form!"
89
+ msgstr ""
90
+
91
+ #: nextend-facebook-connect/admin/admin.php:492
92
+ msgid "Dismiss and check Pro Addon"
93
+ msgstr ""
94
+
95
+ #: nextend-facebook-connect/admin/admin.php:492
96
+ msgid "Dismiss"
97
+ msgstr ""
98
+
99
  #: nextend-facebook-connect/admin/templates-provider/buttons.php:72
100
  msgid "Login label"
101
  msgstr ""
136
 
137
  #: nextend-facebook-connect/admin/templates-provider/buttons.php:167
138
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:122
139
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:65
140
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:56
141
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:7
142
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
143
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:7
144
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:136
145
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:125
146
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
147
  #: nextend-facebook-connect/providers/google/admin/settings.php:47
148
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:46
149
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:45
150
  msgid "Save Changes"
151
  msgstr ""
152
 
153
  #: nextend-facebook-connect/admin/templates-provider/menu.php:8
154
+ #: nextend-facebook-connect/admin/templates/providers.php:64
155
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:7
156
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:7
157
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:6
158
  msgid "Getting Started"
159
  msgstr ""
160
 
183
  msgstr ""
184
 
185
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:16
186
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:10
187
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:10
188
  msgid "PRO settings"
189
  msgstr ""
190
 
221
  msgstr ""
222
 
223
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:67
224
+ #: nextend-facebook-connect/admin/templates/providers.php:39
225
+ #: nextend-facebook-connect/admin/templates/settings/general.php:37
226
+ #: nextend-facebook-connect/includes/provider.php:985
227
  msgid "Disabled"
228
  msgstr ""
229
 
240
  msgstr ""
241
 
242
  #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:103
243
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:49
244
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:40
245
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:33
246
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:89
247
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:109
248
  #: nextend-facebook-connect/widget.php:34
249
  msgid "Default"
250
  msgstr ""
253
  msgid "Shortcode"
254
  msgstr ""
255
 
256
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:23
257
  msgid "Simple link"
258
  msgstr ""
259
 
260
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:26
261
  msgid "Click here to login or register"
262
  msgstr ""
263
 
264
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:31
265
  msgid "Image button"
266
  msgstr ""
267
 
268
+ #: nextend-facebook-connect/admin/templates-provider/usage.php:34
269
  msgid "Image url"
270
  msgstr ""
271
 
272
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
273
+ msgid "Fix Oauth Redirect URIs"
274
  msgstr ""
275
 
276
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:12
277
+ msgid "Every Oauth Redirect URI seems fine"
278
  msgstr ""
279
 
280
+ #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:29
281
+ msgid "Got it"
 
282
  msgstr ""
283
 
284
+ #: nextend-facebook-connect/admin/templates/global-settings.php:24
285
+ #: nextend-facebook-connect/admin/templates/menu.php:8
286
+ msgid "Global Settings"
287
  msgstr ""
288
 
289
+ #: nextend-facebook-connect/admin/templates/global-settings.php:27
290
+ msgid "General"
 
291
  msgstr ""
292
 
293
+ #: nextend-facebook-connect/admin/templates/global-settings.php:29
294
+ msgid "Login Form"
 
295
  msgstr ""
296
 
297
+ #: nextend-facebook-connect/admin/templates/global-settings.php:33
298
+ msgid "Comment"
 
 
 
299
  msgstr ""
300
 
301
+ #: nextend-facebook-connect/admin/templates/header.php:14
302
+ msgid "Docs"
 
303
  msgstr ""
304
 
305
+ #: nextend-facebook-connect/admin/templates/header.php:17
306
+ msgid "Support"
307
  msgstr ""
308
 
309
+ #: nextend-facebook-connect/admin/templates/header.php:20
310
+ #: nextend-facebook-connect/admin/templates/menu.php:12
311
+ msgid "Pro Addon"
312
  msgstr ""
313
 
314
+ #: nextend-facebook-connect/admin/templates/menu.php:6
315
+ msgid "Providers"
316
  msgstr ""
317
 
318
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:13
319
+ msgid "Error"
320
  msgstr ""
321
 
322
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:14
323
+ msgid ""
324
+ "You don’t have sufficient permissions to install and activate plugins. "
325
+ "Please contact your site’s administrator!"
326
  msgstr ""
327
 
328
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:22
329
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:32
330
+ #: nextend-facebook-connect/admin/templates/pro.php:34
331
+ msgid "Activate Pro Addon"
332
  msgstr ""
333
 
334
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:23
335
+ msgid ""
336
+ "Pro Addon is installed but not activated. To be able to use the Pro "
337
+ "features, you need to activate it."
338
  msgstr ""
339
 
340
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:37
341
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:215
342
+ msgid "Deauthorize Pro Addon"
343
+ msgstr ""
344
+
345
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:48
346
+ #: nextend-facebook-connect/admin/templates/pro.php:43
347
+ msgid "Pro Addon is not installed"
348
  msgstr ""
349
 
350
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:50
351
+ msgid ""
352
+ "To access the Pro features, you need to install and activate the Pro Addon."
353
+ msgstr ""
354
+
355
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:59
356
  #, php-format
357
+ msgid "Install %s now"
358
  msgstr ""
359
 
360
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:60
361
+ #: nextend-facebook-connect/admin/templates/pro.php:47
362
+ msgid "Install Pro Addon"
363
  msgstr ""
364
 
365
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:94
366
+ msgid "Activating..."
367
  msgstr ""
368
 
369
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:126
370
+ msgid "Authorize your Pro Addon"
 
371
  msgstr ""
372
 
373
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:127
374
+ msgid ""
375
+ "To be able to use the Pro features, you need to authorize Nextend Social "
376
+ "Connect Pro Addon. You can do this by clicking on the Authorize button below "
377
+ "then select the related purchase."
378
  msgstr ""
379
 
380
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:132
381
+ msgid "Authorize"
382
  msgstr ""
383
 
384
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:189
385
+ msgid "License key"
386
  msgstr ""
387
 
388
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:206
389
+ msgid "Pro Addon is installed and activated"
 
 
 
 
 
390
  msgstr ""
391
 
392
+ #: nextend-facebook-connect/admin/templates/pro-addon.php:208
393
+ msgid ""
394
+ "You installed and activated the Pro Addon. If you don’t want to use it "
395
+ "anymore, you can deauthorize using the button below."
396
  msgstr ""
397
 
398
+ #: nextend-facebook-connect/admin/templates/pro.php:8
399
+ msgid "Get Pro Addon to unlock more features"
 
400
  msgstr ""
401
 
402
+ #: nextend-facebook-connect/admin/templates/pro.php:9
403
+ #, php-format
404
+ msgid ""
405
+ "The features below are available in %s Pro Addon. Get it today and tweak the "
406
+ "awesome settings."
407
  msgstr ""
408
 
409
+ #: nextend-facebook-connect/admin/templates/pro.php:10
410
+ msgid ""
411
+ "If you already have a license, you can Authorize your Pro Addon. Otherwise "
412
+ "you can purchase it using the button below."
413
  msgstr ""
414
 
415
+ #: nextend-facebook-connect/admin/templates/pro.php:14
416
+ msgid "Buy Pro Addon"
417
  msgstr ""
418
 
419
+ #: nextend-facebook-connect/admin/templates/pro.php:16
420
+ msgid "Authorize Pro Addon"
 
421
  msgstr ""
422
 
423
+ #: nextend-facebook-connect/admin/templates/pro.php:25
424
+ msgid "Pro Addon is not activated"
425
  msgstr ""
426
 
427
+ #: nextend-facebook-connect/admin/templates/pro.php:26
428
+ #: nextend-facebook-connect/admin/templates/pro.php:44
429
+ msgid ""
430
+ "To be able to use the Pro features, you need to install and activate the "
431
+ "Nextend Social Connect Pro Addon."
432
  msgstr ""
433
 
434
+ #: nextend-facebook-connect/admin/templates/providers.php:30
435
+ msgid "Not Available"
 
436
  msgstr ""
437
 
438
+ #: nextend-facebook-connect/admin/templates/providers.php:33
439
+ msgid "Not Configured"
 
440
  msgstr ""
441
 
442
+ #: nextend-facebook-connect/admin/templates/providers.php:36
443
+ msgid "Not Verified"
444
  msgstr ""
445
 
446
+ #: nextend-facebook-connect/admin/templates/providers.php:42
447
+ #: nextend-facebook-connect/admin/templates/settings/general.php:40
448
+ #: nextend-facebook-connect/includes/provider.php:988
449
+ msgid "Enabled"
450
  msgstr ""
451
 
452
+ #: nextend-facebook-connect/admin/templates/providers.php:45
453
+ msgid "Legacy"
454
  msgstr ""
455
 
456
+ #: nextend-facebook-connect/admin/templates/providers.php:57
457
+ msgid "Upgrade Now"
458
  msgstr ""
459
 
460
+ #: nextend-facebook-connect/admin/templates/providers.php:72
461
+ #: nextend-facebook-connect/includes/provider.php:972
462
+ msgid "Verify Settings"
463
  msgstr ""
464
 
465
+ #: nextend-facebook-connect/admin/templates/providers.php:80
466
+ #: nextend-facebook-connect/includes/provider.php:1017
467
+ msgid "Enable"
468
  msgstr ""
469
 
470
+ #: nextend-facebook-connect/admin/templates/providers.php:92
471
+ #: nextend-facebook-connect/includes/provider.php:1025
472
+ msgid "Disable"
 
473
  msgstr ""
474
 
475
+ #: nextend-facebook-connect/admin/templates/providers.php:103
476
+ msgid "Import"
477
  msgstr ""
478
 
479
+ #: nextend-facebook-connect/admin/templates/providers.php:122
480
+ msgid "Saving..."
 
481
  msgstr ""
482
 
483
+ #: nextend-facebook-connect/admin/templates/providers.php:123
484
+ msgid "Saving failed"
485
  msgstr ""
486
 
487
+ #: nextend-facebook-connect/admin/templates/providers.php:124
488
+ msgid "Order Saved"
489
  msgstr ""
490
 
491
+ #: nextend-facebook-connect/admin/templates/review.php:14
492
+ msgid "Rate your experience!"
493
  msgstr ""
494
 
495
+ #: nextend-facebook-connect/admin/templates/review.php:15
496
+ msgid "Hated it"
 
497
  msgstr ""
498
 
499
+ #: nextend-facebook-connect/admin/templates/review.php:16
500
+ msgid "Disliked it"
501
  msgstr ""
502
 
503
+ #: nextend-facebook-connect/admin/templates/review.php:17
504
+ msgid "It was ok"
505
  msgstr ""
506
 
507
+ #: nextend-facebook-connect/admin/templates/review.php:18
508
+ msgid "Liked it"
509
  msgstr ""
510
 
511
+ #: nextend-facebook-connect/admin/templates/review.php:19
512
+ msgid "Loved it"
 
 
513
  msgstr ""
514
 
515
+ #: nextend-facebook-connect/admin/templates/review.php:31
516
+ msgid "Please Leave a Review"
 
 
517
  msgstr ""
518
 
519
+ #: nextend-facebook-connect/admin/templates/review.php:32
520
  msgid ""
521
+ "If you are happy with <b>Nextend Social Login</b> and can take a minute "
522
+ "please leave us a review. It will be a tremendous help for us!"
523
  msgstr ""
524
 
525
+ #: nextend-facebook-connect/admin/templates/review.php:34
526
+ msgid "Ok, you deserve it"
 
527
  msgstr ""
528
 
529
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
530
+ msgid "BuddyPress register form"
 
531
  msgstr ""
532
 
533
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
534
+ msgid "No Connect button"
 
535
  msgstr ""
536
 
537
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
538
+ msgid "Connect button before register"
539
+ msgstr ""
540
+
541
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
542
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
543
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
544
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:27
545
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:32
546
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:48
547
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
548
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:71
549
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
550
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:90
551
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:95
552
+ msgid "Action:"
553
+ msgstr ""
554
+
555
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
556
+ msgid "Connect button before account details"
557
+ msgstr ""
558
+
559
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
560
+ msgid "Connect button after register"
561
+ msgstr ""
562
+
563
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:43
564
+ msgid "BuddyPress register button style"
565
+ msgstr ""
566
+
567
+ #: nextend-facebook-connect/admin/templates/settings/buddypress.php:55
568
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:46
569
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:39
570
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:95
571
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
572
+ #: nextend-facebook-connect/widget.php:39
573
+ msgid "Icon"
574
+ msgstr ""
575
+
576
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:18
577
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:22
578
+ msgid "Comment login button"
579
+ msgstr ""
580
+
581
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:25
582
+ msgid "Show"
583
+ msgstr ""
584
+
585
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:28
586
+ msgid "Hide"
587
+ msgstr ""
588
+
589
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
590
  #, php-format
591
+ msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
592
  msgstr ""
593
 
594
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
595
+ msgid "Discussion"
 
596
  msgstr ""
597
 
598
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:30
599
+ msgid "Users must be registered and logged in to comment"
600
  msgstr ""
601
 
602
+ #: nextend-facebook-connect/admin/templates/settings/comment.php:34
603
+ msgid "Comment button style"
604
  msgstr ""
605
 
606
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:27
607
+ msgid "Target window"
608
+ msgstr ""
609
+
610
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:32
611
+ msgid "Prefer popup"
612
+ msgstr ""
613
+
614
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:35
615
+ msgid "Prefer new tab"
616
+ msgstr ""
617
+
618
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:38
619
+ msgid "Prefer same window"
620
+ msgstr ""
621
+
622
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:43
623
+ msgid "Membership"
624
+ msgstr ""
625
+
626
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:49
627
+ msgid "Allow registration with Social login"
628
+ msgstr ""
629
+
630
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
631
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:58
632
+ msgid "Registration notification sent to"
633
+ msgstr ""
634
+
635
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:61
636
+ msgid "WordPress default"
637
+ msgstr ""
638
+
639
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:64
640
+ msgid "Nobody"
641
+ msgstr ""
642
+
643
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:67
644
+ msgid "User"
645
+ msgstr ""
646
+
647
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:70
648
+ msgid "Admin"
649
+ msgstr ""
650
+
651
+ #: nextend-facebook-connect/admin/templates/settings/general-pro.php:73
652
+ msgid "User and Admin"
653
+ msgstr ""
654
+
655
+ #: nextend-facebook-connect/admin/templates/settings/general.php:30
656
+ #: nextend-facebook-connect/admin/templates/settings/general.php:34
657
+ msgid "Debug mode"
658
+ msgstr ""
659
+
660
+ #: nextend-facebook-connect/admin/templates/settings/general.php:46
661
+ msgid "Fixed redirect url for login"
662
+ msgstr ""
663
+
664
+ #: nextend-facebook-connect/admin/templates/settings/general.php:59
665
+ #: nextend-facebook-connect/admin/templates/settings/general.php:80
666
+ msgid "Use custom"
667
+ msgstr ""
668
+
669
+ #: nextend-facebook-connect/admin/templates/settings/general.php:67
670
+ msgid "Fixed redirect url for register"
671
+ msgstr ""
672
+
673
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:27
674
+ msgid "Login form button style"
675
+ msgstr ""
676
+
677
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:46
678
+ msgid "Login layout"
679
+ msgstr ""
680
+
681
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:52
682
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:108
683
+ msgid "Below"
684
+ msgstr ""
685
+
686
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:58
687
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:114
688
+ msgid "Below with separator"
689
+ msgstr ""
690
+
691
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:64
692
+ msgid "Below and floating"
693
+ msgstr ""
694
+
695
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:70
696
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:120
697
+ msgid "Above"
698
+ msgstr ""
699
+
700
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:76
701
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:126
702
+ msgid "Above with separator"
703
  msgstr ""
704
 
705
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:83
706
+ msgid "Embedded Login form button style"
707
  msgstr ""
708
 
709
+ #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:102
710
+ msgid "Embedded Login layout"
711
  msgstr ""
712
 
713
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
714
+ msgid "Login form"
715
  msgstr ""
716
 
717
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
718
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
719
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
720
+ msgid "Show login buttons"
721
  msgstr ""
722
 
723
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
724
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
725
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
726
+ msgid "Hide login buttons"
727
  msgstr ""
728
 
729
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
730
+ msgid "Registration form"
 
 
 
731
  msgstr ""
732
 
733
+ #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
734
+ msgid "Embedded login form"
 
 
735
  msgstr ""
736
 
737
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
738
+ msgid "WooCommerce login form"
739
  msgstr ""
740
 
741
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:23
742
+ msgid "No Connect button in login form"
743
  msgstr ""
744
 
745
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:26
746
+ msgid "Connect button before login form"
747
  msgstr ""
748
 
749
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:31
750
+ msgid "Connect button after login form"
 
 
 
751
  msgstr ""
752
 
753
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:39
754
+ msgid "WooCommerce register form"
755
  msgstr ""
756
 
757
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
758
+ msgid "No Connect button in register form"
759
  msgstr ""
760
 
761
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:47
762
+ msgid "Connect button before register form"
763
  msgstr ""
764
 
765
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
766
+ msgid "Connect button after register form"
767
  msgstr ""
768
 
769
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:60
770
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
771
+ msgid "WooCommerce billing form"
772
  msgstr ""
773
 
774
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:67
775
+ msgid "No Connect button in billing form"
776
  msgstr ""
777
 
778
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
779
+ msgid "Connect button before billing form"
 
780
  msgstr ""
781
 
782
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:75
783
+ msgid "Connect button after billing form"
 
784
  msgstr ""
785
 
786
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
787
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:86
788
+ msgid "WooCommerce account details"
789
  msgstr ""
790
 
791
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:89
792
+ msgid "Link buttons before account details"
793
  msgstr ""
794
 
795
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
796
+ msgid "Link buttons after account details"
797
  msgstr ""
798
 
799
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:101
800
+ #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:105
801
+ msgid "WooCommerce button style"
802
  msgstr ""
803
 
804
+ #: nextend-facebook-connect/includes/provider.php:359
805
+ #: nextend-facebook-connect/includes/provider.php:624
806
+ #: nextend-facebook-connect/includes/provider.php:635
807
  msgid "Authentication successful"
808
  msgstr ""
809
 
810
+ #: nextend-facebook-connect/includes/provider.php:407
811
  #, php-format
812
  msgid ""
813
  "Your %1$s account is successfully linked with your account. Now you can sign "
814
  "in with %2$s easily."
815
  msgstr ""
816
 
817
+ #: nextend-facebook-connect/includes/provider.php:410
818
  #, php-format
819
  msgid ""
820
+ "You have already linked a(n) %s account. Please unlink the current and then "
821
+ "you can link other %s account."
822
+ msgstr ""
823
+
824
+ #: nextend-facebook-connect/includes/provider.php:415
825
+ #, php-format
826
+ msgid "This %s account is already linked to other user."
827
  msgstr ""
828
 
829
+ #: nextend-facebook-connect/includes/provider.php:557
830
+ #: nextend-facebook-connect/includes/provider.php:701
831
  msgid "Authentication error"
832
  msgstr ""
833
 
834
+ #: nextend-facebook-connect/includes/provider.php:566
835
  msgid "Unlink successful."
836
  msgstr ""
837
 
838
+ #: nextend-facebook-connect/includes/provider.php:847
839
+ #: nextend-facebook-connect/includes/provider.php:854
840
  msgid "The test was successful"
841
  msgstr ""
842
 
843
+ #: nextend-facebook-connect/includes/provider.php:895
844
  msgid "Authentication failed"
845
  msgstr ""
846
 
847
+ #: nextend-facebook-connect/includes/provider.php:966
848
+ msgid "Your configuration needs to be verified"
849
  msgstr ""
850
 
851
+ #: nextend-facebook-connect/includes/provider.php:967
852
  msgid ""
853
  "Before you can start letting your users register with your app it needs to "
854
  "be tested. This test makes sure that no users will have troubles with the "
857
  "are fine."
858
  msgstr ""
859
 
860
+ #: nextend-facebook-connect/includes/provider.php:973
861
+ msgid "Please save your changes to verify settings."
 
 
 
 
 
862
  msgstr ""
863
 
864
+ #: nextend-facebook-connect/includes/provider.php:981
865
  msgid "Works Fine"
866
  msgstr ""
867
 
868
+ #: nextend-facebook-connect/includes/provider.php:995
869
  #, php-format
870
  msgid ""
871
  "This provider is currently disabled, which means that users can’t register "
872
  "or login via their %s account."
873
  msgstr ""
874
 
875
+ #: nextend-facebook-connect/includes/provider.php:998
876
  #, php-format
877
  msgid ""
878
  "This provider works fine, but you can test it again. If you don’t want to "
879
  "let users register or login with %s anymore you can disable it."
880
  msgstr ""
881
 
882
+ #: nextend-facebook-connect/includes/provider.php:1001
883
  #, php-format
884
  msgid ""
885
  "This provider is currently enabled, which means that users can register or "
886
  "login via their %s account."
887
  msgstr ""
888
 
889
+ #: nextend-facebook-connect/includes/provider.php:1009
890
+ msgid "Verify Settings Again"
891
  msgstr ""
892
 
893
+ #: nextend-facebook-connect/includes/provider.php:1010
894
+ msgid "Please save your changes before testing."
895
+ msgstr ""
896
+
897
+ #: nextend-facebook-connect/nextend-social-login.php:22
898
+ #: nextend-facebook-connect/nextend-social-login.php:30
899
  #, php-format
900
+ msgid "Please update %1$s to version %2$s or newer."
 
 
 
901
  msgstr ""
902
 
903
+ #: nextend-facebook-connect/nextend-social-login.php:22
904
+ #: nextend-facebook-connect/nextend-social-login.php:30
905
+ msgid "Update now!"
906
+ msgstr ""
907
+
908
+ #: nextend-facebook-connect/nextend-social-login.php:325
909
  #, php-format
910
  msgid ""
911
  "%s took the place of Nextend Google Connect. You can delete Nextend Google "
912
  "Connect as it is not needed anymore."
913
  msgstr ""
914
 
915
+ #: nextend-facebook-connect/nextend-social-login.php:336
916
  #, php-format
917
  msgid ""
918
  "%s took the place of Nextend Twitter Connect. You can delete Nextend Twitter "
919
  "Connect as it is not needed anymore."
920
  msgstr ""
921
 
922
+ #: nextend-facebook-connect/nextend-social-login.php:449
923
  msgid "You have logged in successfully."
924
  msgstr ""
925
 
926
+ #: nextend-facebook-connect/nextend-social-login.php:573
927
+ #: nextend-facebook-connect/nextend-social-login.php:892
928
  msgid "Social Login"
929
  msgstr ""
930
 
931
+ #: nextend-facebook-connect/nextend-social-login.php:876
932
+ msgid "Social Accounts"
933
+ msgstr ""
934
+
935
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:6
936
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:12
937
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:6
938
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:14
939
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:6
940
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:14
941
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:6
942
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:13
943
+ #, php-format
944
+ msgid "Navigate to %s"
945
+ msgstr ""
946
+
947
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:7
948
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
949
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:7
950
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
951
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:7
952
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
953
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:7
954
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
955
+ #, php-format
956
+ msgid "Log in with your %s credentials if you are not logged in"
957
+ msgstr ""
958
+
959
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
960
+ #, php-format
961
+ msgid "Click on the App with App ID: %s"
962
+ msgstr ""
963
+
964
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
965
+ msgid "In the left sidebar, click on \"Facebook Login/Settings\""
966
+ msgstr ""
967
+
968
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
969
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:22
970
+ #, php-format
971
+ msgid ""
972
+ "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</b>"
973
+ msgstr ""
974
+
975
+ #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
976
+ #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
977
+ msgid "Click on \"Save Changes\""
978
+ msgstr ""
979
+
980
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:7
981
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
982
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
983
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
984
  #, php-format
985
  msgid ""
986
  "To allow your visitors to log in with their %1$s account, first you must "
993
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:9
994
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
995
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
996
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
997
  #, php-format
998
  msgctxt "App creation"
999
  msgid "Create %s"
1000
  msgstr ""
1001
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1002
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:14
1003
  msgid "Click on the \"Add a New App\" button"
1004
  msgstr ""
1027
  msgstr ""
1028
 
1029
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:20
1030
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
1031
  msgid "Click on \"Save\""
1032
  msgstr ""
1033
 
1035
  msgid "In the left sidebar, click on \"Facebook Login\""
1036
  msgstr ""
1037
 
 
 
 
 
 
 
 
 
 
 
 
1038
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:24
1039
  msgid "In the top of the left sidebar, click on \"Settings\""
1040
  msgstr ""
1072
  #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1073
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
1074
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
1075
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
1076
  #, php-format
1077
  msgid "I am done setting up my %s"
1078
  msgstr ""
1204
  #: nextend-facebook-connect/providers/google/admin/settings.php:26
1205
  #: nextend-facebook-connect/providers/google/admin/settings.php:39
1206
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:26
1207
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:25
1208
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:37
1209
  msgid "Required"
1210
  msgstr ""
1211
 
1212
  #: nextend-facebook-connect/providers/facebook/admin/settings.php:32
1213
  #: nextend-facebook-connect/providers/google/admin/settings.php:33
1214
  #: nextend-facebook-connect/providers/twitter/admin/settings.php:31
1215
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:31
1216
  #, php-format
1217
  msgid ""
1218
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1223
  msgid "App Secret"
1224
  msgstr ""
1225
 
 
 
 
 
 
 
 
 
 
 
 
 
1226
  #: nextend-facebook-connect/providers/facebook/facebook.php:49
1227
  msgid "Continue with <b>Facebook</b>"
1228
  msgstr ""
1237
 
1238
  #: nextend-facebook-connect/providers/facebook/facebook.php:109
1239
  #: nextend-facebook-connect/providers/google/google.php:71
1240
+ #: nextend-facebook-connect/providers/twitter/twitter.php:71
1241
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:68
1242
  #, php-format
1243
  msgid ""
1244
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1245
  msgstr ""
1246
 
1247
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1248
+ msgid "Click on the \"Credentials\" in the left hand menu"
1249
+ msgstr ""
1250
+
1251
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1252
+ #, php-format
1253
+ msgid "Click on OAuth 2.0 client ID: %s"
1254
+ msgstr ""
1255
+
1256
+ #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
1257
+ #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
1258
+ #, php-format
1259
+ msgid ""
1260
+ "Add the following URL to the \"Authorised redirect URIs\" field: <b>%s</b>"
1261
+ msgstr ""
1262
+
1263
  #: nextend-facebook-connect/providers/google/admin/getting-started.php:16
1264
  msgid ""
1265
  "If you don't have a project yet, you'll need to create one. You can do this "
1326
  msgstr ""
1327
 
1328
  #: nextend-facebook-connect/providers/google/admin/settings.php:25
1329
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:24
1330
  msgid "Client ID"
1331
  msgstr ""
1332
 
1333
  #: nextend-facebook-connect/providers/google/admin/settings.php:38
1334
+ #: nextend-social-login-pro/providers/linkedin/admin/settings.php:36
1335
  msgid "Client Secret"
1336
  msgstr ""
1337
 
 
 
 
 
1338
  #: nextend-facebook-connect/providers/google/google.php:38
1339
  msgid "Continue with <b>Google</b>"
1340
  msgstr ""
1347
  msgid "Unlink account from <b>Google</b>"
1348
  msgstr ""
1349
 
1350
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1351
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1352
+ msgid "Click on the App"
1353
+ msgstr ""
1354
+
1355
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1356
+ msgid "Click on the \"Settings\" tab"
1357
+ msgstr ""
1358
+
1359
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
1360
+ #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1361
+ #, php-format
1362
+ msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
1363
+ msgstr ""
1364
+
1365
+ #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
1366
+ msgid "Click on \"Update Settings\""
1367
+ msgstr ""
1368
+
1369
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:16
1370
  msgid "Click on the \"Create New App\" button"
1371
  msgstr ""
1377
  "Website field: <b>%s</b>"
1378
  msgstr ""
1379
 
 
 
 
 
 
1380
  #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1381
  msgid "Accept the Twitter Developer Agreement"
1382
  msgstr ""
1408
  msgid "Consumer Secret"
1409
  msgstr ""
1410
 
1411
+ #: nextend-facebook-connect/providers/twitter/twitter.php:38
1412
+ msgid "Continue with <b>Twitter</b>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1413
  msgstr ""
1414
 
1415
+ #: nextend-facebook-connect/providers/twitter/twitter.php:39
1416
+ msgid "Link account with <b>Twitter</b>"
 
 
1417
  msgstr ""
1418
 
1419
+ #: nextend-facebook-connect/providers/twitter/twitter.php:40
1420
+ msgid "Unlink account from <b>Twitter</b>"
1421
  msgstr ""
1422
 
1423
+ #: nextend-facebook-connect/widget.php:10
1424
+ #, php-format
1425
+ msgid "%s Buttons"
1426
  msgstr ""
1427
 
1428
+ #: nextend-facebook-connect/widget.php:22
1429
+ msgid "Title:"
1430
  msgstr ""
1431
 
1432
+ #: nextend-facebook-connect/widget.php:30
1433
+ msgid "Button style:"
 
1434
  msgstr ""
1435
 
1436
+ #: nextend-social-login-pro/class-provider-extension.php:78
1437
+ msgid "Social login is not allowed with this role!"
1438
  msgstr ""
1439
 
1440
+ #: nextend-social-login-pro/class-provider-extension.php:155
1441
+ #: nextend-social-login-pro/class-provider-extension.php:157
1442
+ #: nextend-social-login-pro/class-provider-extension.php:160
1443
+ #: nextend-social-login-pro/class-provider-extension.php:166
1444
+ #: nextend-social-login-pro/class-provider-extension.php:179
1445
+ #: nextend-social-login-pro/class-provider-extension.php:181
1446
+ #: nextend-social-login-pro/class-provider-extension.php:184
1447
+ msgid "ERROR"
1448
  msgstr ""
1449
 
1450
+ #: nextend-social-login-pro/class-provider-extension.php:155
1451
+ msgid "Please enter a username."
1452
  msgstr ""
1453
 
1454
+ #: nextend-social-login-pro/class-provider-extension.php:157
1455
+ msgid ""
1456
+ "This username is invalid because it uses illegal characters. Please enter a "
1457
+ "valid username."
1458
  msgstr ""
1459
 
1460
+ #: nextend-social-login-pro/class-provider-extension.php:160
1461
+ msgid "This username is already registered. Please choose another one."
1462
  msgstr ""
1463
 
1464
+ #: nextend-social-login-pro/class-provider-extension.php:166
1465
+ msgid "Sorry, that username is not allowed."
 
 
 
 
 
 
 
 
 
1466
  msgstr ""
1467
 
1468
+ #: nextend-social-login-pro/class-provider-extension.php:179
 
1469
  msgid "Please enter an email address."
1470
  msgstr ""
1471
 
1472
+ #: nextend-social-login-pro/class-provider-extension.php:181
 
1473
  msgid "The email address isn&#8217;t correct."
1474
  msgstr ""
1475
 
1476
+ #: nextend-social-login-pro/class-provider-extension.php:184
 
1477
  msgid "This email is already registered, please choose another one."
1478
  msgstr ""
1479
 
1480
+ #: nextend-social-login-pro/class-provider-extension.php:238
1481
+ msgid "Registration Form"
 
 
 
 
 
 
 
 
 
 
 
1482
  msgstr ""
1483
 
1484
+ #: nextend-social-login-pro/class-provider-extension.php:238
1485
+ msgid "Register For This Site!"
 
1486
  msgstr ""
1487
 
1488
+ #: nextend-social-login-pro/class-provider-extension.php:263
1489
+ msgid "Username"
1490
  msgstr ""
1491
 
1492
+ #: nextend-social-login-pro/class-provider-extension.php:270
1493
+ msgid "Email"
1494
  msgstr ""
1495
 
1496
+ #: nextend-social-login-pro/class-provider-extension.php:275
1497
+ msgid "Registration confirmation will be emailed to you."
1498
  msgstr ""
1499
 
1500
+ #: nextend-social-login-pro/class-provider-extension.php:279
1501
+ msgid "Register"
1502
  msgstr ""
1503
 
1504
+ #: nextend-social-login-pro/class-provider-extension.php:373
1505
  msgid ""
1506
+ "This email is already registered, please login in to your account to link "
1507
+ "with Facebook."
 
 
 
 
 
 
 
 
1508
  msgstr ""
1509
 
1510
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1511
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
1512
+ #, php-format
1513
+ msgid ""
1514
+ "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</b>"
1515
  msgstr ""
1516
 
1517
+ #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
1518
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
1519
+ msgid "Hit update to save the changes"
 
1520
  msgstr ""
1521
 
1522
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:15
1523
  msgid "Locate the yellow \"Create application\" button and click on it."
1524
  msgstr ""
1525
 
1526
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:16
1527
  msgid "Fill the fields marked with *"
1528
  msgstr ""
1529
 
1530
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
1531
  #, php-format
1532
  msgid "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
1533
  msgstr ""
1534
 
1535
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
1536
  msgid "Accept the Terms of use and hit Submit"
1537
  msgstr ""
1538
 
1539
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
1540
  msgid "Find the necessary Authentication Keys under the Authentication menu"
1541
  msgstr ""
1542
 
1543
+ #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
 
 
 
 
 
 
1544
  msgid ""
1545
  "You probably want to enable the \"r_emailaddress\" under the Default "
1546
  "Application Permissions"
1547
  msgstr ""
1548
 
1549
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:34
 
 
 
 
1550
  msgid "Continue with <b>LinkedIn</b>"
1551
  msgstr ""
1552
 
1553
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:35
1554
  msgid "Link account with <b>LinkedIn</b>"
1555
  msgstr ""
1556
 
1557
+ #: nextend-social-login-pro/providers/linkedin/linkedin.php:36
1558
  msgid "Unlink account from <b>LinkedIn</b>"
1559
  msgstr ""
1560
 
1561
+ #: nextend-social-login-pro/template-parts/embedded-login-layout-above-separator.php:8
1562
+ #: nextend-social-login-pro/template-parts/embedded-login-layout-below-separator.php:8
1563
+ #: nextend-social-login-pro/template-parts/login-layout-above-separator.php:10
1564
+ #: nextend-social-login-pro/template-parts/login-layout-below-separator.php:14
1565
+ msgid "OR"
1566
+ msgstr ""
1567
+
1568
+ #: nextend-social-login-pro/template-parts/woocommerce-edit-account-after.php:1
1569
+ #: nextend-social-login-pro/template-parts/woocommerce-edit-account-before.php:1
1570
  msgid "Social accounts"
1571
  msgstr ""
nextend-facebook-connect.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Nextend Social Login
4
  Plugin URI: https://nextendweb.com/
5
  Description: Nextend Social Login displays social login buttons for Facebook, Google and Twitter.
6
- Version: 3.0.3
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.4
7
  Author: Nextendweb
8
  License: GPL2
9
  Text Domain: nextend-facebook-connect
nextend-social-login.php CHANGED
@@ -1,5 +1,7 @@
1
  <?php
2
 
 
 
3
  require_once(NSL_PATH . '/persistent.php');
4
  require_once(NSL_PATH . '/class-settings.php');
5
  require_once(NSL_PATH . '/includes/provider.php');
@@ -9,14 +11,23 @@ require_once(NSL_PATH . '/compat.php');
9
 
10
  class NextendSocialLogin {
11
 
12
- public static $version = '3.0.3';
13
 
14
- public static $nslPROMinVersion = '3.0.3';
15
 
16
  public static function checkVersion() {
17
- if (version_compare(self::$version, NextendSocialLoginPRO::$nslMinVersion, '<') || version_compare(NextendSocialLoginPRO::$version, self::$nslPROMinVersion, '<')) {
18
- if (is_admin()) {
19
- NextendSocialLoginAdminNotices::addError(sprintf(__('%5$s plugin (version: %1$s, required: %2$s or newer) is not compatible with the PRO addon (version: %3$s, required: %4$s or newer). Please upgrade to the latest version! PRO addon disabled.'), self::$version, NextendSocialLoginPRO::$nslMinVersion, NextendSocialLoginPRO::$version, self::$nslPROMinVersion, "Nextend Social Login"));
 
 
 
 
 
 
 
 
 
20
  }
21
 
22
  return false;
@@ -52,8 +63,11 @@ class NextendSocialLogin {
52
  private static $ordering = array();
53
 
54
  private static $loginHeadAdded = false;
 
55
  private static $counter = 1;
56
 
 
 
57
  public static function init() {
58
  add_action('plugins_loaded', 'NextendSocialLogin::plugins_loaded');
59
  register_activation_hook(NSL_PATH_FILE, 'NextendSocialLogin::install');
@@ -74,24 +88,36 @@ class NextendSocialLogin {
74
  'license_key_ok' => '0',
75
  'redirect' => '',
76
  'redirect_reg' => '',
 
 
77
  'show_login_form' => 'show',
78
  'show_registration_form' => 'show',
79
- 'login_form_layout' => 'below',
80
  'login_form_button_style' => 'default',
 
 
 
 
81
  'comment_login_button' => 'show',
82
  'comment_button_style' => 'default',
 
 
83
  'woocommerce_login' => 'after',
 
84
  'woocommerce_billing' => 'before',
85
  'woocoommerce_form_button_style' => 'default',
86
  'woocommerce_account_details' => 'before',
87
  'registration_notification_notify' => '0',
88
  'debug' => '0',
89
- 'review_state' => -1
 
90
  ));
 
 
 
 
91
  }
92
 
93
  public static function plugins_loaded() {
94
-
95
  if (get_option('nsl-version') != self::$version) {
96
  NextendSocialLogin::install();
97
  update_option('nsl-version', self::$version, true);
@@ -124,22 +150,39 @@ class NextendSocialLogin {
124
 
125
  do_action('nsl-providers-loaded');
126
 
127
- add_action('login_init', 'NextendSocialLogin::login_init');
128
- add_action('wp_logout', 'NextendSocialLogin::wp_logout');
 
 
 
 
 
 
129
 
130
  add_action('parse_request', 'NextendSocialLogin::editProfileRedirect');
131
 
132
  if (count(self::$enabledProviders) > 0) {
133
 
134
- add_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
135
- add_action('register_form', 'NextendSocialLogin::addLoginFormButtons');
136
- add_action('bp_sidebar_login_form', 'NextendSocialLogin::addLoginButtons');
 
 
 
137
 
 
 
 
 
 
 
138
 
139
- add_action('profile_personal_options', 'NextendSocialLogin::addLinkAndUnlinkButtons');
 
 
 
140
 
141
- add_action('login_form_login', 'NextendSocialLogin::jQuery');
142
- add_action('login_form_register', 'NextendSocialLogin::jQuery');
143
 
144
 
145
  /*
@@ -175,6 +218,12 @@ class NextendSocialLogin {
175
  do_action('nsl_init');
176
  }
177
 
 
 
 
 
 
 
178
  public static function styles() {
179
 
180
  $stylesheet = self::get_template_part('style.css');
@@ -199,7 +248,7 @@ class NextendSocialLogin {
199
  if ($once === null) {
200
  $scripts = NSL_PATH . '/js/nsl.js';
201
  if (file_exists($scripts)) {
202
- echo '<script type="text/javascript">' . file_get_contents($scripts) . '</script>';
203
  }
204
  $once = true;
205
  }
@@ -342,10 +391,30 @@ class NextendSocialLogin {
342
  return isset(self::$enabledProviders[$providerID]);
343
  }
344
 
345
- public static function wp_logout() {
346
  NextendSocialLoginPersistentAnonymous::destroy();
347
  }
348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
349
  public static function login_init() {
350
 
351
  add_filter('wp_login_errors', 'NextendSocialLogin::wp_login_errors');
@@ -427,12 +496,30 @@ class NextendSocialLogin {
427
  wp_enqueue_script('jquery');
428
  }
429
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
430
  public static function addLoginFormButtons() {
431
- self::renderLoginButtons();
432
  }
433
 
434
  public static function addLoginButtons() {
435
- self::renderLoginButtons();
436
  }
437
 
438
  public static function remove_action_login_form_buttons() {
@@ -445,35 +532,66 @@ class NextendSocialLogin {
445
  add_action('register_form', 'NextendSocialLogin::addLoginFormButtons');
446
  }
447
 
448
- private static function renderLoginButtons() {
449
-
450
- if (!self::$loginHeadAdded) {
451
  $index = self::$counter++;
452
- echo '<div id="nsl-custom-login-form-' . $index . '">' . self::renderButtonsWithContainer(self::$settings->get('login_form_button_style'), false) . '</div>';
453
- echo '<script type="text/javascript">(function($){$("document").ready(function(){var el = $("#nsl-custom-login-form-' . $index . '");el.appendTo(el.closest("form"))})})(jQuery)</script>';
454
- } else {
 
455
 
456
- echo self::renderButtonsWithContainer(self::$settings->get('login_form_button_style'), false);
 
457
  }
458
 
 
 
 
 
 
 
 
 
459
  }
460
 
461
  public static function addLinkAndUnlinkButtons() {
462
  echo self::renderLinkAndUnlinkButtons();
463
  }
464
 
465
- public static function renderLinkAndUnlinkButtons() {
 
 
 
 
 
 
 
466
  if (count(self::$enabledProviders)) {
467
- $buttons = '<h2>' . __('Social Login', 'nextend-facebook-connect') . '</h2>';
 
 
 
 
 
 
 
468
  foreach (self::$enabledProviders AS $provider) {
469
  if ($provider->isCurrentUserConnected()) {
470
- $buttons .= $provider->getUnLinkButton();
 
 
 
471
  } else {
472
- $buttons .= $provider->getLinkButton();
 
 
 
473
  }
474
  }
475
 
476
- return '<div class="nsl-container ' . self::$styles['default']['container'] . '">' . $buttons . '</div>';
 
 
477
  }
478
 
479
  return '';
@@ -552,16 +670,28 @@ class NextendSocialLogin {
552
  }
553
 
554
  public static function shortcode($atts) {
 
 
 
 
 
 
 
 
 
 
 
555
  if (!is_user_logged_in()) {
556
 
557
- if (!is_array($atts)) {
558
- $atts = array();
559
  }
560
 
561
  $atts = array_merge(array(
562
- 'style' => 'default',
563
- 'provider' => false,
564
- 'redirect' => false
 
565
  ), $atts);
566
 
567
  $providers = false;
@@ -570,7 +700,14 @@ class NextendSocialLogin {
570
  $providers = array(self::$enabledProviders[$providerID]);
571
  }
572
 
573
- return self::renderButtonsWithContainer($atts['style'], $providers, $atts['redirect']);
 
 
 
 
 
 
 
574
  }
575
 
576
  return '';
@@ -583,7 +720,7 @@ class NextendSocialLogin {
583
  *
584
  * @return string
585
  */
586
- public static function renderButtonsWithContainer($style = 'default', $providers = false, $redirect_to = false) {
587
 
588
  if (!isset(self::$styles[$style])) {
589
  $style = 'default';
@@ -609,7 +746,7 @@ class NextendSocialLogin {
609
  if (count($enabledProviders)) {
610
  $buttons = '';
611
  foreach ($enabledProviders AS $provider) {
612
- $buttons .= $provider->getConnectButton($style, $redirect_to);
613
  }
614
 
615
  return '<div class="nsl-container ' . self::$styles[$style]['container'] . '">' . $buttons . '</div>';
@@ -629,6 +766,12 @@ class NextendSocialLogin {
629
  return false;
630
  }
631
 
 
 
 
 
 
 
632
  return $currentUrl;
633
  }
634
 
@@ -699,6 +842,63 @@ class NextendSocialLogin {
699
  ));
700
 
701
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
702
  }
703
 
704
  NextendSocialLogin::init();
1
  <?php
2
 
3
+ require_once(NSL_PATH . '/includes/exceptions.php');
4
+
5
  require_once(NSL_PATH . '/persistent.php');
6
  require_once(NSL_PATH . '/class-settings.php');
7
  require_once(NSL_PATH . '/includes/provider.php');
11
 
12
  class NextendSocialLogin {
13
 
14
+ public static $version = '3.0.4';
15
 
16
+ public static $nslPROMinVersion = '3.0.4';
17
 
18
  public static function checkVersion() {
19
+ if (version_compare(self::$version, NextendSocialLoginPRO::$nslMinVersion, '<')) {
20
+ if (is_admin() && current_user_can('manage_options')) {
21
+ $file = 'nextend-facebook-connect/nextend-facebook-connect.php';
22
+ NextendSocialLoginAdminNotices::addError(sprintf(__('Please update %1$s to version %2$s or newer.', 'nextend-facebook-connect'), "Nextend Social Login", NextendSocialLoginPRO::$nslMinVersion) . ' <a href="' . esc_url(wp_nonce_url(admin_url('update.php?action=upgrade-plugin&plugin=') . $file, 'upgrade-plugin_' . $file)) . '">' . __('Update now!', 'nextend-facebook-connect') . '</a>');
23
+ }
24
+
25
+ return false;
26
+ }
27
+ if (version_compare(NextendSocialLoginPRO::$version, self::$nslPROMinVersion, '<')) {
28
+ if (is_admin() && current_user_can('manage_options')) {
29
+ $file = 'nextend-social-login-pro/nextend-social-login-pro.php';
30
+ NextendSocialLoginAdminNotices::addError(sprintf(__('Please update %1$s to version %2$s or newer.', 'nextend-facebook-connect'), "Nextend Social Login Pro Addon", self::$nslPROMinVersion) . ' <a href="' . esc_url(wp_nonce_url(admin_url('update.php?action=upgrade-plugin&plugin=') . $file, 'upgrade-plugin_' . $file)) . '">' . __('Update now!', 'nextend-facebook-connect') . '</a>');
31
  }
32
 
33
  return false;
63
  private static $ordering = array();
64
 
65
  private static $loginHeadAdded = false;
66
+ private static $loginMainButtonsAdded = false;
67
  private static $counter = 1;
68
 
69
+ public static $currentWPLoginAction = '';
70
+
71
  public static function init() {
72
  add_action('plugins_loaded', 'NextendSocialLogin::plugins_loaded');
73
  register_activation_hook(NSL_PATH_FILE, 'NextendSocialLogin::install');
88
  'license_key_ok' => '0',
89
  'redirect' => '',
90
  'redirect_reg' => '',
91
+ 'target' => 'prefer-popup',
92
+ 'allow_register' => 1,
93
  'show_login_form' => 'show',
94
  'show_registration_form' => 'show',
 
95
  'login_form_button_style' => 'default',
96
+ 'login_form_layout' => 'below',
97
+ 'show_embedded_login_form' => 'show',
98
+ 'embedded_login_form_button_style' => 'default',
99
+ 'embedded_login_form_layout' => 'below',
100
  'comment_login_button' => 'show',
101
  'comment_button_style' => 'default',
102
+ 'buddypress_register_button' => 'bp_before_account_details_fields',
103
+ 'buddypress_register_button_style' => 'default',
104
  'woocommerce_login' => 'after',
105
+ 'woocommerce_register' => 'after',
106
  'woocommerce_billing' => 'before',
107
  'woocoommerce_form_button_style' => 'default',
108
  'woocommerce_account_details' => 'before',
109
  'registration_notification_notify' => '0',
110
  'debug' => '0',
111
+ 'review_state' => -1,
112
+ 'woocommerce_dismissed' => 0
113
  ));
114
+
115
+ add_action('itsec_initialized', 'NextendSocialLogin::disable_better_wp_security_block_long_urls', -1);
116
+
117
+ add_action('bp_loaded', 'NextendSocialLogin::buddypress_loaded');
118
  }
119
 
120
  public static function plugins_loaded() {
 
121
  if (get_option('nsl-version') != self::$version) {
122
  NextendSocialLogin::install();
123
  update_option('nsl-version', self::$version, true);
150
 
151
  do_action('nsl-providers-loaded');
152
 
153
+ add_action('login_form_login', 'NextendSocialLogin::login_form_login');
154
+ add_action('login_form_register', 'NextendSocialLogin::login_form_register');
155
+ add_action('bp_core_screen_signup', 'NextendSocialLogin::bp_login_form_register');
156
+
157
+ add_action('login_form_unlink', 'NextendSocialLogin::login_form_unlink');
158
+
159
+ add_action('wp_logout', 'NextendSocialLogin::clearPersistentAnonymousStorage');
160
+ add_action('wp_login', 'NextendSocialLogin::clearPersistentAnonymousStorage');
161
 
162
  add_action('parse_request', 'NextendSocialLogin::editProfileRedirect');
163
 
164
  if (count(self::$enabledProviders) > 0) {
165
 
166
+ if (self::$settings->get('show_login_form') == 'hide') {
167
+ add_action('login_form_login', 'NextendSocialLogin::removeLoginFormAssets');
168
+ } else {
169
+ add_action('login_form', 'NextendSocialLogin::addLoginFormButtons');
170
+ add_action('login_form_login', 'NextendSocialLogin::jQuery');
171
+ }
172
 
173
+ if (NextendSocialLogin::$settings->get('show_registration_form') == 'hide') {
174
+ add_action('login_form_register', 'NextendSocialLogin::removeLoginFormAssets');
175
+ } else {
176
+ add_action('register_form', 'NextendSocialLogin::addLoginFormButtons');
177
+ add_action('login_form_register', 'NextendSocialLogin::jQuery');
178
+ }
179
 
180
+ if (NextendSocialLogin::$settings->get('show_embedded_login_form') != 'hide') {
181
+ add_filter('login_form_bottom', 'NextendSocialLogin::filterAddEmbeddedLoginFormButtons');
182
+ }
183
+ add_action('bp_sidebar_login_form', 'NextendSocialLogin::addLoginButtons');
184
 
185
+ add_action('profile_personal_options', 'NextendSocialLogin::addLinkAndUnlinkButtons');
 
186
 
187
 
188
  /*
218
  do_action('nsl_init');
219
  }
220
 
221
+ public static function removeLoginFormAssets() {
222
+ remove_action('login_head', 'NextendSocialLogin::loginHead', 100);
223
+ remove_action('wp_print_footer_scripts', 'NextendSocialLogin::scripts', 100);
224
+ remove_action('login_footer', 'NextendSocialLogin::scripts', 100);
225
+ }
226
+
227
  public static function styles() {
228
 
229
  $stylesheet = self::get_template_part('style.css');
248
  if ($once === null) {
249
  $scripts = NSL_PATH . '/js/nsl.js';
250
  if (file_exists($scripts)) {
251
+ echo '<script type="text/javascript">(function (undefined) {var targetWindow =' . wp_json_encode(self::$settings->get('target')) . ";\n" . file_get_contents($scripts) . '})();</script>';
252
  }
253
  $once = true;
254
  }
391
  return isset(self::$enabledProviders[$providerID]);
392
  }
393
 
394
+ public static function clearPersistentAnonymousStorage() {
395
  NextendSocialLoginPersistentAnonymous::destroy();
396
  }
397
 
398
+ public static function login_form_login() {
399
+ self::$currentWPLoginAction = 'login';
400
+ self::login_init();
401
+ }
402
+
403
+ public static function login_form_register() {
404
+ self::$currentWPLoginAction = 'register';
405
+ self::login_init();
406
+ }
407
+
408
+ public static function bp_login_form_register() {
409
+ self::$currentWPLoginAction = 'register-bp';
410
+ self::login_init();
411
+ }
412
+
413
+ public static function login_form_unlink() {
414
+ self::$currentWPLoginAction = 'unlink';
415
+ self::login_init();
416
+ }
417
+
418
  public static function login_init() {
419
 
420
  add_filter('wp_login_errors', 'NextendSocialLogin::wp_login_errors');
496
  wp_enqueue_script('jquery');
497
  }
498
 
499
+ public static function filterAddEmbeddedLoginFormButtons($ret) {
500
+ ob_start();
501
+ self::styles();
502
+
503
+ $index = self::$counter++;
504
+
505
+ $containerID = 'nsl-custom-login-form-' . $index;
506
+
507
+ echo '<div id="' . $containerID . '">' . self::renderButtonsWithContainer(self::$settings->get('embedded_login_form_button_style'), false) . '</div>';
508
+
509
+ $template = self::get_template_part('embedded-login-layout-' . sanitize_file_name(self::$settings->get('embedded_login_form_layout')) . '.php');
510
+ if (!empty($template) && file_exists($template)) {
511
+ include($template);
512
+ }
513
+
514
+ return $ret . ob_get_clean();
515
+ }
516
+
517
  public static function addLoginFormButtons() {
518
+ echo self::getRenderedLoginButtons();
519
  }
520
 
521
  public static function addLoginButtons() {
522
+ echo self::getRenderedLoginButtons();
523
  }
524
 
525
  public static function remove_action_login_form_buttons() {
532
  add_action('register_form', 'NextendSocialLogin::addLoginFormButtons');
533
  }
534
 
535
+ private static function getRenderedLoginButtons() {
536
+ if (!self::$loginHeadAdded || self::$loginMainButtonsAdded) {
 
537
  $index = self::$counter++;
538
+ $ret = '<div id="nsl-custom-login-form-' . $index . '">';
539
+ $ret .= self::renderButtonsWithContainer(self::$settings->get('login_form_button_style'), false);
540
+ $ret .= '<script type="text/javascript">(function($){$("document").ready(function(){var el = $("#nsl-custom-login-form-' . $index . '");el.appendTo(el.closest("form"))})})(jQuery)</script>';
541
+ $ret .= '</div>';
542
 
543
+
544
+ return $ret;
545
  }
546
 
547
+ self::$loginMainButtonsAdded = true;
548
+
549
+ $ret = '<div id="nsl-custom-login-form-main">';
550
+ $ret .= self::renderButtonsWithContainer(self::$settings->get('login_form_button_style'), false);
551
+ $ret .= '</div>';
552
+
553
+
554
+ return $ret;
555
  }
556
 
557
  public static function addLinkAndUnlinkButtons() {
558
  echo self::renderLinkAndUnlinkButtons();
559
  }
560
 
561
+ /**
562
+ * @param bool|false|string $heading
563
+ * @param bool $link
564
+ * @param bool $unlink
565
+ *
566
+ * @return string
567
+ */
568
+ public static function renderLinkAndUnlinkButtons($heading = '', $link = true, $unlink = true) {
569
  if (count(self::$enabledProviders)) {
570
+ $buttons = '';
571
+ if ($heading !== false) {
572
+ if (empty($heading)) {
573
+ $heading = __('Social Login', 'nextend-facebook-connect');
574
+ }
575
+ $buttons = '<h2>' . $heading . '</h2>';
576
+ }
577
+ $providerCount = 0;
578
  foreach (self::$enabledProviders AS $provider) {
579
  if ($provider->isCurrentUserConnected()) {
580
+ if ($unlink) {
581
+ $buttons .= $provider->getUnLinkButton();
582
+ $providerCount++;
583
+ }
584
  } else {
585
+ if ($link) {
586
+ $buttons .= $provider->getLinkButton();
587
+ $providerCount++;
588
+ }
589
  }
590
  }
591
 
592
+ if ($providerCount > 0) {
593
+ return '<div class="nsl-container ' . self::$styles['default']['container'] . '">' . $buttons . '</div>';
594
+ }
595
  }
596
 
597
  return '';
670
  }
671
 
672
  public static function shortcode($atts) {
673
+ if (!is_array($atts)) {
674
+ $atts = array();
675
+ }
676
+
677
+ $atts = array_merge(array(
678
+ 'login' => 1,
679
+ 'link' => 0,
680
+ 'unlink' => 0,
681
+ 'heading' => false
682
+ ), $atts);
683
+
684
  if (!is_user_logged_in()) {
685
 
686
+ if (filter_var($atts['login'], FILTER_VALIDATE_BOOLEAN) === false) {
687
+ return '';
688
  }
689
 
690
  $atts = array_merge(array(
691
+ 'style' => 'default',
692
+ 'provider' => false,
693
+ 'redirect' => false,
694
+ 'trackerdata' => false
695
  ), $atts);
696
 
697
  $providers = false;
700
  $providers = array(self::$enabledProviders[$providerID]);
701
  }
702
 
703
+ return self::renderButtonsWithContainer($atts['style'], $providers, $atts['redirect'], $atts['trackerdata']);
704
+ }
705
+
706
+ $link = filter_var($atts['link'], FILTER_VALIDATE_BOOLEAN);
707
+ $unlink = filter_var($atts['unlink'], FILTER_VALIDATE_BOOLEAN);
708
+
709
+ if ($link || $unlink) {
710
+ return self::renderLinkAndUnlinkButtons($atts['heading'], $link, $unlink);
711
  }
712
 
713
  return '';
720
  *
721
  * @return string
722
  */
723
+ public static function renderButtonsWithContainer($style = 'default', $providers = false, $redirect_to = false, $trackerData = false) {
724
 
725
  if (!isset(self::$styles[$style])) {
726
  $style = 'default';
746
  if (count($enabledProviders)) {
747
  $buttons = '';
748
  foreach ($enabledProviders AS $provider) {
749
+ $buttons .= $provider->getConnectButton($style, $redirect_to, $trackerData);
750
  }
751
 
752
  return '<div class="nsl-container ' . self::$styles[$style]['container'] . '">' . $buttons . '</div>';
766
  return false;
767
  }
768
 
769
+ $registerUrl = wp_registration_url();
770
+ // If the currentUrl is the registerUrl, then we should not return it for redirects
771
+ if (strpos($currentUrl, $registerUrl) === 0) {
772
+ return false;
773
+ }
774
+
775
  return $currentUrl;
776
  }
777
 
842
  ));
843
 
844
  }
845
+
846
+ public static function disable_better_wp_security_block_long_urls() {
847
+ if (class_exists('ITSEC_System_Tweaks', false)) {
848
+ remove_action('itsec_initialized', array(
849
+ ITSEC_System_Tweaks::get_instance(),
850
+ 'block_long_urls'
851
+ ));
852
+ }
853
+ }
854
+
855
+ public static function buddypress_loaded() {
856
+ add_action('bp_settings_setup_nav', 'NextendSocialLogin::bp_settings_setup_nav');
857
+ }
858
+
859
+ public static function bp_settings_setup_nav() {
860
+
861
+ if (!bp_is_active('settings')) {
862
+ return;
863
+ }
864
+
865
+ // Determine user to use.
866
+ if (bp_loggedin_user_domain()) {
867
+ $user_domain = bp_loggedin_user_domain();
868
+ } else {
869
+ return;
870
+ }
871
+
872
+ // Get the settings slug.
873
+ $settings_slug = bp_get_settings_slug();
874
+
875
+ bp_core_new_subnav_item(array(
876
+ 'name' => __('Social Accounts', 'nextend-facebook-connect'),
877
+ 'slug' => 'social',
878
+ 'parent_url' => trailingslashit($user_domain . $settings_slug),
879
+ 'parent_slug' => $settings_slug,
880
+ 'screen_function' => 'bp_xprofile_screen_settings',
881
+ 'position' => 30,
882
+ 'user_has_access' => bp_core_can_edit_settings()
883
+ ), 'members');
884
+
885
+ if ((bp_is_user_settings() && bp_is_current_action('social'))) {
886
+ add_action('bp_template_title', 'NextendSocialLogin::bp_template_title');
887
+ add_action('bp_template_content', 'NextendSocialLogin::bp_template_content');
888
+ }
889
+ }
890
+
891
+ public static function bp_template_title() {
892
+ _e('Social Login', 'nextend-facebook-connect');
893
+ }
894
+
895
+ public static function bp_template_content() {
896
+ echo self::renderLinkAndUnlinkButtons(false);
897
+ }
898
+
899
+ public static function getTrackerData() {
900
+ return NextendSocialLoginPersistentAnonymous::get('trackerdata');
901
+ }
902
  }
903
 
904
  NextendSocialLogin::init();
persistent.php CHANGED
@@ -2,18 +2,26 @@
2
 
3
  class NextendSocialLoginPersistentAnonymous {
4
 
 
 
5
  private static function getSessionID($mustCreate = false) {
 
 
 
6
  if (isset($_COOKIE['nsl_session'])) {
7
  if (get_site_transient('n_' . $_COOKIE['nsl_session']) !== false) {
8
- return $_COOKIE['nsl_session'];
 
 
9
  }
10
  }
11
  if ($mustCreate) {
12
- $_COOKIE['nsl_session'] = uniqid('nsl', true);
13
- self::setcookie('nsl_session', $_COOKIE['nsl_session'], time() + DAY_IN_SECONDS, apply_filters('nsl_session_use_secure_cookie', false));
14
- set_site_transient('n_' . $_COOKIE['nsl_session'], 1, 3600);
15
 
16
- return $_COOKIE['nsl_session'];
 
 
 
17
  }
18
 
19
  return false;
@@ -46,6 +54,14 @@ class NextendSocialLoginPersistentAnonymous {
46
  $sessionID = self::getSessionID();
47
  if ($sessionID) {
48
  self::setcookie('nsl_session', $sessionID, time() - YEAR_IN_SECONDS, apply_filters('nsl_session_use_secure_cookie', false));
 
 
 
 
 
 
 
 
49
  delete_site_transient('n_' . $sessionID);
50
  }
51
  }
2
 
3
  class NextendSocialLoginPersistentAnonymous {
4
 
5
+ private static $verifiedSession = false;
6
+
7
  private static function getSessionID($mustCreate = false) {
8
+ if (self::$verifiedSession !== false) {
9
+ return self::$verifiedSession;
10
+ }
11
  if (isset($_COOKIE['nsl_session'])) {
12
  if (get_site_transient('n_' . $_COOKIE['nsl_session']) !== false) {
13
+ self::$verifiedSession = $_COOKIE['nsl_session'];
14
+
15
+ return self::$verifiedSession;
16
  }
17
  }
18
  if ($mustCreate) {
19
+ self::$verifiedSession = uniqid('nsl', true);
 
 
20
 
21
+ self::setcookie('nsl_session', self::$verifiedSession, time() + DAY_IN_SECONDS, apply_filters('nsl_session_use_secure_cookie', false));
22
+ set_site_transient('n_' . self::$verifiedSession, 1, 3600);
23
+
24
+ return self::$verifiedSession;
25
  }
26
 
27
  return false;
54
  $sessionID = self::getSessionID();
55
  if ($sessionID) {
56
  self::setcookie('nsl_session', $sessionID, time() - YEAR_IN_SECONDS, apply_filters('nsl_session_use_secure_cookie', false));
57
+
58
+ add_action('shutdown', 'NextendSocialLoginPersistentAnonymous::destroy_site_transient');
59
+ }
60
+ }
61
+
62
+ public static function destroy_site_transient() {
63
+ $sessionID = self::getSessionID();
64
+ if ($sessionID) {
65
  delete_site_transient('n_' . $sessionID);
66
  }
67
  }
providers/facebook/admin/fix-redirect-uri.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+ /** @var $this NextendSocialProvider */
4
+ ?>
5
+ <ol>
6
+ <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://developers.facebook.com/apps/" target="_blank">https://developers.facebook.com/apps/</a>'); ?></li>
7
+ <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Facebook'); ?></li>
8
+ <li><?php printf(__('Click on the App with App ID: %s', 'nextend-facebook-connect'), $this->settings->get('appid')); ?></li>
9
+ <li><?php _e('In the left sidebar, click on "Facebook Login/Settings"', 'nextend-facebook-connect'); ?></li>
10
+ <li><?php printf(__('Add the following URL to the "Valid OAuth redirect URIs" field: <b>%s</b>', 'nextend-facebook-connect'), $this->getLoginUrl()); ?></li>
11
+ <li><?php _e('Click on "Save Changes"', 'nextend-facebook-connect'); ?></li>
12
+ </ol>
providers/google/admin/fix-redirect-uri.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+ /** @var $this NextendSocialProvider */
4
+ ?>
5
+ <ol>
6
+ <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://console.developers.google.com/apis/" target="_blank">https://console.developers.google.com/apis/</a>'); ?></li>
7
+ <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Google'); ?></li>
8
+ <li><?php _e('Click on the "Credentials" in the left hand menu', 'nextend-facebook-connect'); ?></li>
9
+ <li><?php printf(__('Click on OAuth 2.0 client ID: %s', 'nextend-facebook-connect'), $this->settings->get('client_id')); ?></li>
10
+ <li><?php printf(__('Add the following URL to the "Authorised redirect URIs" field: <b>%s</b>', 'nextend-facebook-connect'), $this->getLoginUrl()); ?></li>
11
+ <li><?php _e('Click on "Save"', 'nextend-facebook-connect'); ?></li>
12
+ </ol>
providers/google/admin/getting-started.php CHANGED
@@ -21,7 +21,7 @@ defined('ABSPATH') || die();
21
  <li><?php _e('Go back to the Credentials tab and locate the small box at the middle. Click on the blue "Create credentials" button. Chose the "OAuth client ID" from the dropdown list.', 'nextend-facebook-connect'); ?></li>
22
  <li><?php _e('Your application type should be "Web application"', 'nextend-facebook-connect'); ?></li>
23
  <li><?php _e('Name your application', 'nextend-facebook-connect'); ?></li>
24
- <li><?php printf(__('Add the following URL to the "Valid OAuth redirect URIs" field: <b>%s</b>', 'nextend-facebook-connect'), $this->getLoginUrl()); ?></li>
25
  <li><?php _e('Click on the Create button', 'nextend-facebook-connect'); ?></li>
26
  <li><?php _e('A modal should pop up with your credentials. If that doesn\'t happen, go to the Credentials in the left hand menu and select your app by clicking on its name and you\'ll be able to copy-paste the Client ID and Client Secret from there.', 'nextend-facebook-connect'); ?></li>
27
  </ol>
21
  <li><?php _e('Go back to the Credentials tab and locate the small box at the middle. Click on the blue "Create credentials" button. Chose the "OAuth client ID" from the dropdown list.', 'nextend-facebook-connect'); ?></li>
22
  <li><?php _e('Your application type should be "Web application"', 'nextend-facebook-connect'); ?></li>
23
  <li><?php _e('Name your application', 'nextend-facebook-connect'); ?></li>
24
+ <li><?php printf(__('Add the following URL to the "Authorised redirect URIs" field: <b>%s</b>', 'nextend-facebook-connect'), $this->getLoginUrl()); ?></li>
25
  <li><?php _e('Click on the Create button', 'nextend-facebook-connect'); ?></li>
26
  <li><?php _e('A modal should pop up with your credentials. If that doesn\'t happen, go to the Credentials in the left hand menu and select your app by clicking on its name and you\'ll be able to copy-paste the Client ID and Client Secret from there.', 'nextend-facebook-connect'); ?></li>
27
  </ol>
providers/twitter/admin/fix-redirect-uri.php ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined('ABSPATH') || die();
3
+ /** @var $this NextendSocialProvider */
4
+ ?>
5
+ <ol>
6
+ <li><?php printf(__('Navigate to %s', 'nextend-facebook-connect'), '<a href="https://apps.twitter.com/" target="_blank">https://apps.twitter.com/</a>'); ?></li>
7
+ <li><?php printf(__('Log in with your %s credentials if you are not logged in', 'nextend-facebook-connect'), 'Twitter'); ?></li>
8
+ <li><?php _e('Click on the App', 'nextend-facebook-connect'); ?></li>
9
+ <li><?php _e('Click on the "Settings" tab', 'nextend-facebook-connect'); ?></li>
10
+ <li><?php printf(__('Add the following URL to the "Callback URL" field: <b>%s</b>', 'nextend-facebook-connect'), $this->getLoginUrl()); ?></li>
11
+ <li><?php _e('Click on "Update Settings"', 'nextend-facebook-connect'); ?></li>
12
+ </ol>
providers/twitter/twitter.php CHANGED
@@ -26,7 +26,6 @@ class NextendSocialProviderTwitter extends NextendSocialProvider {
26
  'login_label' => 'Continue with <b>Twitter</b>',
27
  'link_label' => 'Link account with <b>Twitter</b>',
28
  'unlink_label' => 'Unlink account from <b>Twitter</b>',
29
- 'ask_email' => 'always',
30
  'legacy' => 0
31
  ));
32
 
@@ -132,67 +131,11 @@ class NextendSocialProviderTwitter extends NextendSocialProvider {
132
  return parent::getAuthUserData($key);
133
  }
134
 
135
- protected function prepareRegister($accessToken) {
136
-
137
- $isPRO = apply_filters('nsl-pro', false);
138
- if (!$isPRO) {
139
- add_filter('nsl_' . $this->getId() . '_register_user_data', array(
140
- $this,
141
- 'registerUserData'
142
- ), 10, 1);
143
- }
144
-
145
- parent::prepareRegister($accessToken);
146
- }
147
-
148
  public function syncProfile($user_id, $provider, $access_token) {
149
  $this->saveUserData($user_id, 'profile_picture', $this->authUserData['profile_image_url_https']);
150
  $this->saveUserData($user_id, 'access_token', $access_token);
151
  }
152
 
153
- public function registerUserData($userData) {
154
- $email = $userData['email'];
155
-
156
- $errors = new WP_Error();
157
-
158
- if (isset($_POST['user_email']) && is_string($_POST['user_email'])) {
159
- $email = $_POST['user_email'];
160
- if ($email == '') {
161
- $errors->add('empty_email', '<strong>' . __('ERROR', 'nextend-facebook-connect') . '</strong>: ' . __('Please enter an email address.'), array('form-field' => 'email'));
162
- } elseif (!is_email($email)) {
163
- $errors->add('invalid_email', '<strong>' . __('ERROR', 'nextend-facebook-connect') . '</strong>: ' . __('The email address isn&#8217;t correct.'), array('form-field' => 'email'));
164
- $email = '';
165
- } elseif (email_exists($email)) {
166
- $errors->add('email_exists', '<strong>' . __('ERROR', 'nextend-facebook-connect') . '</strong>: ' . __('This email is already registered, please choose another one.'), array('form-field' => 'email'));
167
- }
168
- if ($errors->get_error_code() == '') {
169
- $userData['email'] = $email;
170
-
171
- return $userData;
172
- }
173
- }
174
-
175
- login_header(__('Registration Form'), '<p class="message register">' . __('Register For This Site!') . '</p>', $errors);
176
- ?>
177
- <form name="registerform" id="registerform"
178
- action="<?php echo esc_url(site_url('wp-login.php?loginSocial=' . $this->getId(), 'login_post')); ?>"
179
- method="post">
180
- <p>
181
- <label for="user_email"><?php _e('Email') ?><br/>
182
- <input type="email" name="user_email" id="user_email" class="input"
183
- value="<?php echo esc_attr(wp_unslash($email)); ?>" size="25"/></label>
184
- </p>
185
- <p id="reg_passmail"><?php _e('Registration confirmation will be emailed to you.'); ?></p>
186
- <br class="clear"/>
187
- <p class="submit"><input type="submit" name="wp-submit" id="wp-submit"
188
- class="button button-primary button-large"
189
- value="<?php esc_attr_e('Register'); ?>"/></p>
190
- </form>
191
- <?php
192
- login_footer('user_login');
193
- exit;
194
- }
195
-
196
  public function getState() {
197
  if ($this->settings->get('legacy') == 1) {
198
  return 'legacy';
26
  'login_label' => 'Continue with <b>Twitter</b>',
27
  'link_label' => 'Link account with <b>Twitter</b>',
28
  'unlink_label' => 'Unlink account from <b>Twitter</b>',
 
29
  'legacy' => 0
30
  ));
31
 
131
  return parent::getAuthUserData($key);
132
  }
133
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
  public function syncProfile($user_id, $provider, $access_token) {
135
  $this->saveUserData($user_id, 'profile_picture', $this->authUserData['profile_image_url_https']);
136
  $this->saveUserData($user_id, 'access_token', $access_token);
137
  }
138
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
139
  public function getState() {
140
  if ($this->settings->get('legacy') == 1) {
141
  return 'legacy';
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.3
8
  Requires PHP: 5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
@@ -112,6 +112,20 @@ Unfortunately, currently there are no BuddyPress specific settings. However your
112
 
113
  == Changelog ==
114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
115
  = 3.0.3 =
116
  * Added fallback username prefix
117
  * Fixed avatar for Google, Twitter and LinkedIn providers
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.4
8
  Requires PHP: 5.4
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
112
 
113
  == Changelog ==
114
 
115
+ = 3.0.4 =
116
+ * Remove whitespaces from username
117
+ * Provider test process renamed to "Verify Settings"
118
+ * NextendSocialLogin::renderLinkAndUnlinkButtons($heading = '', $link = true, $unlink = true) allows to display link and unlink buttons
119
+ * Link and unlink shortcode added: [nextend_social_login login="0" link="1" unlink="1" heading="Connect Social Accounts"]
120
+ * [Theme My Login](https://wordpress.org/plugins/theme-my-login/) plugin compatibility fixes.
121
+ * Embedded login form settings for wp_login_form
122
+ * Prevent account linking if it is already linked
123
+ * BuddyPress register form support and profile link and unlink buttons
124
+ * iThemes Security - Filter Long URL removed as it prevents provider to return oauth params.
125
+ * All In One WP Security - Fixed Verify Settings in providers
126
+ * Instruction when redirect Uri changes
127
+ * Added new shortcode parameter: trackerdata.
128
+
129
  = 3.0.3 =
130
  * Added fallback username prefix
131
  * Fixed avatar for Google, Twitter and LinkedIn providers
template-parts/embedded-login-layout-below.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <script type="text/javascript">
2
+ (function ($) {
3
+ $(document).ready(function () {
4
+ var $container = $('#<?php echo $containerID; ?>');
5
+ $container.find('.nsl-container')
6
+ .addClass('nsl-container-embedded-login-layout-below')
7
+ .css('display', 'block');
8
+
9
+ $container
10
+ .appendTo($container.closest('form'));
11
+ });
12
+ }(jQuery));
13
+ </script>
14
+ <?php
15
+ $style = '
16
+ {{containerID}} .nsl-container {
17
+ display: none;
18
+ }
19
+
20
+ {{containerID}} .nsl-container-login-layout-below {
21
+ clear: both;
22
+ padding: 20px 0 0;
23
+ }
24
+
25
+ .login form {
26
+ padding-bottom: 20px;
27
+ }';
28
+ ?>
29
+ <style type="text/css">
30
+ <?php echo str_replace('{{containerID}}','#' . $containerID, $style); ?>
31
+ </style>
32
+ <?php
33
+ $style = '
34
+ {{containerID}} .nsl-container {
35
+ display: block;
36
+ }';
37
+ ?>
38
+ <noscript>
39
+ <style type="text/css">
40
+ <?php echo str_replace('{{containerID}}','#' . $containerID, $style); ?>
41
+ </style>
42
+ </noscript>
template-parts/login-layout-below.php CHANGED
@@ -1,19 +1,27 @@
1
  <script type="text/javascript">
2
  (function ($) {
3
  $(document).ready(function () {
4
- $('.nsl-container')
 
 
 
 
 
 
 
5
  .addClass('nsl-container-login-layout-below')
6
- .appendTo('#loginform,#registerform,#front-login-form,#setupform')
7
  .css('display', 'block');
 
 
8
  });
9
  }(jQuery));
10
  </script>
11
  <style type="text/css">
12
- .nsl-container {
13
  display: none;
14
  }
15
 
16
- .nsl-container-login-layout-below {
17
  clear: both;
18
  padding: 20px 0 0;
19
  }
@@ -24,7 +32,7 @@
24
  </style>
25
  <noscript>
26
  <style>
27
- .nsl-container {
28
  display: block;
29
  }
30
  </style>
1
  <script type="text/javascript">
2
  (function ($) {
3
  $(document).ready(function () {
4
+ var $form = $('#loginform,#registerform,#front-login-form,#setupform'),
5
+ $main = $('#nsl-custom-login-form-main');
6
+
7
+ if ($form.parent().hasClass('tml')) {
8
+ $form = $form.parent();
9
+ }
10
+
11
+ $main.find('.nsl-container')
12
  .addClass('nsl-container-login-layout-below')
 
13
  .css('display', 'block');
14
+
15
+ $main.appendTo($form)
16
  });
17
  }(jQuery));
18
  </script>
19
  <style type="text/css">
20
+ #nsl-custom-login-form-main .nsl-container {
21
  display: none;
22
  }
23
 
24
+ #nsl-custom-login-form-main .nsl-container-login-layout-below {
25
  clear: both;
26
  padding: 20px 0 0;
27
  }
32
  </style>
33
  <noscript>
34
  <style>
35
+ #nsl-custom-login-form-main .nsl-container {
36
  display: block;
37
  }
38
  </style>
template-parts/style.css CHANGED
@@ -1,6 +1,8 @@
1
  .nsl-container > a {
2
  text-decoration: none !important;
3
  box-shadow: none !important;
 
 
4
  }
5
 
6
  .nsl-container-block {
1
  .nsl-container > a {
2
  text-decoration: none !important;
3
  box-shadow: none !important;
4
+ border: 0;
5
+ box-shadow: none;
6
  }
7
 
8
  .nsl-container-block {