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

Version Description

  • Improvement: string paths from the language files have been removed.

  • PRO: Improvement: VKontakte provider we will use the API version 5.131 for the endpoints, as API version 5.74 is deprecated.

  • PRO: Feature: Easy Digital Downloads login and register form support.

Download this release

Release Info

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

Code changes from version 3.1.0 to 3.1.1

admin/templates/global-settings.php CHANGED
@@ -12,7 +12,8 @@ $allowedSubviews = array(
12
  'buddypress',
13
  'memberpress',
14
  'userpro',
15
- 'ultimate-member'
 
16
  );
17
 
18
  $subview = (!empty($_GET['subview']) && in_array($_GET['subview'], $allowedSubviews)) ? $_GET['subview'] : 'general';
@@ -46,6 +47,9 @@ if (!NextendSocialLoginAdmin::isPro()) {
46
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('ultimate-member'); ?>"
47
  class="nsl-admin-nav-tab<?php if ($subview === 'ultimate-member'): ?> nsl-admin-nav-tab-active<?php endif; ?>">Ultimate
48
  Member<?php echo $proBadge; ?></a>
 
 
 
49
  </div>
50
  <form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
51
 
12
  'buddypress',
13
  'memberpress',
14
  'userpro',
15
+ 'ultimate-member',
16
+ 'easy-digital-downloads'
17
  );
18
 
19
  $subview = (!empty($_GET['subview']) && in_array($_GET['subview'], $allowedSubviews)) ? $_GET['subview'] : 'general';
47
  <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('ultimate-member'); ?>"
48
  class="nsl-admin-nav-tab<?php if ($subview === 'ultimate-member'): ?> nsl-admin-nav-tab-active<?php endif; ?>">Ultimate
49
  Member<?php echo $proBadge; ?></a>
50
+ <a href="<?php echo NextendSocialLoginAdmin::getAdminSettingsUrl('easy-digital-downloads'); ?>"
51
+ class="nsl-admin-nav-tab<?php if ($subview === 'easy-digital-downloads'): ?> nsl-admin-nav-tab-active<?php endif; ?>">Easy
52
+ Digital Downloads<?php echo $proBadge; ?></a>
53
  </div>
54
  <form method="post" action="<?php echo admin_url('admin-post.php'); ?>" novalidate="novalidate">
55
 
admin/templates/settings/easy-digital-downloads.php ADDED
@@ -0,0 +1,215 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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('Login form', 'nextend-facebook-connect'); ?></th>
19
+ <td>
20
+ <fieldset>
21
+ <label><input type="radio" name="edd_login"
22
+ value="" <?php if ($settings->get('edd_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="edd_login"
25
+ value="before" <?php if ($settings->get('edd_login') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
26
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
27
+ <code><?php _e('Action:'); ?>
28
+ edd_login_fields_before</code></label><br>
29
+ <label><input type="radio" name="edd_login"
30
+ value="after" <?php if ($settings->get('edd_login') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
31
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
32
+ <code><?php _e('Action:'); ?>
33
+ edd_login_fields_after</code></label>
34
+ </fieldset>
35
+ </td>
36
+ </tr>
37
+ <tr>
38
+ <th scope="row"><?php _e('Login form button style', 'nextend-facebook-connect'); ?></th>
39
+ <td>
40
+ <fieldset>
41
+ <label>
42
+ <input type="radio" name="edd_login_form_button_style"
43
+ value="default" <?php if ($settings->get('edd_login_form_button_style') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
44
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
45
+ <img src="<?php echo plugins_url('images/buttons/default.png', NSL_ADMIN_PATH) ?>"/>
46
+ </label>
47
+ <label>
48
+ <input type="radio" name="edd_login_form_button_style"
49
+ value="fullwidth" <?php if ($settings->get('edd_login_form_button_style') == 'fullwidth') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
50
+ <span><?php _e('Fullwidth', 'nextend-facebook-connect'); ?></span><br/>
51
+ <img src="<?php echo plugins_url('images/buttons/fullwidth.png', NSL_ADMIN_PATH) ?>"/>
52
+ </label>
53
+ <label>
54
+ <input type="radio" name="edd_login_form_button_style"
55
+ value="icon" <?php if ($settings->get('edd_login_form_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
56
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
57
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
58
+ </label><br>
59
+ </fieldset>
60
+ </td>
61
+ </tr>
62
+ <tr>
63
+ <th scope="row"><?php _e('Login layout', 'nextend-facebook-connect'); ?></th>
64
+ <td>
65
+ <fieldset>
66
+ <label>
67
+ <input type="radio" name="edd_login_form_layout"
68
+ value="default" <?php if ($settings->get('edd_login_form_layout') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
69
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
70
+ <img src="<?php echo plugins_url('images/layouts/default.png', NSL_ADMIN_PATH) ?>"/>
71
+ </label>
72
+ <label>
73
+ <input type="radio" name="edd_login_form_layout"
74
+ value="below" <?php if ($settings->get('edd_login_form_layout') == 'below') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
75
+ <span><?php _e('Below', 'nextend-facebook-connect'); ?></span><br/>
76
+ <img src="<?php echo plugins_url('images/layouts/below.png', NSL_ADMIN_PATH) ?>"/>
77
+ </label>
78
+ <label>
79
+ <input type="radio" name="edd_login_form_layout"
80
+ value="below-separator" <?php if ($settings->get('edd_login_form_layout') == 'below-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
81
+ <span><?php _e('Below with separator', 'nextend-facebook-connect'); ?></span><br/>
82
+ <img src="<?php echo plugins_url('images/layouts/below-separator.png', NSL_ADMIN_PATH) ?>"/>
83
+ </label>
84
+ <label>
85
+ <input type="radio" name="edd_login_form_layout"
86
+ value="above" <?php if ($settings->get('edd_login_form_layout') == 'above') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
87
+ <span><?php _e('Above', 'nextend-facebook-connect'); ?></span><br/>
88
+ <img src="<?php echo plugins_url('images/layouts/above.png', NSL_ADMIN_PATH) ?>"/>
89
+ </label>
90
+ <label>
91
+ <input type="radio" name="edd_login_form_layout"
92
+ value="above-separator" <?php if ($settings->get('edd_login_form_layout') == 'above-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
93
+ <span><?php _e('Above with separator', 'nextend-facebook-connect'); ?></span><br/>
94
+ <img src="<?php echo plugins_url('images/layouts/above-separator.png', NSL_ADMIN_PATH) ?>"/>
95
+ </label><br>
96
+ </fieldset>
97
+ </td>
98
+ </tr>
99
+
100
+ <tr>
101
+ <th scope="row"><?php _e('Register form', 'nextend-facebook-connect'); ?></th>
102
+ <td>
103
+ <fieldset>
104
+ <label><input type="radio" name="edd_register"
105
+ value="" <?php if ($settings->get('edd_register') == '') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
106
+ <span><?php _e('No Connect button in Register form', 'nextend-facebook-connect'); ?></span></label><br>
107
+ <label><input type="radio" name="edd_register"
108
+ value="top" <?php if ($settings->get('edd_register') == 'top') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
109
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
110
+ <code><?php _e('Action:'); ?>
111
+ edd_register_form_fields_top</code></label><br>
112
+ <label><input type="radio" name="edd_register"
113
+ value="before" <?php if ($settings->get('edd_register') == 'before') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
114
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
115
+ <code><?php _e('Action:'); ?>
116
+ edd_register_form_fields_before</code></label><br>
117
+ <label><input type="radio" name="edd_register"
118
+ value="before_submit" <?php if ($settings->get('edd_register') == 'before_submit') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
119
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
120
+ <code><?php _e('Action:'); ?>
121
+ edd_register_form_fields_before_submit</code></label><br>
122
+ <label><input type="radio" name="edd_register"
123
+ value="after" <?php if ($settings->get('edd_register') == 'after') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
124
+ <span><?php _e('Connect button on', 'nextend-facebook-connect'); ?></span>
125
+ <code><?php _e('Action:'); ?>
126
+ edd_register_form_fields_after</code></label>
127
+ </fieldset>
128
+ </td>
129
+ </tr>
130
+ <tr>
131
+ <th scope="row"><?php _e('Register form button style', 'nextend-facebook-connect'); ?></th>
132
+ <td>
133
+ <fieldset>
134
+ <label>
135
+ <input type="radio" name="edd_register_form_button_style"
136
+ value="default" <?php if ($settings->get('edd_register_form_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="edd_register_form_button_style"
142
+ value="fullwidth" <?php if ($settings->get('edd_register_form_button_style') == 'fullwidth') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
143
+ <span><?php _e('Fullwidth', 'nextend-facebook-connect'); ?></span><br/>
144
+ <img src="<?php echo plugins_url('images/buttons/fullwidth.png', NSL_ADMIN_PATH) ?>"/>
145
+ </label>
146
+ <label>
147
+ <input type="radio" name="edd_register_form_button_style"
148
+ value="icon" <?php if ($settings->get('edd_register_form_button_style') == 'icon') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
149
+ <span><?php _e('Icon', 'nextend-facebook-connect'); ?></span><br/>
150
+ <img src="<?php echo plugins_url('images/buttons/icon.png', NSL_ADMIN_PATH) ?>"/>
151
+ </label><br>
152
+ </fieldset>
153
+ </td>
154
+ </tr>
155
+ <tr>
156
+ <th scope="row"><?php _e('Register layout', 'nextend-facebook-connect'); ?></th>
157
+ <td>
158
+ <fieldset>
159
+ <label>
160
+ <input type="radio" name="edd_register_form_layout"
161
+ value="default" <?php if ($settings->get('edd_register_form_layout') == 'default') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
162
+ <span><?php _e('Default', 'nextend-facebook-connect'); ?></span><br/>
163
+ <img src="<?php echo plugins_url('images/layouts/default.png', NSL_ADMIN_PATH) ?>"/>
164
+ </label>
165
+ <label>
166
+ <input type="radio" name="edd_register_form_layout"
167
+ value="below" <?php if ($settings->get('edd_register_form_layout') == 'below') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
168
+ <span><?php _e('Below', 'nextend-facebook-connect'); ?></span><br/>
169
+ <img src="<?php echo plugins_url('images/layouts/below.png', NSL_ADMIN_PATH) ?>"/>
170
+ </label>
171
+ <label>
172
+ <input type="radio" name="edd_register_form_layout"
173
+ value="below-separator" <?php if ($settings->get('edd_register_form_layout') == 'below-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
174
+ <span><?php _e('Below with separator', 'nextend-facebook-connect'); ?></span><br/>
175
+ <img src="<?php echo plugins_url('images/layouts/below-separator.png', NSL_ADMIN_PATH) ?>"/>
176
+ </label>
177
+ <label>
178
+ <input type="radio" name="edd_register_form_layout"
179
+ value="above" <?php if ($settings->get('edd_register_form_layout') == 'above') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
180
+ <span><?php _e('Above', 'nextend-facebook-connect'); ?></span><br/>
181
+ <img src="<?php echo plugins_url('images/layouts/above.png', NSL_ADMIN_PATH) ?>"/>
182
+ </label>
183
+ <label>
184
+ <input type="radio" name="edd_register_form_layout"
185
+ value="above-separator" <?php if ($settings->get('edd_register_form_layout') == 'above-separator') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
186
+ <span><?php _e('Above with separator', 'nextend-facebook-connect'); ?></span><br/>
187
+ <img src="<?php echo plugins_url('images/layouts/above-separator.png', NSL_ADMIN_PATH) ?>"/>
188
+ </label><br>
189
+ </fieldset>
190
+ </td>
191
+ </tr>
192
+
193
+ <tr>
194
+ <th scope="row"><?php _e('Button alignment', 'nextend-facebook-connect'); ?></th>
195
+ <td>
196
+ <fieldset>
197
+ <label><input type="radio" name="edd_form_button_align"
198
+ value="left" <?php if ($settings->get('edd_form_button_align') == 'left') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
199
+ <span><?php _e('Left', 'nextend-facebook-connect'); ?></span></label><br>
200
+ <label><input type="radio" name="edd_form_button_align"
201
+ value="center" <?php if ($settings->get('edd_form_button_align') == 'center') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
202
+ <span><?php _e('Center', 'nextend-facebook-connect'); ?></span></label><br>
203
+
204
+ <label><input type="radio" name="edd_form_button_align"
205
+ value="right" <?php if ($settings->get('edd_form_button_align') == 'right') : ?> checked="checked" <?php endif; ?><?php echo $attr; ?>>
206
+ <span><?php _e('Right', 'nextend-facebook-connect'); ?></span></label><br>
207
+ </fieldset>
208
+ </td>
209
+ </tr>
210
+ </tbody>
211
+ </table>
212
+ <?php if ($isPRO): ?>
213
+ <p class="submit"><input type="submit" name="submit" id="submit" class="button button-primary"
214
+ value="<?php _e('Save Changes'); ?>"></p>
215
+ <?php endif; ?>
languages/nextend-facebook-connect-de_DE.mo CHANGED
Binary file
languages/nextend-facebook-connect-de_DE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-09-08 13:29+0200\n"
5
- "PO-Revision-Date: 2021-09-08 13:29+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\n"
@@ -17,15 +17,13 @@ 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-Flags-xgettext: −−default-domain=nextend-facebook-connect\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
24
- #: nextend-facebook-connect/NSL/GDPR.php:34
25
  msgid "What personal data we collect and why we collect it"
26
  msgstr ""
27
 
28
- #: nextend-facebook-connect/NSL/GDPR.php:35
29
  #, php-format
30
  msgid ""
31
  "%1$s collects data when a visitor register, login or link the account with "
@@ -35,11 +33,9 @@ msgid ""
35
  "feature."
36
  msgstr ""
37
 
38
- #: nextend-facebook-connect/NSL/GDPR.php:37
39
  msgid "Who we share your data with"
40
  msgstr ""
41
 
42
- #: nextend-facebook-connect/NSL/GDPR.php:38
43
  #, php-format
44
  msgid ""
45
  "%1$s stores the personal data on your site and does not share it with anyone "
@@ -47,44 +43,36 @@ msgid ""
47
  "the social providers."
48
  msgstr ""
49
 
50
- #: nextend-facebook-connect/NSL/GDPR.php:40
51
  msgid "Does the plugin share personal data with third parties"
52
  msgstr ""
53
 
54
- #: nextend-facebook-connect/NSL/GDPR.php:41
55
  #, php-format
56
  msgid ""
57
  "%1$s use the access token what the social provider gave to communicate with "
58
  "the providers to verify account and securely access personal data."
59
  msgstr ""
60
 
61
- #: nextend-facebook-connect/NSL/GDPR.php:43
62
  msgid "How long we retain your data"
63
  msgstr ""
64
 
65
- #: nextend-facebook-connect/NSL/GDPR.php:44
66
  #, php-format
67
  msgid ""
68
  "%1$s removes the collected personal data when the user deleted from "
69
  "WordPress."
70
  msgstr ""
71
 
72
- #: nextend-facebook-connect/NSL/GDPR.php:46
73
  msgid "Does the plugin use personal data collected by others?"
74
  msgstr ""
75
 
76
- #: nextend-facebook-connect/NSL/GDPR.php:47
77
  #, php-format
78
  msgid ""
79
  "%1$s use the personal data collected by the social providers to create "
80
  "account on your site when the visitor authorize it."
81
  msgstr ""
82
 
83
- #: nextend-facebook-connect/NSL/GDPR.php:49
84
  msgid "Does the plugin store things in the browser?"
85
  msgstr ""
86
 
87
- #: nextend-facebook-connect/NSL/GDPR.php:50
88
  #, php-format
89
  msgid ""
90
  "Yes, %1$s must create a cookie for visitors who use the social login "
@@ -92,100 +80,67 @@ msgid ""
92
  "communication and to redirect the user back to the last location."
93
  msgstr ""
94
 
95
- #: nextend-facebook-connect/NSL/GDPR.php:52
96
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
97
  msgstr ""
98
 
99
- #: nextend-facebook-connect/NSL/GDPR.php:53
100
- #: nextend-facebook-connect/NSL/GDPR.php:56
101
  msgid "No"
102
  msgstr ""
103
 
104
- #: nextend-facebook-connect/NSL/GDPR.php:55
105
  msgid ""
106
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
107
  "third party?"
108
  msgstr ""
109
 
110
- #: nextend-facebook-connect/NSL/GDPR.php:99
111
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57
112
  msgid "User"
113
  msgstr ""
114
 
115
- #: nextend-facebook-connect/admin/admin.php:206
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/admin/admin.php:206
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
 
124
- #: nextend-facebook-connect/admin/admin.php:250
125
- #: nextend-facebook-connect/admin/admin.php:280
126
  msgid "Settings saved."
127
  msgstr ""
128
 
129
- #: nextend-facebook-connect/admin/admin.php:259
130
  msgid "The activation was successful"
131
  msgstr ""
132
 
133
- #: nextend-facebook-connect/admin/admin.php:270
134
  msgid "Deactivate completed."
135
  msgstr ""
136
 
137
- #: nextend-facebook-connect/admin/admin.php:449
138
- #: nextend-facebook-connect/admin/templates-provider/menu.php:15
139
- #: nextend-facebook-connect/admin/templates/providers.php:89
140
- #: nextend-facebook-connect/admin/templates/providers.php:101
141
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
142
  msgid "Settings"
143
  msgstr ""
144
 
145
- #: nextend-facebook-connect/admin/admin.php:532
146
- #: nextend-facebook-connect/includes/oauth2.php:143
147
- #: nextend-facebook-connect/includes/oauth2.php:288
148
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
149
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
150
- #: nextend-social-login-pro/providers/apple/apple-client.php:87
151
- #: nextend-social-login-pro/providers/github/github-client.php:87
152
  #, php-format
153
  msgid "Unexpected response: %s"
154
  msgstr ""
155
 
156
- #: nextend-facebook-connect/admin/admin.php:593
157
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
158
  #, php-format
159
  msgid ""
160
  "%s detected that your login url changed. You must update the Oauth redirect "
161
  "URIs in the related social applications."
162
  msgstr ""
163
 
164
- #: nextend-facebook-connect/admin/admin.php:594
165
- #: nextend-social-login-pro/providers/apple/apple.php:294
166
  msgid "Fix Error"
167
  msgstr ""
168
 
169
- #: nextend-facebook-connect/admin/admin.php:594
170
  msgid "Oauth Redirect URI"
171
  msgstr ""
172
 
173
- #: nextend-facebook-connect/admin/admin.php:611
174
  #, php-format
175
  msgid ""
176
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
177
  "display Social Login buttons in %2$s login form!"
178
  msgstr ""
179
 
180
- #: nextend-facebook-connect/admin/admin.php:612
181
  msgid "Dismiss and check Pro Addon"
182
  msgstr ""
183
 
184
- #: nextend-facebook-connect/admin/admin.php:612
185
  msgid "Dismiss"
186
  msgstr ""
187
 
188
- #: nextend-facebook-connect/admin/admin.php:618
189
  #, php-format
190
  msgid ""
191
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -193,39 +148,30 @@ msgid ""
193
  "work properly."
194
  msgstr ""
195
 
196
- #: nextend-facebook-connect/admin/admin.php:619
197
  msgid "Fix now"
198
  msgstr ""
199
 
200
- #: nextend-facebook-connect/admin/admin.php:643
201
  msgid "Activate your Pro Addon"
202
  msgstr ""
203
 
204
- #: nextend-facebook-connect/admin/admin.php:644
205
  msgid ""
206
  "To be able to use the Pro features, you need to activate Nextend Social "
207
  "Login Pro Addon. You can do this by clicking on the Activate button below "
208
  "then select the related purchase."
209
  msgstr ""
210
 
211
- #: nextend-facebook-connect/admin/admin.php:649
212
- #: nextend-social-login-pro/nextend-social-login-pro.php:110
213
  msgid "Activate"
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:747
217
  msgid "License key"
218
  msgstr ""
219
 
220
- #: nextend-facebook-connect/admin/admin.php:770
221
  msgid "OAuth proxy page"
222
  msgstr ""
223
 
224
- #: nextend-facebook-connect/admin/admin.php:773
225
  msgid "Register flow page"
226
  msgstr ""
227
 
228
- #: nextend-facebook-connect/admin/admin.php:780
229
  #, php-format
230
  msgid ""
231
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
@@ -233,470 +179,285 @@ msgid ""
233
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
234
  msgstr ""
235
 
236
- #: nextend-facebook-connect/admin/interim.php:12
237
- #: nextend-facebook-connect/admin/interim.php:23
238
  msgid "You have logged in successfully."
239
  msgstr ""
240
 
241
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
242
  msgid "Login label"
243
  msgstr ""
244
 
245
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
246
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
247
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
248
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
249
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
250
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
251
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
252
  msgid "Reset to default"
253
  msgstr ""
254
 
255
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
256
  msgid "Register label"
257
  msgstr ""
258
 
259
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
260
  msgid "Link label"
261
  msgstr ""
262
 
263
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
264
  msgid "Unlink label"
265
  msgstr ""
266
 
267
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
268
  msgid "Default button"
269
  msgstr ""
270
 
271
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
273
  msgid "Use custom button"
274
  msgstr ""
275
 
276
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
277
  #, php-format
278
  msgid "Use the %s in your custom button's code to make the label show up."
279
  msgstr ""
280
 
281
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
282
  msgid "Icon button"
283
  msgstr ""
284
 
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
286
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
287
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
288
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:220
289
- #: nextend-facebook-connect/admin/templates/settings/comment.php:79
290
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8
291
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:127
292
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8
293
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:167
294
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:198
295
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
296
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:198
297
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:179
298
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:347
299
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
300
- #: nextend-facebook-connect/providers/google/admin/settings.php:62
301
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
302
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
303
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
304
- #: nextend-social-login-pro/providers/github/admin/settings.php:48
305
- #: nextend-social-login-pro/providers/line/admin/settings.php:47
306
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:57
307
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:48
308
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:60
309
- #: nextend-social-login-pro/providers/vk/admin/settings.php:48
310
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
311
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47
312
  msgid "Save Changes"
313
  msgstr ""
314
 
315
- #: nextend-facebook-connect/admin/templates-provider/menu.php:13
316
- #: nextend-facebook-connect/admin/templates/providers.php:69
317
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
318
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
319
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
320
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
321
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28
322
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
323
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:8
324
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:8
325
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
326
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:8
327
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
328
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
329
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
330
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8
331
  msgid "Getting Started"
332
  msgstr ""
333
 
334
- #: nextend-facebook-connect/admin/templates-provider/menu.php:17
335
  msgid "Buttons"
336
  msgstr ""
337
 
338
- #: nextend-facebook-connect/admin/templates-provider/menu.php:21
339
  msgid "Sync data"
340
  msgstr ""
341
 
342
- #: nextend-facebook-connect/admin/templates-provider/menu.php:24
343
  msgid "Usage"
344
  msgstr ""
345
 
346
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11
347
  msgid "Other settings"
348
  msgstr ""
349
 
350
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16
351
  msgid "Username prefix on register"
352
  msgstr ""
353
 
354
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
355
  msgid "Fallback username prefix on register"
356
  msgstr ""
357
 
358
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27
359
  msgid "Used when username is invalid or not stored"
360
  msgstr ""
361
 
362
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32
363
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
364
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
365
  msgid "Terms and conditions"
366
  msgstr ""
367
 
368
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
369
  #, php-format
370
  msgid "Override global \"%1$s\""
371
  msgstr ""
372
 
373
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
374
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12
375
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12
376
  msgid "PRO settings"
377
  msgstr ""
378
 
379
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28
380
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32
381
  msgid "Ask E-mail on registration"
382
  msgstr ""
383
 
384
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35
385
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69
386
  msgid "Never"
387
  msgstr ""
388
 
389
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38
390
  msgid "When email is not provided or empty"
391
  msgstr ""
392
 
393
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41
394
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
395
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72
396
  msgid "Always"
397
  msgstr ""
398
 
399
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46
400
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50
401
  msgid "Ask Username on registration"
402
  msgstr ""
403
 
404
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53
405
  msgid "Never, generate automatically"
406
  msgstr ""
407
 
408
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
409
  msgid "When username is empty or invalid"
410
  msgstr ""
411
 
412
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
413
  msgid "Ask Password on registration"
414
  msgstr ""
415
 
416
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
417
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
418
  msgid "Automatically connect the existing account upon registration"
419
  msgstr ""
420
 
421
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
422
- #: nextend-facebook-connect/admin/templates/providers.php:47
423
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:86
424
- #: nextend-facebook-connect/admin/templates/settings/general.php:48
425
- #: nextend-facebook-connect/admin/templates/settings/general.php:213
426
- #: nextend-facebook-connect/admin/templates/settings/general.php:228
427
- #: nextend-facebook-connect/admin/templates/settings/general.php:246
428
- #: nextend-facebook-connect/admin/templates/settings/general.php:261
429
- #: nextend-facebook-connect/includes/provider-admin.php:218
430
  msgid "Disabled"
431
  msgstr ""
432
 
433
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88
434
  msgid "Automatic, based on email address"
435
  msgstr ""
436
 
437
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93
438
  msgid "Disable login for the selected roles"
439
  msgstr ""
440
 
441
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113
442
  msgid "Default roles for user who registered with this provider"
443
  msgstr ""
444
 
445
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
446
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50
447
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:76
448
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:143
449
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:168
450
- #: nextend-facebook-connect/admin/templates/settings/comment.php:39
451
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35
452
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97
453
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:39
454
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:111
455
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
456
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
457
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
458
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
459
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
460
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
461
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
462
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:199
463
- #: nextend-facebook-connect/widget.php:42
464
  msgid "Default"
465
  msgstr ""
466
 
467
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
468
  msgid "Register"
469
  msgstr ""
470
 
471
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58
472
  msgid "Login"
473
  msgstr ""
474
 
475
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66
476
  msgid "Link"
477
  msgstr ""
478
 
479
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84
480
  msgid "Store in meta key"
481
  msgstr ""
482
 
483
- #: nextend-facebook-connect/admin/templates-provider/usage.php:9
484
  msgid "Shortcode"
485
  msgstr ""
486
 
487
- #: nextend-facebook-connect/admin/templates-provider/usage.php:12
488
  msgid "Important!"
489
  msgstr ""
490
 
491
- #: nextend-facebook-connect/admin/templates-provider/usage.php:13
492
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
493
  msgstr ""
494
 
495
- #: nextend-facebook-connect/admin/templates-provider/usage.php:14
496
  msgid "See the full list of shortcode parameters."
497
  msgstr ""
498
 
499
- #: nextend-facebook-connect/admin/templates-provider/usage.php:31
500
  msgid "Simple link"
501
  msgstr ""
502
 
503
- #: nextend-facebook-connect/admin/templates-provider/usage.php:34
504
  msgid "Click here to login or register"
505
  msgstr ""
506
 
507
- #: nextend-facebook-connect/admin/templates-provider/usage.php:39
508
  msgid "Image button"
509
  msgstr ""
510
 
511
- #: nextend-facebook-connect/admin/templates-provider/usage.php:42
512
  msgid "Image url"
513
  msgstr ""
514
 
515
- #: nextend-facebook-connect/admin/templates/debug.php:7
516
- #: nextend-facebook-connect/admin/templates/header.php:20
517
  msgid "Debug"
518
  msgstr ""
519
 
520
- #: nextend-facebook-connect/admin/templates/debug.php:41
521
  msgid "Test network connection with providers"
522
  msgstr ""
523
 
524
- #: nextend-facebook-connect/admin/templates/debug.php:48
525
  msgid "You don't have cURL support, please enable it in php.ini!"
526
  msgstr ""
527
 
528
- #: nextend-facebook-connect/admin/templates/debug.php:58
529
  #, php-format
530
  msgid "Test %1$s connection"
531
  msgstr ""
532
 
533
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
534
  msgid "Fix Oauth Redirect URIs"
535
  msgstr ""
536
 
537
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13
538
  msgid "Every Oauth Redirect URI seems fine"
539
  msgstr ""
540
 
541
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32
542
  msgid "Got it"
543
  msgstr ""
544
 
545
- #: nextend-facebook-connect/admin/templates/global-settings.php:28
546
- #: nextend-facebook-connect/admin/templates/menu.php:8
547
  msgid "Global Settings"
548
  msgstr ""
549
 
550
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
551
  msgid "General"
552
  msgstr ""
553
 
554
- #: nextend-facebook-connect/admin/templates/global-settings.php:33
555
  msgid "Privacy"
556
  msgstr ""
557
 
558
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
559
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
560
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
561
  msgid "Login Form"
562
  msgstr ""
563
 
564
- #: nextend-facebook-connect/admin/templates/global-settings.php:39
565
  msgid "Comment"
566
  msgstr ""
567
 
568
- #: nextend-facebook-connect/admin/templates/header.php:14
569
  msgid "Docs"
570
  msgstr ""
571
 
572
- #: nextend-facebook-connect/admin/templates/header.php:17
573
  msgid "Support"
574
  msgstr ""
575
 
576
- #: nextend-facebook-connect/admin/templates/header.php:23
577
- #: nextend-facebook-connect/admin/templates/menu.php:12
578
  msgid "Pro Addon"
579
  msgstr ""
580
 
581
- #: nextend-facebook-connect/admin/templates/menu.php:6
582
  msgid "Providers"
583
  msgstr ""
584
 
585
- #: nextend-facebook-connect/admin/templates/pro-addon.php:13
586
- #: nextend-social-login-pro/class-provider-extension.php:213
587
- #: nextend-social-login-pro/class-provider-extension.php:216
588
  msgid "Error"
589
  msgstr ""
590
 
591
- #: nextend-facebook-connect/admin/templates/pro-addon.php:14
592
  msgid ""
593
  "You don’t have sufficient permissions to install and activate plugins. "
594
  "Please contact your site’s administrator!"
595
  msgstr ""
596
 
597
- #: nextend-facebook-connect/admin/templates/pro-addon.php:22
598
- #: nextend-facebook-connect/admin/templates/pro-addon.php:32
599
- #: nextend-facebook-connect/admin/templates/pro.php:34
600
  msgid "Activate Pro Addon"
601
  msgstr ""
602
 
603
- #: nextend-facebook-connect/admin/templates/pro-addon.php:23
604
  msgid ""
605
  "Pro Addon is installed but not activated. To be able to use the Pro "
606
  "features, you need to activate it."
607
  msgstr ""
608
 
609
- #: nextend-facebook-connect/admin/templates/pro-addon.php:37
610
- #: nextend-facebook-connect/admin/templates/pro-addon.php:142
611
  msgid "Deactivate Pro Addon"
612
  msgstr ""
613
 
614
- #: nextend-facebook-connect/admin/templates/pro-addon.php:48
615
- #: nextend-facebook-connect/admin/templates/pro.php:43
616
  msgid "Pro Addon is not installed"
617
  msgstr ""
618
 
619
- #: nextend-facebook-connect/admin/templates/pro-addon.php:50
620
  msgid ""
621
  "To access the Pro features, you need to install and activate the Pro Addon."
622
  msgstr ""
623
 
624
- #: nextend-facebook-connect/admin/templates/pro-addon.php:59
625
  #, php-format
626
  msgid "Install %s now"
627
  msgstr ""
628
 
629
- #: nextend-facebook-connect/admin/templates/pro-addon.php:60
630
- #: nextend-facebook-connect/admin/templates/pro.php:47
631
  msgid "Install Pro Addon"
632
  msgstr ""
633
 
634
- #: nextend-facebook-connect/admin/templates/pro-addon.php:94
635
  msgid "Activating..."
636
  msgstr ""
637
 
638
- #: nextend-facebook-connect/admin/templates/pro-addon.php:118
639
  msgid "Not compatible!"
640
  msgstr ""
641
 
642
- #: nextend-facebook-connect/admin/templates/pro-addon.php:119
643
  #, php-format
644
  msgid ""
645
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
646
  "newer."
647
  msgstr ""
648
 
649
- #: nextend-facebook-connect/admin/templates/pro-addon.php:123
650
  msgid "Update Pro Addon"
651
  msgstr ""
652
 
653
- #: nextend-facebook-connect/admin/templates/pro-addon.php:133
654
  msgid "Pro Addon is installed and activated"
655
  msgstr ""
656
 
657
- #: nextend-facebook-connect/admin/templates/pro-addon.php:135
658
  msgid ""
659
  "You installed and activated the Pro Addon. If you don’t want to use it "
660
  "anymore, you can deactivate using the button below."
661
  msgstr ""
662
 
663
- #: nextend-facebook-connect/admin/templates/pro.php:8
664
  msgid "Get Pro Addon to unlock more features"
665
  msgstr ""
666
 
667
- #: nextend-facebook-connect/admin/templates/pro.php:9
668
  #, php-format
669
  msgid ""
670
  "The features below are available in %s Pro Addon. Get it today and tweak the "
671
  "awesome settings."
672
  msgstr ""
673
 
674
- #: nextend-facebook-connect/admin/templates/pro.php:10
675
  msgid ""
676
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
677
  "you can purchase it using the button below."
678
  msgstr ""
679
 
680
- #: nextend-facebook-connect/admin/templates/pro.php:14
681
  msgid "Buy Pro Addon"
682
  msgstr ""
683
 
684
- #: nextend-facebook-connect/admin/templates/pro.php:16
685
  msgid "Authorize Pro Addon"
686
  msgstr ""
687
 
688
- #: nextend-facebook-connect/admin/templates/pro.php:25
689
  msgid "Pro Addon is not activated"
690
  msgstr ""
691
 
692
- #: nextend-facebook-connect/admin/templates/pro.php:26
693
- #: nextend-facebook-connect/admin/templates/pro.php:44
694
  msgid ""
695
  "To be able to use the Pro features, you need to install and activate the "
696
  "Nextend Social Login Pro Addon."
697
  msgstr ""
698
 
699
- #: nextend-facebook-connect/admin/templates/providers.php:8
700
  #, php-format
701
  msgid ""
702
  "%1$s detected that you have providers configured but none of them are "
@@ -704,603 +465,346 @@ msgid ""
704
  "one provider enabled!"
705
  msgstr ""
706
 
707
- #: nextend-facebook-connect/admin/templates/providers.php:38
708
  msgid "Not Available"
709
  msgstr ""
710
 
711
- #: nextend-facebook-connect/admin/templates/providers.php:41
712
  msgid "Not Configured"
713
  msgstr ""
714
 
715
- #: nextend-facebook-connect/admin/templates/providers.php:44
716
  msgid "Not Verified"
717
  msgstr ""
718
 
719
- #: nextend-facebook-connect/admin/templates/providers.php:50
720
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:89
721
- #: nextend-facebook-connect/admin/templates/settings/general.php:51
722
- #: nextend-facebook-connect/admin/templates/settings/general.php:216
723
- #: nextend-facebook-connect/admin/templates/settings/general.php:231
724
- #: nextend-facebook-connect/admin/templates/settings/general.php:249
725
- #: nextend-facebook-connect/admin/templates/settings/general.php:264
726
- #: nextend-facebook-connect/includes/provider-admin.php:221
727
- #: nextend-facebook-connect/providers/google/admin/settings.php:53
728
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
729
  msgid "Enabled"
730
  msgstr ""
731
 
732
- #: nextend-facebook-connect/admin/templates/providers.php:62
733
  msgid "Upgrade Now"
734
  msgstr ""
735
 
736
- #: nextend-facebook-connect/admin/templates/providers.php:77
737
- #: nextend-facebook-connect/includes/provider-admin.php:205
738
  msgid "Verify Settings"
739
  msgstr ""
740
 
741
- #: nextend-facebook-connect/admin/templates/providers.php:85
742
- #: nextend-facebook-connect/includes/provider-admin.php:250
743
  msgid "Enable"
744
  msgstr ""
745
 
746
- #: nextend-facebook-connect/admin/templates/providers.php:97
747
- #: nextend-facebook-connect/includes/provider-admin.php:258
748
  msgid "Disable"
749
  msgstr ""
750
 
751
- #: nextend-facebook-connect/admin/templates/providers.php:122
752
  msgid "Stay Updated"
753
  msgstr ""
754
 
755
- #: nextend-facebook-connect/admin/templates/providers.php:123
756
  msgid ""
757
  "Receive info on the latest plugin updates and social provider related "
758
  "changes."
759
  msgstr ""
760
 
761
- #: nextend-facebook-connect/admin/templates/providers.php:124
762
  msgid "Enter your email address"
763
  msgstr ""
764
 
765
- #: nextend-facebook-connect/admin/templates/providers.php:128
766
  msgid "Subscribe"
767
  msgstr ""
768
 
769
- #: nextend-facebook-connect/admin/templates/providers.php:144
770
  msgid "Saving..."
771
  msgstr ""
772
 
773
- #: nextend-facebook-connect/admin/templates/providers.php:145
774
  msgid "Saving failed"
775
  msgstr ""
776
 
777
- #: nextend-facebook-connect/admin/templates/providers.php:146
778
  msgid "Order Saved"
779
  msgstr ""
780
 
781
- #: nextend-facebook-connect/admin/templates/providers.php:215
782
  msgid "Successfully subscribed!"
783
  msgstr ""
784
 
785
- #: nextend-facebook-connect/admin/templates/providers.php:215
786
  msgid ""
787
  "We'll be bringing you all the latest news and updates about Social Login - "
788
  "right to your inbox."
789
  msgstr ""
790
 
791
- #: nextend-facebook-connect/admin/templates/providers.php:222
792
  msgid "The entered email address is invalid!"
793
  msgstr ""
794
 
795
- #: nextend-facebook-connect/admin/templates/review.php:14
796
  msgid "Rate your experience!"
797
  msgstr ""
798
 
799
- #: nextend-facebook-connect/admin/templates/review.php:15
800
  msgid "Hated it"
801
  msgstr ""
802
 
803
- #: nextend-facebook-connect/admin/templates/review.php:16
804
  msgid "Disliked it"
805
  msgstr ""
806
 
807
- #: nextend-facebook-connect/admin/templates/review.php:17
808
  msgid "It was ok"
809
  msgstr ""
810
 
811
- #: nextend-facebook-connect/admin/templates/review.php:18
812
  msgid "Liked it"
813
  msgstr ""
814
 
815
- #: nextend-facebook-connect/admin/templates/review.php:19
816
  msgid "Loved it"
817
  msgstr ""
818
 
819
- #: nextend-facebook-connect/admin/templates/review.php:31
820
  msgid "Please Leave a Review"
821
  msgstr ""
822
 
823
- #: nextend-facebook-connect/admin/templates/review.php:32
824
  msgid ""
825
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
826
  "please leave us a review. It will be a tremendous help for us!"
827
  msgstr ""
828
 
829
- #: nextend-facebook-connect/admin/templates/review.php:34
830
  msgid "Ok, you deserve it"
831
  msgstr ""
832
 
833
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
834
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:90
835
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:102
836
  msgid "Register form"
837
  msgstr ""
838
 
839
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
840
  msgid "No Connect button"
841
  msgstr ""
842
 
843
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
844
  msgid "Connect button before register"
845
  msgstr ""
846
 
847
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
848
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
849
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
850
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:27
851
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:99
852
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171
853
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
854
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
855
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171
856
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
857
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
858
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:111
859
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
860
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:169
861
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
862
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
863
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
864
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:248
865
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:299
866
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:304
867
  msgid "Action:"
868
  msgstr ""
869
 
870
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
871
  msgid "Connect button before account details"
872
  msgstr ""
873
 
874
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
875
  msgid "Connect button after register"
876
  msgstr ""
877
 
878
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44
879
  msgid "Register button style"
880
  msgstr ""
881
 
882
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56
883
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:149
884
- #: nextend-facebook-connect/admin/templates/settings/comment.php:45
885
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41
886
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:103
887
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:45
888
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:117
889
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
890
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:117
891
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
892
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:114
893
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
894
  msgid "Fullwidth"
895
  msgstr ""
896
 
897
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:62
898
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155
899
- #: nextend-facebook-connect/admin/templates/settings/comment.php:51
900
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:47
901
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:109
902
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:51
903
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:123
904
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:51
905
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:123
906
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:63
907
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:120
908
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:36
909
- #: nextend-facebook-connect/widget.php:47
910
  msgid "Icon"
911
  msgstr ""
912
 
913
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:70
914
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
915
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
916
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
917
  msgid "Register layout"
918
  msgstr ""
919
 
920
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:82
921
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:174
922
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60
923
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122
924
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:64
925
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:136
926
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
927
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
928
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
929
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
930
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
931
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
932
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:211
933
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:261
934
  msgid "Below"
935
  msgstr ""
936
 
937
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88
938
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:180
939
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66
940
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128
941
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:70
942
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:142
943
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
944
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
945
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
946
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
947
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
948
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
949
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
950
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:267
951
  msgid "Below with separator"
952
  msgstr ""
953
 
954
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:94
955
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:186
956
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78
957
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:134
958
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
959
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:148
960
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
961
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:148
962
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
963
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:145
964
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
965
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
966
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
967
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:273
968
  msgid "Above"
969
  msgstr ""
970
 
971
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:100
972
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:192
973
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:84
974
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140
975
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:82
976
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:154
977
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:82
978
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:154
979
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:94
980
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:151
981
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
982
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:152
983
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:229
984
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:279
985
  msgid "Above with separator"
986
  msgstr ""
987
 
988
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:108
989
  msgid "Sidebar Login form"
990
  msgstr ""
991
 
992
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:113
993
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:129
994
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
995
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
996
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
997
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:26
998
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:39
999
  msgid "Hide login buttons"
1000
  msgstr ""
1001
 
1002
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:116
1003
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:132
1004
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
1005
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
1006
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
1007
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:23
1008
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:36
1009
- #: nextend-facebook-connect/widget.php:76
1010
  msgid "Show login buttons"
1011
  msgstr ""
1012
 
1013
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:117
1014
  msgid ""
1015
  "Some themes that use BuddyPress, display the social buttons twice in the "
1016
  "same login form. This option can disable the one for: "
1017
  "<b>bp_sidebar_login_form action</b>. "
1018
  msgstr ""
1019
 
1020
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124
1021
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1022
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1023
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
1024
  msgid "Login form"
1025
  msgstr ""
1026
 
1027
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:137
1028
  msgid "Login button style"
1029
  msgstr ""
1030
 
1031
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162
1032
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54
1033
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:58
1034
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1035
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1036
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
1037
  msgid "Login layout"
1038
  msgstr ""
1039
 
1040
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:200
1041
- #: nextend-facebook-connect/admin/templates/settings/comment.php:59
1042
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:53
1043
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:178
1044
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178
1045
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:159
1046
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:311
1047
  msgid "Button alignment"
1048
  msgstr ""
1049
 
1050
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:205
1051
- #: nextend-facebook-connect/admin/templates/settings/comment.php:64
1052
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:152
1053
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:58
1054
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:183
1055
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:183
1056
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:164
1057
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:316
1058
- #: nextend-facebook-connect/widget.php:57
1059
  msgid "Left"
1060
  msgstr ""
1061
 
1062
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:208
1063
- #: nextend-facebook-connect/admin/templates/settings/comment.php:67
1064
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155
1065
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:61
1066
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:186
1067
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
1068
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
1069
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:319
1070
- #: nextend-facebook-connect/widget.php:62
1071
  msgid "Center"
1072
  msgstr ""
1073
 
1074
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:212
1075
- #: nextend-facebook-connect/admin/templates/settings/comment.php:71
1076
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:159
1077
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:65
1078
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:190
1079
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:190
1080
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:171
1081
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1082
- #: nextend-facebook-connect/widget.php:67
1083
  msgid "Right"
1084
  msgstr ""
1085
 
1086
- #: nextend-facebook-connect/admin/templates/settings/comment.php:18
1087
  msgid "Login button"
1088
  msgstr ""
1089
 
1090
- #: nextend-facebook-connect/admin/templates/settings/comment.php:23
1091
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
1092
  msgid "Show"
1093
  msgstr ""
1094
 
1095
- #: nextend-facebook-connect/admin/templates/settings/comment.php:26
1096
  msgid "Hide"
1097
  msgstr ""
1098
 
1099
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1100
  #, php-format
1101
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
1102
  msgstr ""
1103
 
1104
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1105
  msgid "Discussion"
1106
  msgstr ""
1107
 
1108
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1109
  msgid "Users must be registered and logged in to comment"
1110
  msgstr ""
1111
 
1112
- #: nextend-facebook-connect/admin/templates/settings/comment.php:33
1113
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
1114
  msgid "Button style"
1115
  msgstr ""
1116
 
1117
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1118
  msgid "Target window"
1119
  msgstr ""
1120
 
1121
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34
1122
  msgid "Prefer popup"
1123
  msgstr ""
1124
 
1125
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37
1126
  msgid "Prefer new tab"
1127
  msgstr ""
1128
 
1129
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40
1130
  msgid "Prefer same window"
1131
  msgstr ""
1132
 
1133
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46
1134
  msgid "Registration notification sent to"
1135
  msgstr ""
1136
 
1137
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51
1138
- #: nextend-facebook-connect/admin/templates/settings/general.php:243
1139
  msgid "WordPress default"
1140
  msgstr ""
1141
 
1142
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
1143
  msgid "Nobody"
1144
  msgstr ""
1145
 
1146
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60
1147
  msgid "Admin"
1148
  msgstr ""
1149
 
1150
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63
1151
  msgid "User and Admin"
1152
  msgstr ""
1153
 
1154
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69
1155
  msgid "Unlink"
1156
  msgstr ""
1157
 
1158
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75
1159
  msgid "Allow Social account unlink"
1160
  msgstr ""
1161
 
1162
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
1163
  msgid "Show linked providers"
1164
  msgstr ""
1165
 
1166
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1167
  #, php-format
1168
  msgid "Providers linked to the account will appear in the %1$s."
1169
  msgstr ""
1170
 
1171
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1172
  msgid "Users table"
1173
  msgstr ""
1174
 
1175
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:96
1176
  msgid "Disable Admin bar for roles"
1177
  msgstr ""
1178
 
1179
- #: nextend-facebook-connect/admin/templates/settings/general.php:43
1180
  msgid "Debug mode"
1181
  msgstr ""
1182
 
1183
- #: nextend-facebook-connect/admin/templates/settings/general.php:57
1184
  msgid "Page for register flow"
1185
  msgstr ""
1186
 
1187
- #: nextend-facebook-connect/admin/templates/settings/general.php:67
1188
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
1189
  msgid "None"
1190
  msgstr ""
1191
 
1192
- #: nextend-facebook-connect/admin/templates/settings/general.php:75
1193
  msgid ""
1194
  "This setting is used when you request additional data from the users (such "
1195
  "as email address) and to display the Terms and conditions."
1196
  msgstr ""
1197
 
1198
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1199
  #, php-format
1200
  msgid ""
1201
  "%2$s First create a new page and insert the following shortcode: %1$s then "
1202
  "select this page above"
1203
  msgstr ""
1204
 
1205
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1206
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1207
  msgid "Usage:"
1208
  msgstr ""
1209
 
1210
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1211
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1212
  #, php-format
1213
  msgid ""
1214
  "%1$s You won't be able to reach the selected page unless a social login/"
1215
  "registration happens."
1216
  msgstr ""
1217
 
1218
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1219
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1220
  msgid "Important:"
1221
  msgstr ""
1222
 
1223
- #: nextend-facebook-connect/admin/templates/settings/general.php:81
1224
  msgid "OAuth redirect uri proxy page"
1225
  msgstr ""
1226
 
1227
- #: nextend-facebook-connect/admin/templates/settings/general.php:101
1228
  msgid ""
1229
  "You can use this setting when wp-login.php page is not available to handle "
1230
  "the OAuth flow."
1231
  msgstr ""
1232
 
1233
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1234
  #, php-format
1235
  msgid "%1$s First create a new page then select this page above."
1236
  msgstr ""
1237
 
1238
- #: nextend-facebook-connect/admin/templates/settings/general.php:109
1239
  msgid "Prevent external redirect overrides"
1240
  msgstr ""
1241
 
1242
- #: nextend-facebook-connect/admin/templates/settings/general.php:115
1243
  msgid "Disable external redirects"
1244
  msgstr ""
1245
 
1246
- #: nextend-facebook-connect/admin/templates/settings/general.php:122
1247
  msgid "Default redirect url"
1248
  msgstr ""
1249
 
1250
- #: nextend-facebook-connect/admin/templates/settings/general.php:135
1251
- #: nextend-facebook-connect/admin/templates/settings/general.php:173
1252
  msgid "for Login"
1253
  msgstr ""
1254
 
1255
- #: nextend-facebook-connect/admin/templates/settings/general.php:150
1256
- #: nextend-facebook-connect/admin/templates/settings/general.php:188
1257
  msgid "for Register"
1258
  msgstr ""
1259
 
1260
- #: nextend-facebook-connect/admin/templates/settings/general.php:160
1261
  msgid "Fixed redirect url"
1262
  msgstr ""
1263
 
1264
- #: nextend-facebook-connect/admin/templates/settings/general.php:197
1265
  msgid "Blacklisted redirects"
1266
  msgstr ""
1267
 
1268
- #: nextend-facebook-connect/admin/templates/settings/general.php:203
1269
  msgid "If you want to blacklist redirect url params. One pattern per line."
1270
  msgstr ""
1271
 
1272
- #: nextend-facebook-connect/admin/templates/settings/general.php:208
1273
  msgid "Support login restrictions"
1274
  msgstr ""
1275
 
1276
- #: nextend-facebook-connect/admin/templates/settings/general.php:218
1277
  #, php-format
1278
  msgid "Please visit to our %1$s to check what plugins are supported!"
1279
  msgstr ""
1280
 
1281
- #: nextend-facebook-connect/admin/templates/settings/general.php:223
1282
  msgid "Display avatars in \"All media items\""
1283
  msgstr ""
1284
 
1285
- #: nextend-facebook-connect/admin/templates/settings/general.php:233
1286
  msgid ""
1287
  "Enabling this option can speed up loading images in Media Library - Grid "
1288
  "view!"
1289
  msgstr ""
1290
 
1291
- #: nextend-facebook-connect/admin/templates/settings/general.php:238
1292
  msgid "Membership"
1293
  msgstr ""
1294
 
1295
- #: nextend-facebook-connect/admin/templates/settings/general.php:251
1296
  msgid "Allow registration with Social login."
1297
  msgstr ""
1298
 
1299
- #: nextend-facebook-connect/admin/templates/settings/general.php:256
1300
  msgid "Custom label for register buttons"
1301
  msgstr ""
1302
 
1303
- #: nextend-facebook-connect/admin/templates/settings/general.php:266
1304
  #, php-format
1305
  msgid ""
1306
  "Set a custom label for the social buttons in registration forms and for "
@@ -1308,265 +812,168 @@ msgid ""
1308
  "can be modified at the Buttons tab of each provider."
1309
  msgstr ""
1310
 
1311
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1312
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1313
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1314
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1315
- msgid "Login form button style"
1316
- msgstr ""
1317
-
1318
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72
1319
  msgid "Below and floating"
1320
  msgstr ""
1321
 
1322
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91
1323
  msgid "Embedded Login form button style"
1324
  msgstr ""
1325
 
1326
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116
1327
  msgid "Embedded Login layout"
1328
  msgstr ""
1329
 
1330
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147
1331
  msgid "Embedded login form button alignment"
1332
  msgstr ""
1333
 
1334
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1335
- #: nextend-facebook-connect/includes/userData.php:152
1336
  msgid "Registration Form"
1337
  msgstr ""
1338
 
1339
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
1340
  msgid "Embedded login form"
1341
  msgstr ""
1342
 
1343
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:23
1344
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1345
- msgid "No Connect button in Login form"
1346
- msgstr ""
1347
-
1348
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:26
1349
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:98
1350
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1351
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:98
1352
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
1353
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:57
1354
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
1355
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
1356
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
1357
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:173
1358
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:179
1359
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:185
1360
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:247
1361
- msgid "Connect button on"
1362
- msgstr ""
1363
-
1364
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
1365
  msgid "Sign Up form"
1366
  msgstr ""
1367
 
1368
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:95
1369
  msgid "No Connect button in Sign Up form"
1370
  msgstr ""
1371
 
1372
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:105
1373
  msgid "Sign Up form button style"
1374
  msgstr ""
1375
 
1376
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:130
1377
  msgid "Sign Up layout"
1378
  msgstr ""
1379
 
1380
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:162
1381
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:162
1382
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:290
1383
  msgid "Account details"
1384
  msgstr ""
1385
 
1386
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:167
1387
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:167
1388
  msgid "No link buttons"
1389
  msgstr ""
1390
 
1391
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:170
1392
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:170
1393
  msgid "Link buttons after account details"
1394
  msgstr ""
1395
 
1396
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1397
- #: nextend-facebook-connect/nextend-social-login.php:152
1398
  msgid ""
1399
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1400
  "\"_blank\">Privacy Policy</a>"
1401
  msgstr ""
1402
 
1403
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1404
  msgid "Store"
1405
  msgstr ""
1406
 
1407
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1408
  msgid "First and last name"
1409
  msgstr ""
1410
 
1411
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1412
  msgid "When not enabled, username will be randomly generated."
1413
  msgstr ""
1414
 
1415
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1416
- #: nextend-social-login-pro/class-provider-extension.php:322
1417
  msgid "Email"
1418
  msgstr ""
1419
 
1420
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1421
  msgid "When not enabled, email will be empty."
1422
  msgstr ""
1423
 
1424
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1425
- #: nextend-facebook-connect/includes/avatar.php:49
1426
  msgid "Avatar"
1427
  msgstr ""
1428
 
1429
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1430
- #: nextend-facebook-connect/includes/provider.php:1108
1431
  msgid "Access token"
1432
  msgstr ""
1433
 
1434
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:95
1435
- msgid "No Connect button in Register form"
1436
- msgstr ""
1437
-
1438
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
1439
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
1440
- msgid "Register form button style"
1441
- msgstr ""
1442
-
1443
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1444
  msgid "Register Form"
1445
  msgstr ""
1446
 
1447
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:49
1448
  msgid "No Connect button in login form"
1449
  msgstr ""
1450
 
1451
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:107
1452
  msgid "No Connect button in register form"
1453
  msgstr ""
1454
 
1455
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:160
1456
  msgid "Billing form"
1457
  msgstr ""
1458
 
1459
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:165
1460
  msgid "No Connect button in billing form"
1461
  msgstr ""
1462
 
1463
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:193
1464
  msgid "Billing layout"
1465
  msgstr ""
1466
 
1467
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:205
1468
  msgid "Default with separator"
1469
  msgstr ""
1470
 
1471
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:239
1472
  msgid "Checkout for WooCommerce"
1473
  msgstr ""
1474
 
1475
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:244
1476
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1477
  msgstr ""
1478
 
1479
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:255
1480
  msgid "Checkout for WooCommerce layout"
1481
  msgstr ""
1482
 
1483
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:295
1484
  msgid "No Connect buttons in account details form"
1485
  msgstr ""
1486
 
1487
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:298
1488
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:303
1489
  msgid "Link buttons on"
1490
  msgstr ""
1491
 
1492
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:329
1493
  msgid "Email template for registration"
1494
  msgstr ""
1495
 
1496
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:334
1497
  msgid "WordPress default notification"
1498
  msgstr ""
1499
 
1500
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:337
1501
  msgid "WooCommerce registration notification"
1502
  msgstr ""
1503
 
1504
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:339
1505
  #, php-format
1506
  msgid ""
1507
  "Defines whether the registration with %1$s will send the same registration "
1508
  "notification that %2$s does, instead of the %3$s default one."
1509
  msgstr ""
1510
 
1511
- #: nextend-facebook-connect/admin/templates/test-connection.php:42
1512
  #, php-format
1513
  msgid "Network connection successful: %1$s"
1514
  msgstr ""
1515
 
1516
- #: nextend-facebook-connect/admin/templates/test-connection.php:49
1517
  #, php-format
1518
  msgid "Network connection failed: %1$s"
1519
  msgstr ""
1520
 
1521
- #: nextend-facebook-connect/admin/templates/test-connection.php:52
1522
  msgid ""
1523
  "Please contact with your hosting provider to resolve the network issue "
1524
  "between your server and the provider."
1525
  msgstr ""
1526
 
1527
- #: nextend-facebook-connect/includes/avatar.php:50
1528
  msgid "Manage Avatar"
1529
  msgstr ""
1530
 
1531
- #: nextend-facebook-connect/includes/avatar.php:51
1532
  #, php-format
1533
  msgid "Avatar <span class=\"count\">(%s)</span>"
1534
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1535
  msgstr[0] ""
1536
  msgstr[1] ""
1537
 
1538
- #: nextend-facebook-connect/includes/avatar.php:399
1539
  msgid "Invalid URL Provided."
1540
  msgstr ""
1541
 
1542
- #: nextend-facebook-connect/includes/avatar.php:404
1543
  msgid "Could not create Temporary file."
1544
  msgstr ""
1545
 
1546
- #: nextend-facebook-connect/includes/compat-wp-login.php:63
1547
  #, php-format
1548
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1549
  msgstr ""
1550
 
1551
- #: nextend-facebook-connect/includes/compat-wp-login.php:129
1552
  msgid "https://wordpress.org/"
1553
  msgstr ""
1554
 
1555
- #: nextend-facebook-connect/includes/compat-wp-login.php:130
1556
  msgid "Powered by WordPress"
1557
  msgstr ""
1558
 
1559
- #: nextend-facebook-connect/includes/compat-wp-login.php:284
1560
  #, php-format
1561
  msgctxt "site"
1562
  msgid "&larr; Back to %s"
1563
  msgstr ""
1564
 
1565
- #: nextend-facebook-connect/includes/provider-admin.php:199
1566
  msgid "Your configuration needs to be verified"
1567
  msgstr ""
1568
 
1569
- #: nextend-facebook-connect/includes/provider-admin.php:200
1570
  msgid ""
1571
  "Before you can start letting your users register with your app it needs to "
1572
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1575,104 +982,79 @@ msgid ""
1575
  "are fine."
1576
  msgstr ""
1577
 
1578
- #: nextend-facebook-connect/includes/provider-admin.php:206
1579
  msgid "Please save your changes to verify settings."
1580
  msgstr ""
1581
 
1582
- #: nextend-facebook-connect/includes/provider-admin.php:214
1583
  msgid "Works Fine"
1584
  msgstr ""
1585
 
1586
- #: nextend-facebook-connect/includes/provider-admin.php:228
1587
  #, php-format
1588
  msgid ""
1589
  "This provider is currently disabled, which means that users can’t register "
1590
  "or login via their %s account."
1591
  msgstr ""
1592
 
1593
- #: nextend-facebook-connect/includes/provider-admin.php:231
1594
  #, php-format
1595
  msgid ""
1596
  "This provider works fine, but you can test it again. If you don’t want to "
1597
  "let users register or login with %s anymore you can disable it."
1598
  msgstr ""
1599
 
1600
- #: nextend-facebook-connect/includes/provider-admin.php:234
1601
  #, php-format
1602
  msgid ""
1603
  "This provider is currently enabled, which means that users can register or "
1604
  "login via their %s account."
1605
  msgstr ""
1606
 
1607
- #: nextend-facebook-connect/includes/provider-admin.php:242
1608
  msgid "Verify Settings Again"
1609
  msgstr ""
1610
 
1611
- #: nextend-facebook-connect/includes/provider-admin.php:243
1612
  msgid "Please save your changes before verifying settings."
1613
  msgstr ""
1614
 
1615
- #: nextend-facebook-connect/includes/provider.php:364
1616
- #: nextend-facebook-connect/includes/provider.php:725
1617
- #: nextend-facebook-connect/includes/provider.php:733
1618
  msgid "Authentication successful"
1619
  msgstr ""
1620
 
1621
- #: nextend-facebook-connect/includes/provider.php:662
1622
- #: nextend-facebook-connect/includes/user.php:170
1623
- #: nextend-facebook-connect/includes/user.php:606
1624
  msgid "Authentication error"
1625
  msgstr ""
1626
 
1627
- #: nextend-facebook-connect/includes/provider.php:677
1628
  msgid "Unlink successful."
1629
  msgstr ""
1630
 
1631
- #: nextend-facebook-connect/includes/provider.php:679
1632
  msgid "Unlink is not allowed!"
1633
  msgstr ""
1634
 
1635
- #: nextend-facebook-connect/includes/provider.php:894
1636
- #: nextend-facebook-connect/includes/provider.php:901
1637
  msgid "The test was successful"
1638
  msgstr ""
1639
 
1640
- #: nextend-facebook-connect/includes/provider.php:947
1641
  msgid "Authentication failed"
1642
  msgstr ""
1643
 
1644
- #: nextend-facebook-connect/includes/provider.php:1100
1645
  msgid "Identifier"
1646
  msgstr ""
1647
 
1648
- #: nextend-facebook-connect/includes/provider.php:1116
1649
  msgid "Profile Picture"
1650
  msgstr ""
1651
 
1652
- #: nextend-facebook-connect/includes/user.php:76
1653
  #, php-format
1654
  msgid ""
1655
  "Your %1$s account is successfully linked with your account. Now you can sign "
1656
  "in with %2$s easily."
1657
  msgstr ""
1658
 
1659
- #: nextend-facebook-connect/includes/user.php:79
1660
  #, php-format
1661
  msgid ""
1662
  "You have already linked a(n) %s account. Please unlink the current and then "
1663
  "you can link another %s account."
1664
  msgstr ""
1665
 
1666
- #: nextend-facebook-connect/includes/user.php:84
1667
  #, php-format
1668
  msgid "This %s account is already linked to another user."
1669
  msgstr ""
1670
 
1671
- #: nextend-facebook-connect/includes/user.php:130
1672
  msgid "User registration is currently not allowed."
1673
  msgstr ""
1674
 
1675
- #: nextend-facebook-connect/includes/user.php:681
1676
  #, php-format
1677
  msgid ""
1678
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
@@ -1680,138 +1062,82 @@ msgid ""
1680
  "linked %1$s account or log in with your password!"
1681
  msgstr ""
1682
 
1683
- #: nextend-facebook-connect/includes/userData.php:152
1684
  msgid "Register For This Site"
1685
  msgstr ""
1686
 
1687
- #: nextend-facebook-connect/includes/userData.php:204
1688
  msgctxt "Register form submit button label"
1689
  msgid "Register"
1690
  msgstr ""
1691
 
1692
- #: nextend-facebook-connect/nextend-facebook-connect.php:37
1693
  #, php-format
1694
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1695
  msgstr ""
1696
 
1697
- #: nextend-facebook-connect/nextend-facebook-connect.php:44
1698
  #, php-format
1699
  msgid ""
1700
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1701
  "version, the plugin is currently NOT ACTIVE."
1702
  msgstr ""
1703
 
1704
- #: nextend-facebook-connect/nextend-social-login.php:56
1705
- #: nextend-facebook-connect/nextend-social-login.php:63
1706
  #, php-format
1707
  msgid "Please update %1$s to version %2$s or newer."
1708
  msgstr ""
1709
 
1710
- #: nextend-facebook-connect/nextend-social-login.php:56
1711
- #: nextend-facebook-connect/nextend-social-login.php:63
1712
  msgid "Update now!"
1713
  msgstr ""
1714
 
1715
- #: nextend-facebook-connect/nextend-social-login.php:846
1716
- #: nextend-facebook-connect/nextend-social-login.php:1225
1717
  msgid "Social Login"
1718
  msgstr ""
1719
 
1720
- #: nextend-facebook-connect/nextend-social-login.php:1206
1721
  msgid "Social Accounts"
1722
  msgstr ""
1723
 
1724
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:2
1725
- #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1726
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:2
1727
  msgid "Button skin"
1728
  msgstr ""
1729
 
1730
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:8
1731
- #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1732
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:14
1733
  msgid "Dark"
1734
  msgstr ""
1735
 
1736
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:14
1737
- #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1738
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:8
1739
  msgid "Light"
1740
  msgstr ""
1741
 
1742
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:20
1743
  msgid "Black"
1744
  msgstr ""
1745
 
1746
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:26
1747
  msgid "White"
1748
  msgstr ""
1749
 
1750
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1751
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1752
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1753
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1754
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8
1755
  #, php-format
1756
  msgid "Navigate to <b>%s</b>"
1757
  msgstr ""
1758
 
1759
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1760
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1761
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1762
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1763
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1764
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:9
1765
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1766
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18
1767
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9
1768
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9
1769
  #, php-format
1770
  msgid "Log in with your %s credentials if you are not logged in"
1771
  msgstr ""
1772
 
1773
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
1774
  #, php-format
1775
  msgid "Click on the App with App ID: <b>%s</b>"
1776
  msgstr ""
1777
 
1778
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
1779
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1780
  msgstr ""
1781
 
1782
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:14
1783
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1784
  msgid ""
1785
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1786
  msgstr ""
1787
 
1788
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:22
1789
  msgid "Click on \"<b>Save Changes</b>\""
1790
  msgstr ""
1791
 
1792
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11
1793
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:13
1794
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11
1795
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22
1796
  #, php-format
1797
  msgid ""
1798
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1799
  "order to allow login with %1$s."
1800
  msgstr ""
1801
 
1802
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
1803
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:15
1804
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13
1805
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24
1806
  msgid "How to get SSL for my WordPress site?"
1807
  msgstr ""
1808
 
1809
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1810
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1811
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1812
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:10
1813
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1814
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10
1815
  #, php-format
1816
  msgid ""
1817
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -1821,168 +1147,100 @@ msgid ""
1821
  "%1$s App."
1822
  msgstr ""
1823
 
1824
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1825
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
1826
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
1827
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1828
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:34
1829
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:14
1830
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:14
1831
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:14
1832
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
1833
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:14
1834
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:14
1835
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:14
1836
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:14
1837
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:15
1838
  #, php-format
1839
  msgctxt "App creation"
1840
  msgid "Create %s"
1841
  msgstr ""
1842
 
1843
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1844
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1845
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1846
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1847
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19
1848
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:39
1849
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
1850
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
1851
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:8
1852
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:17
1853
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1854
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
1855
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:8
1856
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:17
1857
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
1858
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
1859
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1860
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
1861
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
1862
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
1863
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18
1864
  #, php-format
1865
  msgid "Navigate to %s"
1866
  msgstr ""
1867
 
1868
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1869
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1870
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1871
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
1872
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:40
1873
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
1874
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
1875
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:18
1876
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:9
1877
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:18
1878
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
1879
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
1880
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
1881
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
1882
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19
1883
  #, php-format
1884
  msgid "Log in with your %s credentials if you are not logged in."
1885
  msgstr ""
1886
 
1887
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1888
  msgid ""
1889
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1890
  "\"<b>Consumer</b>\" App type!"
1891
  msgstr ""
1892
 
1893
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1894
  msgid ""
1895
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1896
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1897
  "finally verify your account."
1898
  msgstr ""
1899
 
1900
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1901
  #, php-format
1902
  msgid ""
1903
  "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1904
  "specified \"App Display Name\" will appear on your %s!"
1905
  msgstr ""
1906
 
1907
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1908
  msgid ""
1909
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1910
  "if you have any."
1911
  msgstr ""
1912
 
1913
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1914
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
1915
  msgstr ""
1916
 
1917
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1918
  #, php-format
1919
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
1920
  msgstr ""
1921
 
1922
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1923
  #, php-format
1924
  msgid ""
1925
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1926
  "field: <b>%s</b>"
1927
  msgstr ""
1928
 
1929
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1930
  msgid "Press “<b>Save</b>”."
1931
  msgstr ""
1932
 
1933
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1934
  #, php-format
1935
  msgid ""
1936
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1937
  "%2$s</b> - <b>%3$s</b>”"
1938
  msgstr ""
1939
 
1940
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:47
1941
  msgid "Click on “<b>Save Changes</b>”."
1942
  msgstr ""
1943
 
1944
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:48
1945
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:65
1946
  #, php-format
1947
  msgid ""
1948
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1949
  "%2$s</b>”."
1950
  msgstr ""
1951
 
1952
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:49
1953
  #, php-format
1954
  msgid ""
1955
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1956
  "b>"
1957
  msgstr ""
1958
 
1959
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:50
1960
  msgid ""
1961
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1962
  "available and easily accessible privacy policy that explains what data you "
1963
  "are collecting and how you will use that data."
1964
  msgstr ""
1965
 
1966
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
1967
  msgid ""
1968
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1969
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1970
  "instructions on how users can delete their accounts on your site."
1971
  msgstr ""
1972
 
1973
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
1974
  msgid ""
1975
  "To comply with GDPR, you should already offer possibility to delete accounts "
1976
  "on your site, either by the user or by the admin:"
1977
  msgstr ""
1978
 
1979
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
1980
  msgid ""
1981
  "<u>If each user has an option to delete the account</u>: the URL should "
1982
  "point to a guide showing the way users can delete their accounts."
1983
  msgstr ""
1984
 
1985
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:57
1986
  msgid ""
1987
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
1988
  "section - usually in the Privacy Policy - with the contact details, where "
@@ -1990,21 +1248,18 @@ msgid ""
1990
  "point to this section of the document."
1991
  msgstr ""
1992
 
1993
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:62
1994
  msgid ""
1995
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1996
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1997
  "Changes</b>\"."
1998
  msgstr ""
1999
 
2000
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2001
  msgid ""
2002
  "Your application is currently private, which means that only you can log in "
2003
  "with it. In the top bar switch the \"<b>App Mode</b>\" from "
2004
  "\"<b>Development</b>\" to \"<b>Live</b>\"."
2005
  msgstr ""
2006
 
2007
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:64
2008
  #, php-format
2009
  msgid ""
2010
  "By default, your application only has Standard access for the permissions, "
@@ -2014,7 +1269,6 @@ msgid ""
2014
  "should click on the <strong>%6$s</strong> buttons next to them. "
2015
  msgstr ""
2016
 
2017
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:66
2018
  #, php-format
2019
  msgid ""
2020
  "At the top of the page you can find your \"<b>%1$s</b>\" and you can see "
@@ -2022,7 +1276,6 @@ msgid ""
2022
  "needed in plugin’s settings."
2023
  msgstr ""
2024
 
2025
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:69
2026
  #, php-format
2027
  msgid ""
2028
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
@@ -2033,11 +1286,9 @@ msgid ""
2033
  "the Facebook App, then please check our %2$sdocumentation%3$s."
2034
  msgstr ""
2035
 
2036
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:73
2037
  msgid "Maintaining the Facebook App:"
2038
  msgstr ""
2039
 
2040
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:74
2041
  #, php-format
2042
  msgid ""
2043
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
@@ -2048,172 +1299,76 @@ msgid ""
2048
  "that we need."
2049
  msgstr ""
2050
 
2051
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:78
2052
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:53
2053
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:46
2054
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:50
2055
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:134
2056
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:41
2057
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:40
2058
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:46
2059
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:43
2060
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:45
2061
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:46
2062
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:41
2063
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:41
2064
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:40
2065
  #, php-format
2066
  msgid "I am done setting up my %s"
2067
  msgstr ""
2068
 
2069
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:35
2070
- #: nextend-social-login-pro/providers/vk/admin/settings.php:27
2071
  msgid "App ID"
2072
  msgstr ""
2073
 
2074
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:36
2075
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
2076
- #: nextend-facebook-connect/providers/google/admin/settings.php:28
2077
- #: nextend-facebook-connect/providers/google/admin/settings.php:41
2078
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
2079
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
2080
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
2081
- #: nextend-social-login-pro/providers/apple/admin/settings.php:79
2082
- #: nextend-social-login-pro/providers/apple/admin/settings.php:90
2083
- #: nextend-social-login-pro/providers/apple/admin/settings.php:99
2084
- #: nextend-social-login-pro/providers/apple/admin/settings.php:107
2085
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
2086
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
2087
- #: nextend-social-login-pro/providers/github/admin/settings.php:28
2088
- #: nextend-social-login-pro/providers/github/admin/settings.php:40
2089
- #: nextend-social-login-pro/providers/line/admin/settings.php:27
2090
- #: nextend-social-login-pro/providers/line/admin/settings.php:39
2091
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
2092
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
2093
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:27
2094
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:39
2095
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
2096
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
2097
- #: nextend-social-login-pro/providers/vk/admin/settings.php:28
2098
- #: nextend-social-login-pro/providers/vk/admin/settings.php:40
2099
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
2100
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
2101
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27
2102
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39
2103
  msgid "Required"
2104
  msgstr ""
2105
 
2106
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:41
2107
- #: nextend-facebook-connect/providers/google/admin/settings.php:35
2108
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
2109
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
2110
- #: nextend-social-login-pro/providers/apple/admin/settings.php:34
2111
- #: nextend-social-login-pro/providers/apple/admin/settings.php:85
2112
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
2113
- #: nextend-social-login-pro/providers/github/admin/settings.php:34
2114
- #: nextend-social-login-pro/providers/line/admin/settings.php:33
2115
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
2116
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:33
2117
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
2118
- #: nextend-social-login-pro/providers/vk/admin/settings.php:34
2119
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
2120
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33
2121
  #, php-format
2122
  msgid ""
2123
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
2124
  "\">Getting Started</a>"
2125
  msgstr ""
2126
 
2127
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:47
2128
  msgid "App Secret"
2129
  msgstr ""
2130
 
2131
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2132
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:49
2133
  #, php-format
2134
  msgid ""
2135
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2136
  "longer be able to login with %1$s."
2137
  msgstr ""
2138
 
2139
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2140
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:51
2141
  msgid "Find out why?"
2142
  msgstr ""
2143
 
2144
- #: nextend-facebook-connect/providers/facebook/facebook.php:90
2145
  msgid "Continue with <b>Facebook</b>"
2146
  msgstr ""
2147
 
2148
- #: nextend-facebook-connect/providers/facebook/facebook.php:91
2149
  msgid "Sign up with <b>Facebook</b>"
2150
  msgstr ""
2151
 
2152
- #: nextend-facebook-connect/providers/facebook/facebook.php:92
2153
  msgid "Link account with <b>Facebook</b>"
2154
  msgstr ""
2155
 
2156
- #: nextend-facebook-connect/providers/facebook/facebook.php:93
2157
  msgid "Unlink account from <b>Facebook</b>"
2158
  msgstr ""
2159
 
2160
- #: nextend-facebook-connect/providers/facebook/facebook.php:193
2161
- #: nextend-facebook-connect/providers/google/google.php:168
2162
- #: nextend-facebook-connect/providers/twitter/twitter.php:97
2163
- #: nextend-social-login-pro/providers/amazon/amazon.php:67
2164
- #: nextend-social-login-pro/providers/apple/apple.php:115
2165
- #: nextend-social-login-pro/providers/apple/apple.php:122
2166
- #: nextend-social-login-pro/providers/disqus/disqus.php:114
2167
- #: nextend-social-login-pro/providers/github/github.php:152
2168
- #: nextend-social-login-pro/providers/line/line.php:63
2169
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2170
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:65
2171
- #: nextend-social-login-pro/providers/paypal/paypal.php:92
2172
- #: nextend-social-login-pro/providers/vk/vk.php:63
2173
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2174
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2175
  #, php-format
2176
  msgid ""
2177
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2178
  msgstr ""
2179
 
2180
- #: nextend-facebook-connect/providers/facebook/facebook.php:314
2181
- #: nextend-social-login-pro/providers/paypal/paypal.php:172
2182
  #, php-format
2183
  msgid "Required scope: %1$s"
2184
  msgstr ""
2185
 
2186
- #: nextend-facebook-connect/providers/google/admin/buttons.php:20
2187
  msgid "Uniform - Legacy"
2188
  msgstr ""
2189
 
2190
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
2191
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
2192
  msgstr ""
2193
 
2194
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
2195
  #, php-format
2196
  msgid ""
2197
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
2198
  "%s</b>"
2199
  msgstr ""
2200
 
2201
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:14
2202
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2203
  #, php-format
2204
  msgid ""
2205
  "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2206
  "following URL:"
2207
  msgstr ""
2208
 
2209
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:22
2210
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:23
2211
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:23
2212
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:23
2213
  msgid "Click on \"<b>Save</b>\""
2214
  msgstr ""
2215
 
2216
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2217
  #, php-format
2218
  msgid ""
2219
  "If you don't have a project yet, you'll need to create one. You can do this "
@@ -2222,24 +1377,20 @@ msgid ""
2222
  "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
2223
  msgstr ""
2224
 
2225
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2226
  #, php-format
2227
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2228
  msgstr ""
2229
 
2230
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2231
  msgid ""
2232
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2233
  "have already had a Project, then make sure you select the created project in "
2234
  "the top bar! )"
2235
  msgstr ""
2236
 
2237
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2238
  #, php-format
2239
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
2240
  msgstr ""
2241
 
2242
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2243
  #, php-format
2244
  msgid ""
2245
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
@@ -2247,7 +1398,6 @@ msgid ""
2247
  "account, then pick the \"%4$s\" option!"
2248
  msgstr ""
2249
 
2250
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2251
  #, php-format
2252
  msgid ""
2253
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
@@ -2255,69 +1405,58 @@ msgid ""
2255
  "%1$s!"
2256
  msgstr ""
2257
 
2258
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2259
  #, php-format
2260
  msgid ""
2261
  "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2262
  "the name of the app asking for consent."
2263
  msgstr ""
2264
 
2265
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2266
  #, php-format
2267
  msgid ""
2268
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2269
  "contact you with questions about their consent."
2270
  msgstr ""
2271
 
2272
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2273
  #, php-format
2274
  msgid ""
2275
  "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2276
  "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2277
  msgstr ""
2278
 
2279
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2280
  #, php-format
2281
  msgid ""
2282
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2283
  "notify you about any changes to your project."
2284
  msgstr ""
2285
 
2286
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2287
  #, php-format
2288
  msgid ""
2289
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2290
  "too!"
2291
  msgstr ""
2292
 
2293
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2294
  #, php-format
2295
  msgid ""
2296
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2297
  "\"<b>%2$s</b>\" button in the top bar."
2298
  msgstr ""
2299
 
2300
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2301
  #, php-format
2302
  msgid "Choose the \"<b>%1$s</b>\" option."
2303
  msgstr ""
2304
 
2305
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2306
  #, php-format
2307
  msgid "Select the \"<b>%1$s</b>\" under Application type."
2308
  msgstr ""
2309
 
2310
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2311
  #, php-format
2312
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2313
  msgstr ""
2314
 
2315
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:48
2316
  #, php-format
2317
  msgid "Click on the \"<b>%1$s</b>\" button"
2318
  msgstr ""
2319
 
2320
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:49
2321
  #, php-format
2322
  msgid ""
2323
  "A modal should pop up with your credentials. If that doesn't happen, go to "
@@ -2326,109 +1465,76 @@ msgid ""
2326
  "from there."
2327
  msgstr ""
2328
 
2329
- #: nextend-facebook-connect/providers/google/admin/settings.php:27
2330
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2331
- #: nextend-social-login-pro/providers/apple/admin/settings.php:28
2332
- #: nextend-social-login-pro/providers/github/admin/settings.php:27
2333
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2334
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2335
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2336
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26
2337
  msgid "Client ID"
2338
  msgstr ""
2339
 
2340
- #: nextend-facebook-connect/providers/google/admin/settings.php:40
2341
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2342
- #: nextend-social-login-pro/providers/apple/admin/settings.php:39
2343
- #: nextend-social-login-pro/providers/github/admin/settings.php:39
2344
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2345
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2346
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38
2347
  msgid "Client Secret"
2348
  msgstr ""
2349
 
2350
- #: nextend-facebook-connect/providers/google/admin/settings.php:47
2351
  msgid "Select account on each login"
2352
  msgstr ""
2353
 
2354
- #: nextend-facebook-connect/providers/google/admin/settings.php:56
2355
  msgid ""
2356
  "Disable, when you don't want to see the account select prompt on each login."
2357
  msgstr ""
2358
 
2359
- #: nextend-facebook-connect/providers/google/google.php:99
2360
  msgid "Continue with <b>Google</b>"
2361
  msgstr ""
2362
 
2363
- #: nextend-facebook-connect/providers/google/google.php:100
2364
  msgid "Sign up with <b>Google</b>"
2365
  msgstr ""
2366
 
2367
- #: nextend-facebook-connect/providers/google/google.php:101
2368
  msgid "Link account with <b>Google</b>"
2369
  msgstr ""
2370
 
2371
- #: nextend-facebook-connect/providers/google/google.php:102
2372
  msgid "Unlink account from <b>Google</b>"
2373
  msgstr ""
2374
 
2375
- #: nextend-facebook-connect/providers/google/google.php:295
2376
  #, php-format
2377
  msgid "Required API: %1$s"
2378
  msgstr ""
2379
 
2380
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2381
  msgid ""
2382
  "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2383
  "like a gear.)"
2384
  msgstr ""
2385
 
2386
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2387
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2388
  msgstr ""
2389
 
2390
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2391
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2392
  #, php-format
2393
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
2394
  msgstr ""
2395
 
2396
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:22
2397
  #, php-format
2398
  msgid ""
2399
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2400
  msgstr ""
2401
 
2402
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2403
  msgid ""
2404
  "If you don't have a developer account yet, please apply one by filling all "
2405
  "the required details! This is required for the next steps!"
2406
  msgstr ""
2407
 
2408
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2409
  #, php-format
2410
  msgid ""
2411
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
2412
  "aren't already there!"
2413
  msgstr ""
2414
 
2415
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2416
  #, php-format
2417
  msgid "Click on \"<b>%s</b>\"!"
2418
  msgstr ""
2419
 
2420
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2421
  msgid ""
2422
  "Name your project, and go through the basic setup. You’ll need to select "
2423
  "your use case, give a description and enter a name for the App as well."
2424
  msgstr ""
2425
 
2426
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2427
  #, php-format
2428
  msgid "Click \"<b>%s</b>\"!"
2429
  msgstr ""
2430
 
2431
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2432
  #, php-format
2433
  msgid ""
2434
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
@@ -2436,29 +1542,24 @@ msgid ""
2436
  "press \"<b>Save Changes</b>\"."
2437
  msgstr ""
2438
 
2439
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2440
  #, php-format
2441
  msgid ""
2442
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2443
  "\" section click on the name of your App."
2444
  msgstr ""
2445
 
2446
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2447
  #, php-format
2448
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2449
  msgstr ""
2450
 
2451
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2452
  #, php-format
2453
  msgid "Switch on the \"<b>%s</b>\" option."
2454
  msgstr ""
2455
 
2456
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:39
2457
  #, php-format
2458
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2459
  msgstr ""
2460
 
2461
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:40
2462
  #, php-format
2463
  msgid ""
2464
  "If you want to get the email address as well, then don’t forget to enable "
@@ -2466,218 +1567,162 @@ msgid ""
2466
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
2467
  msgstr ""
2468
 
2469
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:41
2470
  #, php-format
2471
  msgid "Click on \"<b>%s</b>\"."
2472
  msgstr ""
2473
 
2474
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:42
2475
  #, php-format
2476
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2477
  msgstr ""
2478
 
2479
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2480
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2481
  msgid "API Key"
2482
  msgstr ""
2483
 
2484
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2485
  msgid "API secret key"
2486
  msgstr ""
2487
 
2488
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2489
  msgid "Profile image size"
2490
  msgstr ""
2491
 
2492
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2493
  msgid "Original"
2494
  msgstr ""
2495
 
2496
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
2497
  msgid "Continue with <b>Twitter</b>"
2498
  msgstr ""
2499
 
2500
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2501
  msgid "Sign up with <b>Twitter</b>"
2502
  msgstr ""
2503
 
2504
- #: nextend-facebook-connect/providers/twitter/twitter.php:72
2505
  msgid "Link account with <b>Twitter</b>"
2506
  msgstr ""
2507
 
2508
- #: nextend-facebook-connect/providers/twitter/twitter.php:73
2509
  msgid "Unlink account from <b>Twitter</b>"
2510
  msgstr ""
2511
 
2512
- #: nextend-facebook-connect/widget.php:10
2513
  #, php-format
2514
  msgid "%s Buttons"
2515
  msgstr ""
2516
 
2517
- #: nextend-facebook-connect/widget.php:30
2518
  msgid "Title:"
2519
  msgstr ""
2520
 
2521
- #: nextend-facebook-connect/widget.php:38
2522
  msgid "Button style:"
2523
  msgstr ""
2524
 
2525
- #: nextend-facebook-connect/widget.php:53
2526
  msgid "Button align:"
2527
  msgstr ""
2528
 
2529
- #: nextend-facebook-connect/widget.php:85
2530
  msgid "Show link buttons"
2531
  msgstr ""
2532
 
2533
- #: nextend-facebook-connect/widget.php:94
2534
  msgid "Show unlink buttons"
2535
  msgstr ""
2536
 
2537
- #: nextend-social-login-pro/class-provider-extension.php:117
2538
  msgid "Social login is not allowed with this role!"
2539
  msgstr ""
2540
 
2541
- #: nextend-social-login-pro/class-provider-extension.php:213
2542
  msgid "Please enter a username."
2543
  msgstr ""
2544
 
2545
- #: nextend-social-login-pro/class-provider-extension.php:216
2546
  msgid ""
2547
  "This username is invalid because it uses illegal characters. Please enter a "
2548
  "valid username."
2549
  msgstr ""
2550
 
2551
- #: nextend-social-login-pro/class-provider-extension.php:222
2552
  msgid ""
2553
  "<strong>Error</strong>: This username is already registered. Please choose "
2554
  "another one."
2555
  msgstr ""
2556
 
2557
- #: nextend-social-login-pro/class-provider-extension.php:229
2558
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
2559
  msgstr ""
2560
 
2561
- #: nextend-social-login-pro/class-provider-extension.php:247
2562
  msgid "Username"
2563
  msgstr ""
2564
 
2565
- #: nextend-social-login-pro/class-provider-extension.php:300
2566
  msgid "<strong>Error</strong>: Please enter an email address."
2567
  msgstr ""
2568
 
2569
- #: nextend-social-login-pro/class-provider-extension.php:303
2570
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
2571
  msgstr ""
2572
 
2573
- #: nextend-social-login-pro/class-provider-extension.php:307
2574
  msgid ""
2575
  "<strong>Error</strong>: This email is already registered. Please choose "
2576
  "another one."
2577
  msgstr ""
2578
 
2579
- #: nextend-social-login-pro/class-provider-extension.php:327
2580
  msgid "Registration confirmation will be emailed to you."
2581
  msgstr ""
2582
 
2583
- #: nextend-social-login-pro/class-provider-extension.php:386
2584
  msgid "<strong>Error</strong>: Please enter a password."
2585
  msgstr ""
2586
 
2587
- #: nextend-social-login-pro/class-provider-extension.php:392
2588
  msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
2589
  msgstr ""
2590
 
2591
- #: nextend-social-login-pro/class-provider-extension.php:398
2592
  msgid ""
2593
  "<strong>Error</strong>: Passwords don&#8217;t match. Please enter the same "
2594
  "password in both password fields."
2595
  msgstr ""
2596
 
2597
- #: nextend-social-login-pro/class-provider-extension.php:415
2598
  msgid "Password"
2599
  msgstr ""
2600
 
2601
- #: nextend-social-login-pro/class-provider-extension.php:425
2602
  msgid "Strength indicator"
2603
  msgstr ""
2604
 
2605
- #: nextend-social-login-pro/class-provider-extension.php:430
2606
  msgid "Confirm use of weak password"
2607
  msgstr ""
2608
 
2609
- #: nextend-social-login-pro/class-provider-extension.php:436
2610
  msgid "Confirm password"
2611
  msgstr ""
2612
 
2613
- #: nextend-social-login-pro/class-provider-extension.php:448
2614
  #, php-format
2615
  msgid ""
2616
  "This email is already registered, please login in to your account to link "
2617
  "with %1$s."
2618
  msgstr ""
2619
 
2620
- #: nextend-social-login-pro/nextend-social-login-pro.php:104
2621
  #, php-format
2622
  msgid "Please install and activate %1$s to use the %2$s"
2623
  msgstr ""
2624
 
2625
- #: nextend-social-login-pro/nextend-social-login-pro.php:118
2626
  msgid "Network Activate"
2627
  msgstr ""
2628
 
2629
- #: nextend-social-login-pro/nextend-social-login-pro.php:130
2630
  msgid "Install now!"
2631
  msgstr ""
2632
 
2633
- #: nextend-social-login-pro/nextend-social-login-pro.php:826
2634
  msgid "Social Providers"
2635
  msgstr ""
2636
 
2637
- #: nextend-social-login-pro/provider-extensions/facebook.php:74
2638
  #, php-format
2639
  msgid ""
2640
  "The Facebook Sync data needs an approved %1$s and your App must use the "
2641
  "latest %2$s version!"
2642
  msgstr ""
2643
 
2644
- #: nextend-social-login-pro/provider-extensions/google.php:187
2645
  #, php-format
2646
  msgid ""
2647
  "Most of these information can only be retrieved, when the field is marked as "
2648
  "Public on the user's %s page!"
2649
  msgstr ""
2650
 
2651
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2652
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2653
  #, php-format
2654
  msgid "Visit %s"
2655
  msgstr ""
2656
 
2657
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2658
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2659
  msgid ""
2660
  "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
2661
  "select \"<b>Web Settings</b>\" option."
2662
  msgstr ""
2663
 
2664
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2665
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2666
  msgid "Click \"<b>Edit</b>\"."
2667
  msgstr ""
2668
 
2669
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:15
2670
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
2671
  msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2672
  msgstr ""
2673
 
2674
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
2675
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2676
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:10
2677
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:10
2678
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2679
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2680
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10
2681
  #, php-format
2682
  msgid ""
2683
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -2687,92 +1732,71 @@ msgid ""
2687
  "%1$s App."
2688
  msgstr ""
2689
 
2690
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2691
  msgid ""
2692
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2693
  "do this by clicking on the orange \"<b>Create a New Security Profile</b>\" "
2694
  "button on the left side."
2695
  msgstr ""
2696
 
2697
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2698
  msgid ""
2699
  "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
2700
  "\" and \"<b>Consent Privacy Notice URL</b>\"."
2701
  msgstr ""
2702
 
2703
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2704
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
2705
  msgstr ""
2706
 
2707
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2708
  #, php-format
2709
  msgid ""
2710
  "Fill \"<b>Allowed Origins</b>\" with the url of your homepage, probably: <b>"
2711
  "%s</b>"
2712
  msgstr ""
2713
 
2714
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:45
2715
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:41
2716
  msgid "When all fields are filled, click \"<b>Save</b>\"."
2717
  msgstr ""
2718
 
2719
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:46
2720
  msgid ""
2721
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" at the "
2722
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2723
  msgstr ""
2724
 
2725
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
2726
  msgid "Continue with <b>Amazon</b>"
2727
  msgstr ""
2728
 
2729
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2730
  msgid "Sign up with <b>Amazon</b>"
2731
  msgstr ""
2732
 
2733
- #: nextend-social-login-pro/providers/amazon/amazon.php:42
2734
  msgid "Link account with <b>Amazon</b>"
2735
  msgstr ""
2736
 
2737
- #: nextend-social-login-pro/providers/amazon/amazon.php:43
2738
  msgid "Unlink account from <b>Amazon</b>"
2739
  msgstr ""
2740
 
2741
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
2742
  msgid "Click on the name of your service."
2743
  msgstr ""
2744
 
2745
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22
2746
  msgid ""
2747
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
2748
  msgstr ""
2749
 
2750
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23
2751
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56
2752
  #, php-format
2753
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
2754
  msgstr ""
2755
 
2756
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24
2757
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:82
2758
  #, php-format
2759
  msgid ""
2760
  "Fill the \"<b>Domains and Subdomains</b>\" field with your domain name "
2761
  "probably: <b>%s</b>"
2762
  msgstr ""
2763
 
2764
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:27
2765
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:85
2766
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2767
  msgstr ""
2768
 
2769
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:35
2770
  msgid ""
2771
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2772
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2773
  msgstr ""
2774
 
2775
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30
2776
  #, php-format
2777
  msgid ""
2778
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -2782,7 +1806,6 @@ msgid ""
2782
  "\" according to your %1$s App."
2783
  msgstr ""
2784
 
2785
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37
2786
  msgid ""
2787
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
2788
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
@@ -2790,35 +1813,29 @@ msgid ""
2790
  "App!"
2791
  msgstr ""
2792
 
2793
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2794
  msgid ""
2795
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
2796
  "b>!"
2797
  msgstr ""
2798
 
2799
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43
2800
  msgid "1.) Create the associated App:"
2801
  msgstr ""
2802
 
2803
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45
2804
  #, php-format
2805
  msgid ""
2806
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
2807
  "option and click the \"Continue\" button."
2808
  msgstr ""
2809
 
2810
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46
2811
  #, php-format
2812
  msgid ""
2813
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
2814
  "\"<b>Continue</b>\" button."
2815
  msgstr ""
2816
 
2817
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47
2818
  msgid "Enter a \"<b>Description</b>\""
2819
  msgstr ""
2820
 
2821
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:48
2822
  #, php-format
2823
  msgid ""
2824
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
@@ -2826,178 +1843,143 @@ msgid ""
2826
  "app at its end: <b>%s.nslapp</b>"
2827
  msgstr ""
2828
 
2829
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:49
2830
  msgid ""
2831
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
2832
  "b>\" option."
2833
  msgstr ""
2834
 
2835
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50
2836
  msgid ""
2837
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
2838
  "\"<b>Register</b>\" button."
2839
  msgstr ""
2840
 
2841
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53
2842
  msgid "2.) Create the Key:"
2843
  msgstr ""
2844
 
2845
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55
2846
  #, php-format
2847
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
2848
  msgstr ""
2849
 
2850
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57
2851
  msgid "Enter a name in the <b>Key Name</b> field."
2852
  msgstr ""
2853
 
2854
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58
2855
  msgid ""
2856
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
2857
  "b>\"."
2858
  msgstr ""
2859
 
2860
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:59
2861
  msgid ""
2862
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
2863
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
2864
  "\"."
2865
  msgstr ""
2866
 
2867
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:60
2868
  msgid ""
2869
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
2870
  "\" button."
2871
  msgstr ""
2872
 
2873
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61
2874
  msgid "<b>Don't download the key yet!</b>"
2875
  msgstr ""
2876
 
2877
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64
2878
  msgid "3.) Create the Service:"
2879
  msgstr ""
2880
 
2881
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66
2882
  #, php-format
2883
  msgid ""
2884
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
2885
  "tab."
2886
  msgstr ""
2887
 
2888
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:67
2889
  #, php-format
2890
  msgid ""
2891
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
2892
  "option and click the \"<b>Continue</b>\" button."
2893
  msgstr ""
2894
 
2895
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:68
2896
  msgid "Enter a \"<b>Description</b>\"."
2897
  msgstr ""
2898
 
2899
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69
2900
  #, php-format
2901
  msgid ""
2902
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
2903
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
2904
  msgstr ""
2905
 
2906
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72
2907
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
2908
  msgstr ""
2909
 
2910
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:75
2911
  msgid ""
2912
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
2913
  msgstr ""
2914
 
2915
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76
2916
  #, php-format
2917
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
2918
  msgstr ""
2919
 
2920
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79
2921
  msgid ""
2922
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
2923
  "b>\" button next to it."
2924
  msgstr ""
2925
 
2926
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:81
2927
  msgid ""
2928
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
2929
  "App what you just created."
2930
  msgstr ""
2931
 
2932
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:95
2933
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
2934
  msgstr ""
2935
 
2936
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:96
2937
  msgid ""
2938
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
2939
  "button."
2940
  msgstr ""
2941
 
2942
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99
2943
  msgid "4.) Configure Nextend Social Login with your credentials:"
2944
  msgstr ""
2945
 
2946
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:101
2947
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
2948
  msgstr ""
2949
 
2950
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:102
2951
  msgid "<strong><u>Private Key ID:</u></strong>"
2952
  msgstr ""
2953
 
2954
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:104
2955
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2956
  #, php-format
2957
  msgid "Navigate to: <b>%s</b>"
2958
  msgstr ""
2959
 
2960
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105
2961
  msgid "Click on the <b>name of your Key</b>."
2962
  msgstr ""
2963
 
2964
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:106
2965
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
2966
  msgstr ""
2967
 
2968
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:109
2969
  msgid "<strong><u>Private Key:</u></strong>"
2970
  msgstr ""
2971
 
2972
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111
2973
  msgid ""
2974
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
2975
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
2976
  "this file safe</b>!</u> "
2977
  msgstr ""
2978
 
2979
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:112
2980
  msgid ""
2981
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
2982
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
2983
  "\" field of Nextend Social Login."
2984
  msgstr ""
2985
 
2986
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115
2987
  msgid "<strong><u>Team Identifier:</u></strong>"
2988
  msgstr ""
2989
 
2990
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:117
2991
  msgid ""
2992
  "A 10 character long identifier, what you can find on the <b>top-right "
2993
  "corner, just under your name</b>."
2994
  msgstr ""
2995
 
2996
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:120
2997
  msgid "<strong><u>Service Identifier:</u></strong>"
2998
  msgstr ""
2999
 
3000
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:123
3001
  #, php-format
3002
  msgid ""
3003
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
@@ -3005,665 +1987,514 @@ msgid ""
3005
  "e.g.: <b>%s.nslclient</b>"
3006
  msgstr ""
3007
 
3008
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:126
3009
  msgid ""
3010
  "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
3011
  "button."
3012
  msgstr ""
3013
 
3014
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:127
3015
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
3016
  msgstr ""
3017
 
3018
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:128
3019
  msgid ""
3020
  "When you need to change your credentials for some reason, then you must "
3021
  "delete the token, copy the new credentials and generate a new token!"
3022
  msgstr ""
3023
 
3024
- #: nextend-social-login-pro/providers/apple/admin/settings.php:48
3025
  msgid "Delete credentials"
3026
  msgstr ""
3027
 
3028
- #: nextend-social-login-pro/providers/apple/admin/settings.php:78
3029
  msgid "Private Key ID"
3030
  msgstr ""
3031
 
3032
- #: nextend-social-login-pro/providers/apple/admin/settings.php:89
3033
  msgid "Private Key"
3034
  msgstr ""
3035
 
3036
- #: nextend-social-login-pro/providers/apple/admin/settings.php:98
3037
  msgid "Team Identifier"
3038
  msgstr ""
3039
 
3040
- #: nextend-social-login-pro/providers/apple/admin/settings.php:106
3041
  msgid "Service Identifier"
3042
  msgstr ""
3043
 
3044
- #: nextend-social-login-pro/providers/apple/admin/settings.php:116
3045
  msgid "Generate Token"
3046
  msgstr ""
3047
 
3048
- #: nextend-social-login-pro/providers/apple/apple.php:67
3049
  msgid "Continue with <b>Apple</b>"
3050
  msgstr ""
3051
 
3052
- #: nextend-social-login-pro/providers/apple/apple.php:68
3053
  msgid "Sign up with <b>Apple</b>"
3054
  msgstr ""
3055
 
3056
- #: nextend-social-login-pro/providers/apple/apple.php:69
3057
  msgid "Link account with <b>Apple</b>"
3058
  msgstr ""
3059
 
3060
- #: nextend-social-login-pro/providers/apple/apple.php:70
3061
  msgid "Unlink account from <b>Apple</b>"
3062
  msgstr ""
3063
 
3064
- #: nextend-social-login-pro/providers/apple/apple.php:164
3065
  #, php-format
3066
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3067
  msgstr ""
3068
 
3069
- #: nextend-social-login-pro/providers/apple/apple.php:168
3070
- #: nextend-social-login-pro/providers/apple/apple.php:266
3071
- #: nextend-social-login-pro/providers/apple/apple.php:281
3072
- #: nextend-social-login-pro/providers/apple/apple.php:325
3073
  #, php-format
3074
  msgid "Token generation failed: %1$s"
3075
  msgstr ""
3076
 
3077
- #: nextend-social-login-pro/providers/apple/apple.php:168
3078
  msgid "Please check your credentials!"
3079
  msgstr ""
3080
 
3081
- #: nextend-social-login-pro/providers/apple/apple.php:266
3082
  msgid "Private key format is not valid!"
3083
  msgstr ""
3084
 
3085
- #: nextend-social-login-pro/providers/apple/apple.php:292
3086
  #, php-format
3087
  msgid ""
3088
  "%s detected that your Apple credentials have expired. Please delete the "
3089
  "current credentials and generate new one!"
3090
  msgstr ""
3091
 
3092
- #: nextend-social-login-pro/providers/apple/apple.php:294
3093
  msgid "Apple Credentials"
3094
  msgstr ""
3095
 
3096
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
3097
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
3098
  #, php-format
3099
  msgid "Click on the name of your %s App."
3100
  msgstr ""
3101
 
3102
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:11
3103
  msgid ""
3104
  "Select the \"<b>Settings</b>\" tab and scroll down to the Authentication "
3105
  "section!"
3106
  msgstr ""
3107
 
3108
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
3109
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:27
3110
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:33
3111
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3112
  msgstr ""
3113
 
3114
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:22
3115
  msgid "Click on the \"<b>Save Changes</b>\" button."
3116
  msgstr ""
3117
 
3118
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
3119
  msgid ""
3120
  "Click on the \"<b>Registering new application</b>\" button under the "
3121
  "Applications tab."
3122
  msgstr ""
3123
 
3124
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
3125
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
3126
  msgstr ""
3127
 
3128
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
3129
  #, php-format
3130
  msgid ""
3131
  "Fill \"<b>Website</b>\" with the url of your homepage, probably: <b>%s</b>"
3132
  msgstr ""
3133
 
3134
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
3135
  msgid ""
3136
  "Complete the Human test and click the \"<b>Register my application</b>\" "
3137
  "button."
3138
  msgstr ""
3139
 
3140
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
3141
  #, php-format
3142
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
3143
  msgstr ""
3144
 
3145
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
3146
  msgid ""
3147
  "Select \"<b>Read only</b>\" as Default Access under the Authentication "
3148
  "section."
3149
  msgstr ""
3150
 
3151
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:35
3152
  msgid "Click on the \"<b>Save Changes</b>\" button!"
3153
  msgstr ""
3154
 
3155
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:36
3156
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
3157
  msgstr ""
3158
 
3159
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:37
3160
  msgid ""
3161
  "Here you can see your \"<b>API Key</b>\" and \"<b>API Secret</b>\". These "
3162
  "will be needed in the plugin's settings."
3163
  msgstr ""
3164
 
3165
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
3166
  msgid "API Secret"
3167
  msgstr ""
3168
 
3169
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
3170
  msgid "Continue with <b>Disqus</b>"
3171
  msgstr ""
3172
 
3173
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3174
  msgid "Sign up with <b>Disqus</b>"
3175
  msgstr ""
3176
 
3177
- #: nextend-social-login-pro/providers/disqus/disqus.php:89
3178
  msgid "Link account with <b>Disqus</b>"
3179
  msgstr ""
3180
 
3181
- #: nextend-social-login-pro/providers/disqus/disqus.php:90
3182
  msgid "Unlink account from <b>Disqus</b>"
3183
  msgstr ""
3184
 
3185
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
3186
  #, php-format
3187
  msgid "Click on the name of the App you configured %s with."
3188
  msgstr ""
3189
 
3190
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:11
3191
  #, php-format
3192
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
3193
  msgstr ""
3194
 
3195
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:14
3196
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:25
3197
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
3198
  msgstr ""
3199
 
3200
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:22
3201
  msgid "Press the <b>Update application</b> button to save the changes."
3202
  msgstr ""
3203
 
3204
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:19
3205
  #, php-format
3206
  msgid ""
3207
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
3208
  "button."
3209
  msgstr ""
3210
 
3211
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:20
3212
  msgid ""
3213
  "Enter a name into the <b>Application name</b> field. Users will see this "
3214
  "name, when they authorize your app at the OAuth consent screen!"
3215
  msgstr ""
3216
 
3217
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:21
3218
  #, php-format
3219
  msgid ""
3220
  "Fill <b>Homepage URL</b> with the url of your homepage, probably: <b>%s</b>"
3221
  msgstr ""
3222
 
3223
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:22
3224
  msgid ""
3225
  "In the <b>Description</b> field you should explain what this App will be "
3226
  "used for."
3227
  msgstr ""
3228
 
3229
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:33
3230
  msgid "Click the <b>Register application</b> button."
3231
  msgstr ""
3232
 
3233
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:34
3234
  msgid ""
3235
  "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the middle "
3236
  "of the page. These will be needed in the plugin's settings!"
3237
  msgstr ""
3238
 
3239
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:37
3240
  #, php-format
3241
  msgid ""
3242
  "<b>Important note:</b> The email address is only retrievable, if there is a "
3243
  "public email address set at the %1$s profile page%2$s!"
3244
  msgstr ""
3245
 
3246
- #: nextend-social-login-pro/providers/github/github.php:125
3247
  msgid "Continue with <b>GitHub</b>"
3248
  msgstr ""
3249
 
3250
- #: nextend-social-login-pro/providers/github/github.php:126
3251
  msgid "Sign up with <b>GitHub</b>"
3252
  msgstr ""
3253
 
3254
- #: nextend-social-login-pro/providers/github/github.php:127
3255
  msgid "Link account with <b>GitHub</b>"
3256
  msgstr ""
3257
 
3258
- #: nextend-social-login-pro/providers/github/github.php:128
3259
  msgid "Unlink account from <b>GitHub</b>"
3260
  msgstr ""
3261
 
3262
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:8
3263
  #, php-format
3264
  msgid "Navigate to your %s"
3265
  msgstr ""
3266
 
3267
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:10
3268
  #, php-format
3269
  msgid "Select your %s App and click on the LINE Login section."
3270
  msgstr ""
3271
 
3272
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:13
3273
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
3274
  msgstr ""
3275
 
3276
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:17
3277
  #, php-format
3278
  msgid ""
3279
  "Editing Live Apps are only possible with a %s. So please make sure you own "
3280
  "one!"
3281
  msgstr ""
3282
 
3283
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:19
3284
  msgid "Click the \"<b>Create a new provider</b>\" button."
3285
  msgstr ""
3286
 
3287
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:20
3288
  msgid ""
3289
  "Fill the \"<b>Provider name</b>\" field and click the \"<b>Create</b>\" "
3290
  "button."
3291
  msgstr ""
3292
 
3293
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:21
3294
  msgid ""
3295
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
3296
  "channel</b>\" option."
3297
  msgstr ""
3298
 
3299
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:22
3300
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
3301
  msgstr ""
3302
 
3303
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:23
3304
  msgid ""
3305
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
3306
  "created."
3307
  msgstr ""
3308
 
3309
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:24
3310
  msgid "Select your \"<b>Region</b>\"."
3311
  msgstr ""
3312
 
3313
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:25
3314
  msgid ""
3315
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
3316
  "description</b>\". These will appear on your Consent Screen!"
3317
  msgstr ""
3318
 
3319
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:26
3320
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
3321
  msgstr ""
3322
 
3323
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:27
3324
  msgid ""
3325
  "Read and consent to the \"<b>LINE Developers Agreement</b>\", then click the "
3326
  "\"<b>Create</b>\" button."
3327
  msgstr ""
3328
 
3329
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:28
3330
  msgid ""
3331
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
3332
  "near the \"<b>Email address permission</b>\" label."
3333
  msgstr ""
3334
 
3335
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:29
3336
  msgid "Fill out the form, then click the \"<b>Submit</b>\" button."
3337
  msgstr ""
3338
 
3339
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:30
3340
  msgid ""
3341
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
3342
  "section."
3343
  msgstr ""
3344
 
3345
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:41
3346
  msgid ""
3347
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
3348
  "Channel!"
3349
  msgstr ""
3350
 
3351
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:42
3352
  msgid ""
3353
  "Go to the \"<b>Basic settings</b>\" tab and find the necessary \"<b>Channel "
3354
  "ID</b>\" and \"<b>Channel secret</b>\" values and fill these fields in the "
3355
  "plugin settings!"
3356
  msgstr ""
3357
 
3358
- #: nextend-social-login-pro/providers/line/admin/settings.php:26
3359
  msgid "Channel ID"
3360
  msgstr ""
3361
 
3362
- #: nextend-social-login-pro/providers/line/admin/settings.php:38
3363
  msgid "Channel Secret"
3364
  msgstr ""
3365
 
3366
- #: nextend-social-login-pro/providers/line/line.php:36
3367
  msgid "Continue with <b>Line</b>"
3368
  msgstr ""
3369
 
3370
- #: nextend-social-login-pro/providers/line/line.php:37
3371
  msgid "Sign up with <b>Line</b>"
3372
  msgstr ""
3373
 
3374
- #: nextend-social-login-pro/providers/line/line.php:38
3375
  msgid "Link account with <b>Line</b>"
3376
  msgstr ""
3377
 
3378
- #: nextend-social-login-pro/providers/line/line.php:39
3379
  msgid "Unlink account from <b>Line</b>"
3380
  msgstr ""
3381
 
3382
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3383
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3384
  msgstr ""
3385
 
3386
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:13
3387
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
3388
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
3389
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3390
  msgstr ""
3391
 
3392
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:21
3393
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:38
3394
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:22
3395
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:22
3396
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:21
3397
  msgid "Click on \"<b>Update</b>\" to save the changes"
3398
  msgstr ""
3399
 
3400
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
3401
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
3402
  msgstr ""
3403
 
3404
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
3405
  msgid "Enter the name of your App to the \"App name\" field."
3406
  msgstr ""
3407
 
3408
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
3409
  #, php-format
3410
  msgid ""
3411
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
3412
  "one yet, create new one at: %s"
3413
  msgstr ""
3414
 
3415
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
3416
  msgid ""
3417
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
3418
  msgstr ""
3419
 
3420
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
3421
  msgid ""
3422
  "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
3423
  "App</b>\" button!"
3424
  msgstr ""
3425
 
3426
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24
3427
  msgid ""
3428
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
3429
  "tab."
3430
  msgstr ""
3431
 
3432
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25
3433
  #, php-format
3434
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
3435
  msgstr ""
3436
 
3437
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:26
3438
  msgid ""
3439
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
3440
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
3441
  "button."
3442
  msgstr ""
3443
 
3444
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
3445
  msgid "Click on the \"<b>Auth</b>\" tab."
3446
  msgstr ""
3447
 
3448
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:30
3449
  msgid ""
3450
  "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
3451
  "\"<b>Redirect URLs</b>\" field:"
3452
  msgstr ""
3453
 
3454
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:39
3455
  msgid ""
3456
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" under "
3457
  "the Application credentials section, on the <b>Auth</b> tab."
3458
  msgstr ""
3459
 
3460
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3461
  msgid "Continue with <b>LinkedIn</b>"
3462
  msgstr ""
3463
 
3464
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3465
  msgid "Sign up with <b>LinkedIn</b>"
3466
  msgstr ""
3467
 
3468
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3469
  msgid "Link account with <b>LinkedIn</b>"
3470
  msgstr ""
3471
 
3472
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3473
  msgid "Unlink account from <b>LinkedIn</b>"
3474
  msgstr ""
3475
 
3476
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:9
3477
  #, php-format
3478
  msgid "Log in with your %s credentials if you are not logged in yet."
3479
  msgstr ""
3480
 
3481
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:10
3482
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:19
3483
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
3484
  msgstr ""
3485
 
3486
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:11
3487
  #, php-format
3488
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
3489
  msgstr ""
3490
 
3491
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:12
3492
  msgid "Click on the link next to the Redirect URIs label."
3493
  msgstr ""
3494
 
3495
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:15
3496
  msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3497
  msgstr ""
3498
 
3499
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:18
3500
  #, php-format
3501
  msgid ""
3502
  "Log in with your %s credentials if you are not logged in or create a new "
3503
  "account."
3504
  msgstr ""
3505
 
3506
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:20
3507
  msgid "Click on \"<b>New registration</b>\"."
3508
  msgstr ""
3509
 
3510
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:21
3511
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
3512
  msgstr ""
3513
 
3514
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:22
3515
  msgid ""
3516
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
3517
  "account types."
3518
  msgstr ""
3519
 
3520
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:25
3521
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3522
  msgstr ""
3523
 
3524
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:33
3525
  msgid "Create your App with the \"<b>Register</b>\" button."
3526
  msgstr ""
3527
 
3528
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:34
3529
  msgid "You land on the \"<b>Overview</b>\" page."
3530
  msgstr ""
3531
 
3532
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:35
3533
  msgid ""
3534
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
3535
  "(client) ID</b> in the plugin settings."
3536
  msgstr ""
3537
 
3538
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:36
3539
  msgid ""
3540
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
3541
  "Client credentials label."
3542
  msgstr ""
3543
 
3544
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:37
3545
  msgid "Click on \"<b>New client secret</b>\"."
3546
  msgstr ""
3547
 
3548
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:38
3549
  msgid "Fill the \"<b>Description</b>\" field."
3550
  msgstr ""
3551
 
3552
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:39
3553
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
3554
  msgstr ""
3555
 
3556
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:40
3557
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
3558
  msgstr ""
3559
 
3560
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:41
3561
  msgid ""
3562
  "Copy the \"<b>Client Secret Value</b>\", this will be the <b>Client secret</"
3563
  "b> in the plugin settings."
3564
  msgstr ""
3565
 
3566
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:26
3567
  msgid "Application (client) ID"
3568
  msgstr ""
3569
 
3570
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:38
3571
  msgid "Client secret"
3572
  msgstr ""
3573
 
3574
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:38
3575
  msgid "Continue with <b>Microsoft</b>"
3576
  msgstr ""
3577
 
3578
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:39
3579
  msgid "Sign up with <b>Microsoft</b>"
3580
  msgstr ""
3581
 
3582
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:40
3583
  msgid "Link account with <b>Microsoft</b>"
3584
  msgstr ""
3585
 
3586
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:41
3587
  msgid "Unlink account from <b>Microsoft</b>"
3588
  msgstr ""
3589
 
3590
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
3591
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
3592
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
3593
  msgstr ""
3594
 
3595
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
3596
  #, php-format
3597
  msgid "Click on the name of your %s App, under the REST API apps section."
3598
  msgstr ""
3599
 
3600
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
3601
  msgid ""
3602
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3603
  "b>\" heading and click \"<b>Show</b>\"."
3604
  msgstr ""
3605
 
3606
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
3607
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
3608
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3609
  msgstr ""
3610
 
3611
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:23
3612
  msgid "Click on \"Save\""
3613
  msgstr ""
3614
 
3615
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
3616
  #, php-format
3617
  msgid ""
3618
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
3619
  "step, if not click on the link!"
3620
  msgstr ""
3621
 
3622
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
3623
  msgid "Click on Registration and create a Business account."
3624
  msgstr ""
3625
 
3626
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
3627
  msgid "If you are done, follow the guide from the 5. step."
3628
  msgstr ""
3629
 
3630
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
3631
  #, php-format
3632
  msgid "Log in with your %s credentials."
3633
  msgstr ""
3634
 
3635
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
3636
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
3637
  msgstr ""
3638
 
3639
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
3640
  msgid ""
3641
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
3642
  msgstr ""
3643
 
3644
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
3645
  msgid ""
3646
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3647
  "b>\" heading then click \"<b>Show</b>\"."
3648
  msgstr ""
3649
 
3650
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:36
3651
  msgid ""
3652
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
3653
  "with PayPal</b>\"."
3654
  msgstr ""
3655
 
3656
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:37
3657
  msgid ""
3658
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
3659
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
3660
  msgstr ""
3661
 
3662
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:38
3663
  msgid "Tick \"<b>Full name</b>\"."
3664
  msgstr ""
3665
 
3666
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:39
3667
  msgid ""
3668
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
3669
  "email address as well, <b>please submit your App for a review</b> after your "
@@ -3672,290 +2503,200 @@ msgid ""
3672
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
3673
  msgstr ""
3674
 
3675
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:40
3676
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
3677
  msgstr ""
3678
 
3679
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:42
3680
  msgid ""
3681
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
3682
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
3683
  "\"<b>Live</b>\" mode and not \"Sandbox\". )"
3684
  msgstr ""
3685
 
3686
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
3687
  msgid "Secret"
3688
  msgstr ""
3689
 
3690
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:45
3691
  msgid "Email scope"
3692
  msgstr ""
3693
 
3694
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:54
3695
  msgid "Disable, when you have no rights for email address."
3696
  msgstr ""
3697
 
3698
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
3699
  msgid "Continue with <b>PayPal</b>"
3700
  msgstr ""
3701
 
3702
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3703
  msgid "Sign up with <b>PayPal</b>"
3704
  msgstr ""
3705
 
3706
- #: nextend-social-login-pro/providers/paypal/paypal.php:67
3707
  msgid "Link account with <b>PayPal</b>"
3708
  msgstr ""
3709
 
3710
- #: nextend-social-login-pro/providers/paypal/paypal.php:68
3711
  msgid "Unlink account from <b>PayPal</b>"
3712
  msgstr ""
3713
 
3714
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
3715
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3716
  msgstr ""
3717
 
3718
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
3719
  msgid "Go to the \"<b>Settings</b>\" menu"
3720
  msgstr ""
3721
 
3722
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:14
3723
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:28
3724
  msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3725
  msgstr ""
3726
 
3727
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
3728
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3729
  msgstr ""
3730
 
3731
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
3732
  msgid ""
3733
  "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
3734
  "platform."
3735
  msgstr ""
3736
 
3737
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
3738
  #, php-format
3739
  msgid ""
3740
  "Fill \"<b>Website address</b>\" with the url of your homepage, probably: <b>"
3741
  "%s</b>"
3742
  msgstr ""
3743
 
3744
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
3745
  #, php-format
3746
  msgid ""
3747
  "Fill the \"<b>Base domain</b>\" field with your domain, probably: <b>%s</b>"
3748
  msgstr ""
3749
 
3750
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
3751
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
3752
  msgstr ""
3753
 
3754
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
3755
  msgid ""
3756
  "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
3757
  "click <b>Save</b>."
3758
  msgstr ""
3759
 
3760
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
3761
  msgid "Pick <b>Settings</b> at the left-hand menu "
3762
  msgstr ""
3763
 
3764
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:36
3765
  msgid "<b>Save</b> your app"
3766
  msgstr ""
3767
 
3768
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:37
3769
  msgid ""
3770
  "Find the necessary \"<b>App ID</b>\" and \"<b>Secure key</b>\" at the top of "
3771
  "the Settings page where you just hit the save button."
3772
  msgstr ""
3773
 
3774
- #: nextend-social-login-pro/providers/vk/admin/settings.php:39
3775
  msgid "Secure key"
3776
  msgstr ""
3777
 
3778
- #: nextend-social-login-pro/providers/vk/vk.php:36
3779
  msgid "Continue with <b>VK</b>"
3780
  msgstr ""
3781
 
3782
- #: nextend-social-login-pro/providers/vk/vk.php:37
3783
  msgid "Sign up with <b>VK</b>"
3784
  msgstr ""
3785
 
3786
- #: nextend-social-login-pro/providers/vk/vk.php:38
3787
  msgid "Link account with <b>VK</b>"
3788
  msgstr ""
3789
 
3790
- #: nextend-social-login-pro/providers/vk/vk.php:39
3791
  msgid "Unlink account from <b>VK</b>"
3792
  msgstr ""
3793
 
3794
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:11
3795
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
3796
  msgstr ""
3797
 
3798
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
3799
  msgid "Click on the \"<b>Create New Application</b>\" button."
3800
  msgstr ""
3801
 
3802
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
3803
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
3804
  msgstr ""
3805
 
3806
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
3807
  #, php-format
3808
  msgid ""
3809
  "Fill \"<b>Website URL</b>\" with the url of your homepage, probably: <b>%s</"
3810
  "b>"
3811
  msgstr ""
3812
 
3813
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:32
3814
  msgid "You can leave the \"Javascript Origins\" field blank!"
3815
  msgstr ""
3816
 
3817
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:33
3818
  msgid "Complete the human verification test."
3819
  msgstr ""
3820
 
3821
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:34
3822
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
3823
  msgstr ""
3824
 
3825
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:35
3826
  msgid "Click the \"<b>Create</b>\" button!"
3827
  msgstr ""
3828
 
3829
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:36
3830
  msgid ""
3831
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
3832
  "next to Editing!"
3833
  msgstr ""
3834
 
3835
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:37
3836
  msgid ""
3837
  "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
3838
  "These will be needed in the plugin's settings."
3839
  msgstr ""
3840
 
3841
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3842
  msgid "Continue with <b>WordPress.com</b>"
3843
  msgstr ""
3844
 
3845
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3846
  msgid "Sign up with <b>WordPress.com</b>"
3847
  msgstr ""
3848
 
3849
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3850
  msgid "Link account with <b>WordPress.com</b>"
3851
  msgstr ""
3852
 
3853
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3854
  msgid "Unlink account from <b>WordPress.com</b>"
3855
  msgstr ""
3856
 
3857
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
3858
  msgid "Click on the App which has its credentials associated with the plugin."
3859
  msgstr ""
3860
 
3861
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:13
3862
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:26
3863
  msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3864
  msgstr ""
3865
 
3866
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20
3867
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3868
  msgstr ""
3869
 
3870
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21
3871
  msgid ""
3872
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
3873
  "at \"<b>Application Type</b>\"."
3874
  msgstr ""
3875
 
3876
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22
3877
  msgid "Enter a \"<b>Description</b>\" for your app!"
3878
  msgstr ""
3879
 
3880
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23
3881
  #, php-format
3882
  msgid ""
3883
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
3884
  msgstr ""
3885
 
3886
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:34
3887
  msgid ""
3888
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3889
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3890
  msgstr ""
3891
 
3892
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:35
3893
  msgid "Click \"<b>Create App</b>\"."
3894
  msgstr ""
3895
 
3896
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:36
3897
  msgid ""
3898
  "On the top of the page, you will find the necessary \"<b>Client ID</b>\" and "
3899
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3900
  msgstr ""
3901
 
3902
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3903
  msgid "Continue with <b>Yahoo</b>"
3904
  msgstr ""
3905
 
3906
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3907
  msgid "Sign up with <b>Yahoo</b>"
3908
  msgstr ""
3909
 
3910
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
3911
  msgid "Link account with <b>Yahoo</b>"
3912
  msgstr ""
3913
 
3914
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
3915
  msgid "Unlink account from <b>Yahoo</b>"
3916
  msgstr ""
3917
 
3918
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
3919
  #, php-format
3920
  msgid "Required permission: %1$s"
3921
  msgstr ""
3922
 
3923
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
3924
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
3925
- #: nextend-social-login-pro/template-parts/buddypress/register/above-separator.php:25
3926
- #: nextend-social-login-pro/template-parts/buddypress/register/below-separator.php:25
3927
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
3928
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
3929
- #: nextend-social-login-pro/template-parts/login/above-separator.php:25
3930
- #: nextend-social-login-pro/template-parts/login/below-separator.php:30
3931
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
3932
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
3933
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
3934
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
3935
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
3936
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
3937
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
3938
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
3939
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
3940
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
3941
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
3942
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
3943
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
3944
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
3945
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
3946
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
3947
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
3948
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
3949
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
3950
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
3951
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
3952
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
3953
  msgid "OR"
3954
  msgstr "ODER"
3955
 
3956
- #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
3957
- #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2
3958
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
3959
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
3960
  msgid "Social accounts"
3961
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-09-13 20:35+0200\n"
5
+ "PO-Revision-Date: 2021-09-13 20:35+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: de\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-Flags-xgettext: --no-location\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
 
24
  msgid "What personal data we collect and why we collect it"
25
  msgstr ""
26
 
 
27
  #, php-format
28
  msgid ""
29
  "%1$s collects data when a visitor register, login or link the account with "
33
  "feature."
34
  msgstr ""
35
 
 
36
  msgid "Who we share your data with"
37
  msgstr ""
38
 
 
39
  #, php-format
40
  msgid ""
41
  "%1$s stores the personal data on your site and does not share it with anyone "
43
  "the social providers."
44
  msgstr ""
45
 
 
46
  msgid "Does the plugin share personal data with third parties"
47
  msgstr ""
48
 
 
49
  #, php-format
50
  msgid ""
51
  "%1$s use the access token what the social provider gave to communicate with "
52
  "the providers to verify account and securely access personal data."
53
  msgstr ""
54
 
 
55
  msgid "How long we retain your data"
56
  msgstr ""
57
 
 
58
  #, php-format
59
  msgid ""
60
  "%1$s removes the collected personal data when the user deleted from "
61
  "WordPress."
62
  msgstr ""
63
 
 
64
  msgid "Does the plugin use personal data collected by others?"
65
  msgstr ""
66
 
 
67
  #, php-format
68
  msgid ""
69
  "%1$s use the personal data collected by the social providers to create "
70
  "account on your site when the visitor authorize it."
71
  msgstr ""
72
 
 
73
  msgid "Does the plugin store things in the browser?"
74
  msgstr ""
75
 
 
76
  #, php-format
77
  msgid ""
78
  "Yes, %1$s must create a cookie for visitors who use the social login "
80
  "communication and to redirect the user back to the last location."
81
  msgstr ""
82
 
 
83
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
84
  msgstr ""
85
 
 
 
86
  msgid "No"
87
  msgstr ""
88
 
 
89
  msgid ""
90
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
91
  "third party?"
92
  msgstr ""
93
 
 
 
94
  msgid "User"
95
  msgstr ""
96
 
 
97
  #, php-format
98
  msgid "%s needs json_decode function."
99
  msgstr ""
100
 
 
101
  msgid "Please contact your server administrator and ask for solution!"
102
  msgstr ""
103
 
 
 
104
  msgid "Settings saved."
105
  msgstr ""
106
 
 
107
  msgid "The activation was successful"
108
  msgstr ""
109
 
 
110
  msgid "Deactivate completed."
111
  msgstr ""
112
 
 
 
 
 
 
113
  msgid "Settings"
114
  msgstr ""
115
 
 
 
 
 
 
 
 
116
  #, php-format
117
  msgid "Unexpected response: %s"
118
  msgstr ""
119
 
 
 
120
  #, php-format
121
  msgid ""
122
  "%s detected that your login url changed. You must update the Oauth redirect "
123
  "URIs in the related social applications."
124
  msgstr ""
125
 
 
 
126
  msgid "Fix Error"
127
  msgstr ""
128
 
 
129
  msgid "Oauth Redirect URI"
130
  msgstr ""
131
 
 
132
  #, php-format
133
  msgid ""
134
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
135
  "display Social Login buttons in %2$s login form!"
136
  msgstr ""
137
 
 
138
  msgid "Dismiss and check Pro Addon"
139
  msgstr ""
140
 
 
141
  msgid "Dismiss"
142
  msgstr ""
143
 
 
144
  #, php-format
145
  msgid ""
146
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
148
  "work properly."
149
  msgstr ""
150
 
 
151
  msgid "Fix now"
152
  msgstr ""
153
 
 
154
  msgid "Activate your Pro Addon"
155
  msgstr ""
156
 
 
157
  msgid ""
158
  "To be able to use the Pro features, you need to activate Nextend Social "
159
  "Login Pro Addon. You can do this by clicking on the Activate button below "
160
  "then select the related purchase."
161
  msgstr ""
162
 
 
 
163
  msgid "Activate"
164
  msgstr ""
165
 
 
166
  msgid "License key"
167
  msgstr ""
168
 
 
169
  msgid "OAuth proxy page"
170
  msgstr ""
171
 
 
172
  msgid "Register flow page"
173
  msgstr ""
174
 
 
175
  #, php-format
176
  msgid ""
177
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
179
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
180
  msgstr ""
181
 
 
 
182
  msgid "You have logged in successfully."
183
  msgstr ""
184
 
 
185
  msgid "Login label"
186
  msgstr ""
187
 
 
 
 
 
 
 
 
188
  msgid "Reset to default"
189
  msgstr ""
190
 
 
191
  msgid "Register label"
192
  msgstr ""
193
 
 
194
  msgid "Link label"
195
  msgstr ""
196
 
 
197
  msgid "Unlink label"
198
  msgstr ""
199
 
 
200
  msgid "Default button"
201
  msgstr ""
202
 
 
 
203
  msgid "Use custom button"
204
  msgstr ""
205
 
 
206
  #, php-format
207
  msgid "Use the %s in your custom button's code to make the label show up."
208
  msgstr ""
209
 
 
210
  msgid "Icon button"
211
  msgstr ""
212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
  msgid "Save Changes"
214
  msgstr ""
215
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
216
  msgid "Getting Started"
217
  msgstr ""
218
 
 
219
  msgid "Buttons"
220
  msgstr ""
221
 
 
222
  msgid "Sync data"
223
  msgstr ""
224
 
 
225
  msgid "Usage"
226
  msgstr ""
227
 
 
228
  msgid "Other settings"
229
  msgstr ""
230
 
 
231
  msgid "Username prefix on register"
232
  msgstr ""
233
 
 
234
  msgid "Fallback username prefix on register"
235
  msgstr ""
236
 
 
237
  msgid "Used when username is invalid or not stored"
238
  msgstr ""
239
 
 
 
 
240
  msgid "Terms and conditions"
241
  msgstr ""
242
 
 
243
  #, php-format
244
  msgid "Override global \"%1$s\""
245
  msgstr ""
246
 
 
 
 
247
  msgid "PRO settings"
248
  msgstr ""
249
 
 
 
250
  msgid "Ask E-mail on registration"
251
  msgstr ""
252
 
 
 
253
  msgid "Never"
254
  msgstr ""
255
 
 
256
  msgid "When email is not provided or empty"
257
  msgstr ""
258
 
 
 
 
259
  msgid "Always"
260
  msgstr ""
261
 
 
 
262
  msgid "Ask Username on registration"
263
  msgstr ""
264
 
 
265
  msgid "Never, generate automatically"
266
  msgstr ""
267
 
 
268
  msgid "When username is empty or invalid"
269
  msgstr ""
270
 
 
271
  msgid "Ask Password on registration"
272
  msgstr ""
273
 
 
 
274
  msgid "Automatically connect the existing account upon registration"
275
  msgstr ""
276
 
 
 
 
 
 
 
 
 
 
277
  msgid "Disabled"
278
  msgstr ""
279
 
 
280
  msgid "Automatic, based on email address"
281
  msgstr ""
282
 
 
283
  msgid "Disable login for the selected roles"
284
  msgstr ""
285
 
 
286
  msgid "Default roles for user who registered with this provider"
287
  msgstr ""
288
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
289
  msgid "Default"
290
  msgstr ""
291
 
 
292
  msgid "Register"
293
  msgstr ""
294
 
 
295
  msgid "Login"
296
  msgstr ""
297
 
 
298
  msgid "Link"
299
  msgstr ""
300
 
 
301
  msgid "Store in meta key"
302
  msgstr ""
303
 
 
304
  msgid "Shortcode"
305
  msgstr ""
306
 
 
307
  msgid "Important!"
308
  msgstr ""
309
 
 
310
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
311
  msgstr ""
312
 
 
313
  msgid "See the full list of shortcode parameters."
314
  msgstr ""
315
 
 
316
  msgid "Simple link"
317
  msgstr ""
318
 
 
319
  msgid "Click here to login or register"
320
  msgstr ""
321
 
 
322
  msgid "Image button"
323
  msgstr ""
324
 
 
325
  msgid "Image url"
326
  msgstr ""
327
 
 
 
328
  msgid "Debug"
329
  msgstr ""
330
 
 
331
  msgid "Test network connection with providers"
332
  msgstr ""
333
 
 
334
  msgid "You don't have cURL support, please enable it in php.ini!"
335
  msgstr ""
336
 
 
337
  #, php-format
338
  msgid "Test %1$s connection"
339
  msgstr ""
340
 
 
341
  msgid "Fix Oauth Redirect URIs"
342
  msgstr ""
343
 
 
344
  msgid "Every Oauth Redirect URI seems fine"
345
  msgstr ""
346
 
 
347
  msgid "Got it"
348
  msgstr ""
349
 
 
 
350
  msgid "Global Settings"
351
  msgstr ""
352
 
 
353
  msgid "General"
354
  msgstr ""
355
 
 
356
  msgid "Privacy"
357
  msgstr ""
358
 
 
 
 
359
  msgid "Login Form"
360
  msgstr ""
361
 
 
362
  msgid "Comment"
363
  msgstr ""
364
 
 
365
  msgid "Docs"
366
  msgstr ""
367
 
 
368
  msgid "Support"
369
  msgstr ""
370
 
 
 
371
  msgid "Pro Addon"
372
  msgstr ""
373
 
 
374
  msgid "Providers"
375
  msgstr ""
376
 
 
 
 
377
  msgid "Error"
378
  msgstr ""
379
 
 
380
  msgid ""
381
  "You don’t have sufficient permissions to install and activate plugins. "
382
  "Please contact your site’s administrator!"
383
  msgstr ""
384
 
 
 
 
385
  msgid "Activate Pro Addon"
386
  msgstr ""
387
 
 
388
  msgid ""
389
  "Pro Addon is installed but not activated. To be able to use the Pro "
390
  "features, you need to activate it."
391
  msgstr ""
392
 
 
 
393
  msgid "Deactivate Pro Addon"
394
  msgstr ""
395
 
 
 
396
  msgid "Pro Addon is not installed"
397
  msgstr ""
398
 
 
399
  msgid ""
400
  "To access the Pro features, you need to install and activate the Pro Addon."
401
  msgstr ""
402
 
 
403
  #, php-format
404
  msgid "Install %s now"
405
  msgstr ""
406
 
 
 
407
  msgid "Install Pro Addon"
408
  msgstr ""
409
 
 
410
  msgid "Activating..."
411
  msgstr ""
412
 
 
413
  msgid "Not compatible!"
414
  msgstr ""
415
 
 
416
  #, php-format
417
  msgid ""
418
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
419
  "newer."
420
  msgstr ""
421
 
 
422
  msgid "Update Pro Addon"
423
  msgstr ""
424
 
 
425
  msgid "Pro Addon is installed and activated"
426
  msgstr ""
427
 
 
428
  msgid ""
429
  "You installed and activated the Pro Addon. If you don’t want to use it "
430
  "anymore, you can deactivate using the button below."
431
  msgstr ""
432
 
 
433
  msgid "Get Pro Addon to unlock more features"
434
  msgstr ""
435
 
 
436
  #, php-format
437
  msgid ""
438
  "The features below are available in %s Pro Addon. Get it today and tweak the "
439
  "awesome settings."
440
  msgstr ""
441
 
 
442
  msgid ""
443
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
444
  "you can purchase it using the button below."
445
  msgstr ""
446
 
 
447
  msgid "Buy Pro Addon"
448
  msgstr ""
449
 
 
450
  msgid "Authorize Pro Addon"
451
  msgstr ""
452
 
 
453
  msgid "Pro Addon is not activated"
454
  msgstr ""
455
 
 
 
456
  msgid ""
457
  "To be able to use the Pro features, you need to install and activate the "
458
  "Nextend Social Login Pro Addon."
459
  msgstr ""
460
 
 
461
  #, php-format
462
  msgid ""
463
  "%1$s detected that you have providers configured but none of them are "
465
  "one provider enabled!"
466
  msgstr ""
467
 
 
468
  msgid "Not Available"
469
  msgstr ""
470
 
 
471
  msgid "Not Configured"
472
  msgstr ""
473
 
 
474
  msgid "Not Verified"
475
  msgstr ""
476
 
 
 
 
 
 
 
 
 
 
 
477
  msgid "Enabled"
478
  msgstr ""
479
 
 
480
  msgid "Upgrade Now"
481
  msgstr ""
482
 
 
 
483
  msgid "Verify Settings"
484
  msgstr ""
485
 
 
 
486
  msgid "Enable"
487
  msgstr ""
488
 
 
 
489
  msgid "Disable"
490
  msgstr ""
491
 
 
492
  msgid "Stay Updated"
493
  msgstr ""
494
 
 
495
  msgid ""
496
  "Receive info on the latest plugin updates and social provider related "
497
  "changes."
498
  msgstr ""
499
 
 
500
  msgid "Enter your email address"
501
  msgstr ""
502
 
 
503
  msgid "Subscribe"
504
  msgstr ""
505
 
 
506
  msgid "Saving..."
507
  msgstr ""
508
 
 
509
  msgid "Saving failed"
510
  msgstr ""
511
 
 
512
  msgid "Order Saved"
513
  msgstr ""
514
 
 
515
  msgid "Successfully subscribed!"
516
  msgstr ""
517
 
 
518
  msgid ""
519
  "We'll be bringing you all the latest news and updates about Social Login - "
520
  "right to your inbox."
521
  msgstr ""
522
 
 
523
  msgid "The entered email address is invalid!"
524
  msgstr ""
525
 
 
526
  msgid "Rate your experience!"
527
  msgstr ""
528
 
 
529
  msgid "Hated it"
530
  msgstr ""
531
 
 
532
  msgid "Disliked it"
533
  msgstr ""
534
 
 
535
  msgid "It was ok"
536
  msgstr ""
537
 
 
538
  msgid "Liked it"
539
  msgstr ""
540
 
 
541
  msgid "Loved it"
542
  msgstr ""
543
 
 
544
  msgid "Please Leave a Review"
545
  msgstr ""
546
 
 
547
  msgid ""
548
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
549
  "please leave us a review. It will be a tremendous help for us!"
550
  msgstr ""
551
 
 
552
  msgid "Ok, you deserve it"
553
  msgstr ""
554
 
 
 
 
555
  msgid "Register form"
556
  msgstr ""
557
 
 
558
  msgid "No Connect button"
559
  msgstr ""
560
 
 
561
  msgid "Connect button before register"
562
  msgstr ""
563
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
  msgid "Action:"
565
  msgstr ""
566
 
 
567
  msgid "Connect button before account details"
568
  msgstr ""
569
 
 
570
  msgid "Connect button after register"
571
  msgstr ""
572
 
 
573
  msgid "Register button style"
574
  msgstr ""
575
 
 
 
 
 
 
 
 
 
 
 
 
 
576
  msgid "Fullwidth"
577
  msgstr ""
578
 
 
 
 
 
 
 
 
 
 
 
 
 
 
579
  msgid "Icon"
580
  msgstr ""
581
 
 
 
 
 
582
  msgid "Register layout"
583
  msgstr ""
584
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
  msgid "Below"
586
  msgstr ""
587
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
588
  msgid "Below with separator"
589
  msgstr ""
590
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
  msgid "Above"
592
  msgstr ""
593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
594
  msgid "Above with separator"
595
  msgstr ""
596
 
 
597
  msgid "Sidebar Login form"
598
  msgstr ""
599
 
 
 
 
 
 
 
 
600
  msgid "Hide login buttons"
601
  msgstr ""
602
 
 
 
 
 
 
 
 
 
603
  msgid "Show login buttons"
604
  msgstr ""
605
 
 
606
  msgid ""
607
  "Some themes that use BuddyPress, display the social buttons twice in the "
608
  "same login form. This option can disable the one for: "
609
  "<b>bp_sidebar_login_form action</b>. "
610
  msgstr ""
611
 
 
 
 
 
612
  msgid "Login form"
613
  msgstr ""
614
 
 
615
  msgid "Login button style"
616
  msgstr ""
617
 
 
 
 
 
 
 
618
  msgid "Login layout"
619
  msgstr ""
620
 
 
 
 
 
 
 
 
621
  msgid "Button alignment"
622
  msgstr ""
623
 
 
 
 
 
 
 
 
 
 
624
  msgid "Left"
625
  msgstr ""
626
 
 
 
 
 
 
 
 
 
 
627
  msgid "Center"
628
  msgstr ""
629
 
 
 
 
 
 
 
 
 
 
630
  msgid "Right"
631
  msgstr ""
632
 
 
633
  msgid "Login button"
634
  msgstr ""
635
 
 
 
636
  msgid "Show"
637
  msgstr ""
638
 
 
639
  msgid "Hide"
640
  msgstr ""
641
 
 
642
  #, php-format
643
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
644
  msgstr ""
645
 
 
646
  msgid "Discussion"
647
  msgstr ""
648
 
 
649
  msgid "Users must be registered and logged in to comment"
650
  msgstr ""
651
 
 
 
652
  msgid "Button style"
653
  msgstr ""
654
 
655
+ msgid "No Connect button in Login form"
656
+ msgstr ""
657
+
658
+ msgid "Connect button on"
659
+ msgstr ""
660
+
661
+ msgid "Login form button style"
662
+ msgstr ""
663
+
664
+ msgid "No Connect button in Register form"
665
+ msgstr ""
666
+
667
+ msgid "Register form button style"
668
+ msgstr ""
669
+
670
  msgid "Target window"
671
  msgstr ""
672
 
 
673
  msgid "Prefer popup"
674
  msgstr ""
675
 
 
676
  msgid "Prefer new tab"
677
  msgstr ""
678
 
 
679
  msgid "Prefer same window"
680
  msgstr ""
681
 
 
682
  msgid "Registration notification sent to"
683
  msgstr ""
684
 
 
 
685
  msgid "WordPress default"
686
  msgstr ""
687
 
 
688
  msgid "Nobody"
689
  msgstr ""
690
 
 
691
  msgid "Admin"
692
  msgstr ""
693
 
 
694
  msgid "User and Admin"
695
  msgstr ""
696
 
 
697
  msgid "Unlink"
698
  msgstr ""
699
 
 
700
  msgid "Allow Social account unlink"
701
  msgstr ""
702
 
 
703
  msgid "Show linked providers"
704
  msgstr ""
705
 
 
706
  #, php-format
707
  msgid "Providers linked to the account will appear in the %1$s."
708
  msgstr ""
709
 
 
710
  msgid "Users table"
711
  msgstr ""
712
 
 
713
  msgid "Disable Admin bar for roles"
714
  msgstr ""
715
 
 
716
  msgid "Debug mode"
717
  msgstr ""
718
 
 
719
  msgid "Page for register flow"
720
  msgstr ""
721
 
 
 
722
  msgid "None"
723
  msgstr ""
724
 
 
725
  msgid ""
726
  "This setting is used when you request additional data from the users (such "
727
  "as email address) and to display the Terms and conditions."
728
  msgstr ""
729
 
 
730
  #, php-format
731
  msgid ""
732
  "%2$s First create a new page and insert the following shortcode: %1$s then "
733
  "select this page above"
734
  msgstr ""
735
 
 
 
736
  msgid "Usage:"
737
  msgstr ""
738
 
 
 
739
  #, php-format
740
  msgid ""
741
  "%1$s You won't be able to reach the selected page unless a social login/"
742
  "registration happens."
743
  msgstr ""
744
 
 
 
745
  msgid "Important:"
746
  msgstr ""
747
 
 
748
  msgid "OAuth redirect uri proxy page"
749
  msgstr ""
750
 
 
751
  msgid ""
752
  "You can use this setting when wp-login.php page is not available to handle "
753
  "the OAuth flow."
754
  msgstr ""
755
 
 
756
  #, php-format
757
  msgid "%1$s First create a new page then select this page above."
758
  msgstr ""
759
 
 
760
  msgid "Prevent external redirect overrides"
761
  msgstr ""
762
 
 
763
  msgid "Disable external redirects"
764
  msgstr ""
765
 
 
766
  msgid "Default redirect url"
767
  msgstr ""
768
 
 
 
769
  msgid "for Login"
770
  msgstr ""
771
 
 
 
772
  msgid "for Register"
773
  msgstr ""
774
 
 
775
  msgid "Fixed redirect url"
776
  msgstr ""
777
 
 
778
  msgid "Blacklisted redirects"
779
  msgstr ""
780
 
 
781
  msgid "If you want to blacklist redirect url params. One pattern per line."
782
  msgstr ""
783
 
 
784
  msgid "Support login restrictions"
785
  msgstr ""
786
 
 
787
  #, php-format
788
  msgid "Please visit to our %1$s to check what plugins are supported!"
789
  msgstr ""
790
 
 
791
  msgid "Display avatars in \"All media items\""
792
  msgstr ""
793
 
 
794
  msgid ""
795
  "Enabling this option can speed up loading images in Media Library - Grid "
796
  "view!"
797
  msgstr ""
798
 
 
799
  msgid "Membership"
800
  msgstr ""
801
 
 
802
  msgid "Allow registration with Social login."
803
  msgstr ""
804
 
 
805
  msgid "Custom label for register buttons"
806
  msgstr ""
807
 
 
808
  #, php-format
809
  msgid ""
810
  "Set a custom label for the social buttons in registration forms and for "
812
  "can be modified at the Buttons tab of each provider."
813
  msgstr ""
814
 
 
 
 
 
 
 
 
 
815
  msgid "Below and floating"
816
  msgstr ""
817
 
 
818
  msgid "Embedded Login form button style"
819
  msgstr ""
820
 
 
821
  msgid "Embedded Login layout"
822
  msgstr ""
823
 
 
824
  msgid "Embedded login form button alignment"
825
  msgstr ""
826
 
 
 
827
  msgid "Registration Form"
828
  msgstr ""
829
 
 
830
  msgid "Embedded login form"
831
  msgstr ""
832
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
833
  msgid "Sign Up form"
834
  msgstr ""
835
 
 
836
  msgid "No Connect button in Sign Up form"
837
  msgstr ""
838
 
 
839
  msgid "Sign Up form button style"
840
  msgstr ""
841
 
 
842
  msgid "Sign Up layout"
843
  msgstr ""
844
 
 
 
 
845
  msgid "Account details"
846
  msgstr ""
847
 
 
 
848
  msgid "No link buttons"
849
  msgstr ""
850
 
 
 
851
  msgid "Link buttons after account details"
852
  msgstr ""
853
 
 
 
854
  msgid ""
855
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
856
  "\"_blank\">Privacy Policy</a>"
857
  msgstr ""
858
 
 
859
  msgid "Store"
860
  msgstr ""
861
 
 
862
  msgid "First and last name"
863
  msgstr ""
864
 
 
865
  msgid "When not enabled, username will be randomly generated."
866
  msgstr ""
867
 
 
 
868
  msgid "Email"
869
  msgstr ""
870
 
 
871
  msgid "When not enabled, email will be empty."
872
  msgstr ""
873
 
 
 
874
  msgid "Avatar"
875
  msgstr ""
876
 
 
 
877
  msgid "Access token"
878
  msgstr ""
879
 
 
 
 
 
 
 
 
 
 
 
880
  msgid "Register Form"
881
  msgstr ""
882
 
 
883
  msgid "No Connect button in login form"
884
  msgstr ""
885
 
 
886
  msgid "No Connect button in register form"
887
  msgstr ""
888
 
 
889
  msgid "Billing form"
890
  msgstr ""
891
 
 
892
  msgid "No Connect button in billing form"
893
  msgstr ""
894
 
 
895
  msgid "Billing layout"
896
  msgstr ""
897
 
 
898
  msgid "Default with separator"
899
  msgstr ""
900
 
 
901
  msgid "Checkout for WooCommerce"
902
  msgstr ""
903
 
 
904
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
905
  msgstr ""
906
 
 
907
  msgid "Checkout for WooCommerce layout"
908
  msgstr ""
909
 
 
910
  msgid "No Connect buttons in account details form"
911
  msgstr ""
912
 
 
 
913
  msgid "Link buttons on"
914
  msgstr ""
915
 
 
916
  msgid "Email template for registration"
917
  msgstr ""
918
 
 
919
  msgid "WordPress default notification"
920
  msgstr ""
921
 
 
922
  msgid "WooCommerce registration notification"
923
  msgstr ""
924
 
 
925
  #, php-format
926
  msgid ""
927
  "Defines whether the registration with %1$s will send the same registration "
928
  "notification that %2$s does, instead of the %3$s default one."
929
  msgstr ""
930
 
 
931
  #, php-format
932
  msgid "Network connection successful: %1$s"
933
  msgstr ""
934
 
 
935
  #, php-format
936
  msgid "Network connection failed: %1$s"
937
  msgstr ""
938
 
 
939
  msgid ""
940
  "Please contact with your hosting provider to resolve the network issue "
941
  "between your server and the provider."
942
  msgstr ""
943
 
 
944
  msgid "Manage Avatar"
945
  msgstr ""
946
 
 
947
  #, php-format
948
  msgid "Avatar <span class=\"count\">(%s)</span>"
949
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
950
  msgstr[0] ""
951
  msgstr[1] ""
952
 
 
953
  msgid "Invalid URL Provided."
954
  msgstr ""
955
 
 
956
  msgid "Could not create Temporary file."
957
  msgstr ""
958
 
 
959
  #, php-format
960
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
961
  msgstr ""
962
 
 
963
  msgid "https://wordpress.org/"
964
  msgstr ""
965
 
 
966
  msgid "Powered by WordPress"
967
  msgstr ""
968
 
 
969
  #, php-format
970
  msgctxt "site"
971
  msgid "&larr; Back to %s"
972
  msgstr ""
973
 
 
974
  msgid "Your configuration needs to be verified"
975
  msgstr ""
976
 
 
977
  msgid ""
978
  "Before you can start letting your users register with your app it needs to "
979
  "be tested. This test makes sure that no users will have troubles with the "
982
  "are fine."
983
  msgstr ""
984
 
 
985
  msgid "Please save your changes to verify settings."
986
  msgstr ""
987
 
 
988
  msgid "Works Fine"
989
  msgstr ""
990
 
 
991
  #, php-format
992
  msgid ""
993
  "This provider is currently disabled, which means that users can’t register "
994
  "or login via their %s account."
995
  msgstr ""
996
 
 
997
  #, php-format
998
  msgid ""
999
  "This provider works fine, but you can test it again. If you don’t want to "
1000
  "let users register or login with %s anymore you can disable it."
1001
  msgstr ""
1002
 
 
1003
  #, php-format
1004
  msgid ""
1005
  "This provider is currently enabled, which means that users can register or "
1006
  "login via their %s account."
1007
  msgstr ""
1008
 
 
1009
  msgid "Verify Settings Again"
1010
  msgstr ""
1011
 
 
1012
  msgid "Please save your changes before verifying settings."
1013
  msgstr ""
1014
 
 
 
 
1015
  msgid "Authentication successful"
1016
  msgstr ""
1017
 
 
 
 
1018
  msgid "Authentication error"
1019
  msgstr ""
1020
 
 
1021
  msgid "Unlink successful."
1022
  msgstr ""
1023
 
 
1024
  msgid "Unlink is not allowed!"
1025
  msgstr ""
1026
 
 
 
1027
  msgid "The test was successful"
1028
  msgstr ""
1029
 
 
1030
  msgid "Authentication failed"
1031
  msgstr ""
1032
 
 
1033
  msgid "Identifier"
1034
  msgstr ""
1035
 
 
1036
  msgid "Profile Picture"
1037
  msgstr ""
1038
 
 
1039
  #, php-format
1040
  msgid ""
1041
  "Your %1$s account is successfully linked with your account. Now you can sign "
1042
  "in with %2$s easily."
1043
  msgstr ""
1044
 
 
1045
  #, php-format
1046
  msgid ""
1047
  "You have already linked a(n) %s account. Please unlink the current and then "
1048
  "you can link another %s account."
1049
  msgstr ""
1050
 
 
1051
  #, php-format
1052
  msgid "This %s account is already linked to another user."
1053
  msgstr ""
1054
 
 
1055
  msgid "User registration is currently not allowed."
1056
  msgstr ""
1057
 
 
1058
  #, php-format
1059
  msgid ""
1060
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
1062
  "linked %1$s account or log in with your password!"
1063
  msgstr ""
1064
 
 
1065
  msgid "Register For This Site"
1066
  msgstr ""
1067
 
 
1068
  msgctxt "Register form submit button label"
1069
  msgid "Register"
1070
  msgstr ""
1071
 
 
1072
  #, php-format
1073
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1074
  msgstr ""
1075
 
 
1076
  #, php-format
1077
  msgid ""
1078
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1079
  "version, the plugin is currently NOT ACTIVE."
1080
  msgstr ""
1081
 
 
 
1082
  #, php-format
1083
  msgid "Please update %1$s to version %2$s or newer."
1084
  msgstr ""
1085
 
 
 
1086
  msgid "Update now!"
1087
  msgstr ""
1088
 
 
 
1089
  msgid "Social Login"
1090
  msgstr ""
1091
 
 
1092
  msgid "Social Accounts"
1093
  msgstr ""
1094
 
 
 
 
1095
  msgid "Button skin"
1096
  msgstr ""
1097
 
 
 
 
1098
  msgid "Dark"
1099
  msgstr ""
1100
 
 
 
 
1101
  msgid "Light"
1102
  msgstr ""
1103
 
 
1104
  msgid "Black"
1105
  msgstr ""
1106
 
 
1107
  msgid "White"
1108
  msgstr ""
1109
 
 
 
 
 
 
1110
  #, php-format
1111
  msgid "Navigate to <b>%s</b>"
1112
  msgstr ""
1113
 
 
 
 
 
 
 
 
 
 
 
1114
  #, php-format
1115
  msgid "Log in with your %s credentials if you are not logged in"
1116
  msgstr ""
1117
 
 
1118
  #, php-format
1119
  msgid "Click on the App with App ID: <b>%s</b>"
1120
  msgstr ""
1121
 
 
1122
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1123
  msgstr ""
1124
 
 
 
1125
  msgid ""
1126
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1127
  msgstr ""
1128
 
 
1129
  msgid "Click on \"<b>Save Changes</b>\""
1130
  msgstr ""
1131
 
 
 
 
 
1132
  #, php-format
1133
  msgid ""
1134
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1135
  "order to allow login with %1$s."
1136
  msgstr ""
1137
 
 
 
 
 
1138
  msgid "How to get SSL for my WordPress site?"
1139
  msgstr ""
1140
 
 
 
 
 
 
 
1141
  #, php-format
1142
  msgid ""
1143
  "To allow your visitors to log in with their %1$s account, first you must "
1147
  "%1$s App."
1148
  msgstr ""
1149
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1150
  #, php-format
1151
  msgctxt "App creation"
1152
  msgid "Create %s"
1153
  msgstr ""
1154
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1155
  #, php-format
1156
  msgid "Navigate to %s"
1157
  msgstr ""
1158
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1159
  #, php-format
1160
  msgid "Log in with your %s credentials if you are not logged in."
1161
  msgstr ""
1162
 
 
1163
  msgid ""
1164
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1165
  "\"<b>Consumer</b>\" App type!"
1166
  msgstr ""
1167
 
 
1168
  msgid ""
1169
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1170
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1171
  "finally verify your account."
1172
  msgstr ""
1173
 
 
1174
  #, php-format
1175
  msgid ""
1176
  "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1177
  "specified \"App Display Name\" will appear on your %s!"
1178
  msgstr ""
1179
 
 
1180
  msgid ""
1181
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1182
  "if you have any."
1183
  msgstr ""
1184
 
 
1185
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
1186
  msgstr ""
1187
 
 
1188
  #, php-format
1189
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
1190
  msgstr ""
1191
 
 
1192
  #, php-format
1193
  msgid ""
1194
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1195
  "field: <b>%s</b>"
1196
  msgstr ""
1197
 
 
1198
  msgid "Press “<b>Save</b>”."
1199
  msgstr ""
1200
 
 
1201
  #, php-format
1202
  msgid ""
1203
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1204
  "%2$s</b> - <b>%3$s</b>”"
1205
  msgstr ""
1206
 
 
1207
  msgid "Click on “<b>Save Changes</b>”."
1208
  msgstr ""
1209
 
 
 
1210
  #, php-format
1211
  msgid ""
1212
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1213
  "%2$s</b>”."
1214
  msgstr ""
1215
 
 
1216
  #, php-format
1217
  msgid ""
1218
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1219
  "b>"
1220
  msgstr ""
1221
 
 
1222
  msgid ""
1223
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1224
  "available and easily accessible privacy policy that explains what data you "
1225
  "are collecting and how you will use that data."
1226
  msgstr ""
1227
 
 
1228
  msgid ""
1229
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1230
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1231
  "instructions on how users can delete their accounts on your site."
1232
  msgstr ""
1233
 
 
1234
  msgid ""
1235
  "To comply with GDPR, you should already offer possibility to delete accounts "
1236
  "on your site, either by the user or by the admin:"
1237
  msgstr ""
1238
 
 
1239
  msgid ""
1240
  "<u>If each user has an option to delete the account</u>: the URL should "
1241
  "point to a guide showing the way users can delete their accounts."
1242
  msgstr ""
1243
 
 
1244
  msgid ""
1245
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
1246
  "section - usually in the Privacy Policy - with the contact details, where "
1248
  "point to this section of the document."
1249
  msgstr ""
1250
 
 
1251
  msgid ""
1252
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1253
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1254
  "Changes</b>\"."
1255
  msgstr ""
1256
 
 
1257
  msgid ""
1258
  "Your application is currently private, which means that only you can log in "
1259
  "with it. In the top bar switch the \"<b>App Mode</b>\" from "
1260
  "\"<b>Development</b>\" to \"<b>Live</b>\"."
1261
  msgstr ""
1262
 
 
1263
  #, php-format
1264
  msgid ""
1265
  "By default, your application only has Standard access for the permissions, "
1269
  "should click on the <strong>%6$s</strong> buttons next to them. "
1270
  msgstr ""
1271
 
 
1272
  #, php-format
1273
  msgid ""
1274
  "At the top of the page you can find your \"<b>%1$s</b>\" and you can see "
1276
  "needed in plugin’s settings."
1277
  msgstr ""
1278
 
 
1279
  #, php-format
1280
  msgid ""
1281
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1286
  "the Facebook App, then please check our %2$sdocumentation%3$s."
1287
  msgstr ""
1288
 
 
1289
  msgid "Maintaining the Facebook App:"
1290
  msgstr ""
1291
 
 
1292
  #, php-format
1293
  msgid ""
1294
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1299
  "that we need."
1300
  msgstr ""
1301
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1302
  #, php-format
1303
  msgid "I am done setting up my %s"
1304
  msgstr ""
1305
 
 
 
1306
  msgid "App ID"
1307
  msgstr ""
1308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1309
  msgid "Required"
1310
  msgstr ""
1311
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1312
  #, php-format
1313
  msgid ""
1314
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1315
  "\">Getting Started</a>"
1316
  msgstr ""
1317
 
 
1318
  msgid "App Secret"
1319
  msgstr ""
1320
 
 
 
1321
  #, php-format
1322
  msgid ""
1323
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
1324
  "longer be able to login with %1$s."
1325
  msgstr ""
1326
 
 
 
1327
  msgid "Find out why?"
1328
  msgstr ""
1329
 
 
1330
  msgid "Continue with <b>Facebook</b>"
1331
  msgstr ""
1332
 
 
1333
  msgid "Sign up with <b>Facebook</b>"
1334
  msgstr ""
1335
 
 
1336
  msgid "Link account with <b>Facebook</b>"
1337
  msgstr ""
1338
 
 
1339
  msgid "Unlink account from <b>Facebook</b>"
1340
  msgstr ""
1341
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1342
  #, php-format
1343
  msgid ""
1344
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1345
  msgstr ""
1346
 
 
 
1347
  #, php-format
1348
  msgid "Required scope: %1$s"
1349
  msgstr ""
1350
 
 
1351
  msgid "Uniform - Legacy"
1352
  msgstr ""
1353
 
 
1354
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
1355
  msgstr ""
1356
 
 
1357
  #, php-format
1358
  msgid ""
1359
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
1360
  "%s</b>"
1361
  msgstr ""
1362
 
 
 
1363
  #, php-format
1364
  msgid ""
1365
  "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
1366
  "following URL:"
1367
  msgstr ""
1368
 
 
 
 
 
1369
  msgid "Click on \"<b>Save</b>\""
1370
  msgstr ""
1371
 
 
1372
  #, php-format
1373
  msgid ""
1374
  "If you don't have a project yet, you'll need to create one. You can do this "
1377
  "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
1378
  msgstr ""
1379
 
 
1380
  #, php-format
1381
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
1382
  msgstr ""
1383
 
 
1384
  msgid ""
1385
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
1386
  "have already had a Project, then make sure you select the created project in "
1387
  "the top bar! )"
1388
  msgstr ""
1389
 
 
1390
  #, php-format
1391
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
1392
  msgstr ""
1393
 
 
1394
  #, php-format
1395
  msgid ""
1396
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
1398
  "account, then pick the \"%4$s\" option!"
1399
  msgstr ""
1400
 
 
1401
  #, php-format
1402
  msgid ""
1403
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
1405
  "%1$s!"
1406
  msgstr ""
1407
 
 
1408
  #, php-format
1409
  msgid ""
1410
  "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
1411
  "the name of the app asking for consent."
1412
  msgstr ""
1413
 
 
1414
  #, php-format
1415
  msgid ""
1416
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
1417
  "contact you with questions about their consent."
1418
  msgstr ""
1419
 
 
1420
  #, php-format
1421
  msgid ""
1422
  "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
1423
  "enter your domain name, probably: <b>%3$s</b> without subdomains!"
1424
  msgstr ""
1425
 
 
1426
  #, php-format
1427
  msgid ""
1428
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
1429
  "notify you about any changes to your project."
1430
  msgstr ""
1431
 
 
1432
  #, php-format
1433
  msgid ""
1434
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
1435
  "too!"
1436
  msgstr ""
1437
 
 
1438
  #, php-format
1439
  msgid ""
1440
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
1441
  "\"<b>%2$s</b>\" button in the top bar."
1442
  msgstr ""
1443
 
 
1444
  #, php-format
1445
  msgid "Choose the \"<b>%1$s</b>\" option."
1446
  msgstr ""
1447
 
 
1448
  #, php-format
1449
  msgid "Select the \"<b>%1$s</b>\" under Application type."
1450
  msgstr ""
1451
 
 
1452
  #, php-format
1453
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
1454
  msgstr ""
1455
 
 
1456
  #, php-format
1457
  msgid "Click on the \"<b>%1$s</b>\" button"
1458
  msgstr ""
1459
 
 
1460
  #, php-format
1461
  msgid ""
1462
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1465
  "from there."
1466
  msgstr ""
1467
 
 
 
 
 
 
 
 
 
1468
  msgid "Client ID"
1469
  msgstr ""
1470
 
 
 
 
 
 
 
 
1471
  msgid "Client Secret"
1472
  msgstr ""
1473
 
 
1474
  msgid "Select account on each login"
1475
  msgstr ""
1476
 
 
1477
  msgid ""
1478
  "Disable, when you don't want to see the account select prompt on each login."
1479
  msgstr ""
1480
 
 
1481
  msgid "Continue with <b>Google</b>"
1482
  msgstr ""
1483
 
 
1484
  msgid "Sign up with <b>Google</b>"
1485
  msgstr ""
1486
 
 
1487
  msgid "Link account with <b>Google</b>"
1488
  msgstr ""
1489
 
 
1490
  msgid "Unlink account from <b>Google</b>"
1491
  msgstr ""
1492
 
 
1493
  #, php-format
1494
  msgid "Required API: %1$s"
1495
  msgstr ""
1496
 
 
1497
  msgid ""
1498
  "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1499
  "like a gear.)"
1500
  msgstr ""
1501
 
 
1502
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1503
  msgstr ""
1504
 
 
 
1505
  #, php-format
1506
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1507
  msgstr ""
1508
 
 
1509
  #, php-format
1510
  msgid ""
1511
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1512
  msgstr ""
1513
 
 
1514
  msgid ""
1515
  "If you don't have a developer account yet, please apply one by filling all "
1516
  "the required details! This is required for the next steps!"
1517
  msgstr ""
1518
 
 
1519
  #, php-format
1520
  msgid ""
1521
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
1522
  "aren't already there!"
1523
  msgstr ""
1524
 
 
1525
  #, php-format
1526
  msgid "Click on \"<b>%s</b>\"!"
1527
  msgstr ""
1528
 
 
1529
  msgid ""
1530
  "Name your project, and go through the basic setup. You’ll need to select "
1531
  "your use case, give a description and enter a name for the App as well."
1532
  msgstr ""
1533
 
 
1534
  #, php-format
1535
  msgid "Click \"<b>%s</b>\"!"
1536
  msgstr ""
1537
 
 
1538
  #, php-format
1539
  msgid ""
1540
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
1542
  "press \"<b>Save Changes</b>\"."
1543
  msgstr ""
1544
 
 
1545
  #, php-format
1546
  msgid ""
1547
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
1548
  "\" section click on the name of your App."
1549
  msgstr ""
1550
 
 
1551
  #, php-format
1552
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1553
  msgstr ""
1554
 
 
1555
  #, php-format
1556
  msgid "Switch on the \"<b>%s</b>\" option."
1557
  msgstr ""
1558
 
 
1559
  #, php-format
1560
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
1561
  msgstr ""
1562
 
 
1563
  #, php-format
1564
  msgid ""
1565
  "If you want to get the email address as well, then don’t forget to enable "
1567
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1568
  msgstr ""
1569
 
 
1570
  #, php-format
1571
  msgid "Click on \"<b>%s</b>\"."
1572
  msgstr ""
1573
 
 
1574
  #, php-format
1575
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
1576
  msgstr ""
1577
 
 
 
1578
  msgid "API Key"
1579
  msgstr ""
1580
 
 
1581
  msgid "API secret key"
1582
  msgstr ""
1583
 
 
1584
  msgid "Profile image size"
1585
  msgstr ""
1586
 
 
1587
  msgid "Original"
1588
  msgstr ""
1589
 
 
1590
  msgid "Continue with <b>Twitter</b>"
1591
  msgstr ""
1592
 
 
1593
  msgid "Sign up with <b>Twitter</b>"
1594
  msgstr ""
1595
 
 
1596
  msgid "Link account with <b>Twitter</b>"
1597
  msgstr ""
1598
 
 
1599
  msgid "Unlink account from <b>Twitter</b>"
1600
  msgstr ""
1601
 
 
1602
  #, php-format
1603
  msgid "%s Buttons"
1604
  msgstr ""
1605
 
 
1606
  msgid "Title:"
1607
  msgstr ""
1608
 
 
1609
  msgid "Button style:"
1610
  msgstr ""
1611
 
 
1612
  msgid "Button align:"
1613
  msgstr ""
1614
 
 
1615
  msgid "Show link buttons"
1616
  msgstr ""
1617
 
 
1618
  msgid "Show unlink buttons"
1619
  msgstr ""
1620
 
 
1621
  msgid "Social login is not allowed with this role!"
1622
  msgstr ""
1623
 
 
1624
  msgid "Please enter a username."
1625
  msgstr ""
1626
 
 
1627
  msgid ""
1628
  "This username is invalid because it uses illegal characters. Please enter a "
1629
  "valid username."
1630
  msgstr ""
1631
 
 
1632
  msgid ""
1633
  "<strong>Error</strong>: This username is already registered. Please choose "
1634
  "another one."
1635
  msgstr ""
1636
 
 
1637
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
1638
  msgstr ""
1639
 
 
1640
  msgid "Username"
1641
  msgstr ""
1642
 
 
1643
  msgid "<strong>Error</strong>: Please enter an email address."
1644
  msgstr ""
1645
 
 
1646
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
1647
  msgstr ""
1648
 
 
1649
  msgid ""
1650
  "<strong>Error</strong>: This email is already registered. Please choose "
1651
  "another one."
1652
  msgstr ""
1653
 
 
1654
  msgid "Registration confirmation will be emailed to you."
1655
  msgstr ""
1656
 
 
1657
  msgid "<strong>Error</strong>: Please enter a password."
1658
  msgstr ""
1659
 
 
1660
  msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
1661
  msgstr ""
1662
 
 
1663
  msgid ""
1664
  "<strong>Error</strong>: Passwords don&#8217;t match. Please enter the same "
1665
  "password in both password fields."
1666
  msgstr ""
1667
 
 
1668
  msgid "Password"
1669
  msgstr ""
1670
 
 
1671
  msgid "Strength indicator"
1672
  msgstr ""
1673
 
 
1674
  msgid "Confirm use of weak password"
1675
  msgstr ""
1676
 
 
1677
  msgid "Confirm password"
1678
  msgstr ""
1679
 
 
1680
  #, php-format
1681
  msgid ""
1682
  "This email is already registered, please login in to your account to link "
1683
  "with %1$s."
1684
  msgstr ""
1685
 
 
1686
  #, php-format
1687
  msgid "Please install and activate %1$s to use the %2$s"
1688
  msgstr ""
1689
 
 
1690
  msgid "Network Activate"
1691
  msgstr ""
1692
 
 
1693
  msgid "Install now!"
1694
  msgstr ""
1695
 
 
1696
  msgid "Social Providers"
1697
  msgstr ""
1698
 
 
1699
  #, php-format
1700
  msgid ""
1701
  "The Facebook Sync data needs an approved %1$s and your App must use the "
1702
  "latest %2$s version!"
1703
  msgstr ""
1704
 
 
1705
  #, php-format
1706
  msgid ""
1707
  "Most of these information can only be retrieved, when the field is marked as "
1708
  "Public on the user's %s page!"
1709
  msgstr ""
1710
 
 
 
1711
  #, php-format
1712
  msgid "Visit %s"
1713
  msgstr ""
1714
 
 
 
1715
  msgid ""
1716
  "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
1717
  "select \"<b>Web Settings</b>\" option."
1718
  msgstr ""
1719
 
 
 
1720
  msgid "Click \"<b>Edit</b>\"."
1721
  msgstr ""
1722
 
 
 
1723
  msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
1724
  msgstr ""
1725
 
 
 
 
 
 
 
 
1726
  #, php-format
1727
  msgid ""
1728
  "To allow your visitors to log in with their %1$s account, first you must "
1732
  "%1$s App."
1733
  msgstr ""
1734
 
 
1735
  msgid ""
1736
  "If you don't have a Security Profile yet, you'll need to create one. You can "
1737
  "do this by clicking on the orange \"<b>Create a New Security Profile</b>\" "
1738
  "button on the left side."
1739
  msgstr ""
1740
 
 
1741
  msgid ""
1742
  "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
1743
  "\" and \"<b>Consent Privacy Notice URL</b>\"."
1744
  msgstr ""
1745
 
 
1746
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
1747
  msgstr ""
1748
 
 
1749
  #, php-format
1750
  msgid ""
1751
  "Fill \"<b>Allowed Origins</b>\" with the url of your homepage, probably: <b>"
1752
  "%s</b>"
1753
  msgstr ""
1754
 
 
 
1755
  msgid "When all fields are filled, click \"<b>Save</b>\"."
1756
  msgstr ""
1757
 
 
1758
  msgid ""
1759
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" at the "
1760
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
1761
  msgstr ""
1762
 
 
1763
  msgid "Continue with <b>Amazon</b>"
1764
  msgstr ""
1765
 
 
1766
  msgid "Sign up with <b>Amazon</b>"
1767
  msgstr ""
1768
 
 
1769
  msgid "Link account with <b>Amazon</b>"
1770
  msgstr ""
1771
 
 
1772
  msgid "Unlink account from <b>Amazon</b>"
1773
  msgstr ""
1774
 
 
1775
  msgid "Click on the name of your service."
1776
  msgstr ""
1777
 
 
1778
  msgid ""
1779
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
1780
  msgstr ""
1781
 
 
 
1782
  #, php-format
1783
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
1784
  msgstr ""
1785
 
 
 
1786
  #, php-format
1787
  msgid ""
1788
  "Fill the \"<b>Domains and Subdomains</b>\" field with your domain name "
1789
  "probably: <b>%s</b>"
1790
  msgstr ""
1791
 
 
 
1792
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
1793
  msgstr ""
1794
 
 
1795
  msgid ""
1796
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
1797
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
1798
  msgstr ""
1799
 
 
1800
  #, php-format
1801
  msgid ""
1802
  "To allow your visitors to log in with their %1$s account, first you must "
1806
  "\" according to your %1$s App."
1807
  msgstr ""
1808
 
 
1809
  msgid ""
1810
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
1811
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
1813
  "App!"
1814
  msgstr ""
1815
 
 
1816
  msgid ""
1817
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
1818
  "b>!"
1819
  msgstr ""
1820
 
 
1821
  msgid "1.) Create the associated App:"
1822
  msgstr ""
1823
 
 
1824
  #, php-format
1825
  msgid ""
1826
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
1827
  "option and click the \"Continue\" button."
1828
  msgstr ""
1829
 
 
1830
  #, php-format
1831
  msgid ""
1832
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
1833
  "\"<b>Continue</b>\" button."
1834
  msgstr ""
1835
 
 
1836
  msgid "Enter a \"<b>Description</b>\""
1837
  msgstr ""
1838
 
 
1839
  #, php-format
1840
  msgid ""
1841
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
1843
  "app at its end: <b>%s.nslapp</b>"
1844
  msgstr ""
1845
 
 
1846
  msgid ""
1847
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
1848
  "b>\" option."
1849
  msgstr ""
1850
 
 
1851
  msgid ""
1852
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
1853
  "\"<b>Register</b>\" button."
1854
  msgstr ""
1855
 
 
1856
  msgid "2.) Create the Key:"
1857
  msgstr ""
1858
 
 
1859
  #, php-format
1860
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
1861
  msgstr ""
1862
 
 
1863
  msgid "Enter a name in the <b>Key Name</b> field."
1864
  msgstr ""
1865
 
 
1866
  msgid ""
1867
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
1868
  "b>\"."
1869
  msgstr ""
1870
 
 
1871
  msgid ""
1872
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
1873
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
1874
  "\"."
1875
  msgstr ""
1876
 
 
1877
  msgid ""
1878
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
1879
  "\" button."
1880
  msgstr ""
1881
 
 
1882
  msgid "<b>Don't download the key yet!</b>"
1883
  msgstr ""
1884
 
 
1885
  msgid "3.) Create the Service:"
1886
  msgstr ""
1887
 
 
1888
  #, php-format
1889
  msgid ""
1890
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
1891
  "tab."
1892
  msgstr ""
1893
 
 
1894
  #, php-format
1895
  msgid ""
1896
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
1897
  "option and click the \"<b>Continue</b>\" button."
1898
  msgstr ""
1899
 
 
1900
  msgid "Enter a \"<b>Description</b>\"."
1901
  msgstr ""
1902
 
 
1903
  #, php-format
1904
  msgid ""
1905
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
1906
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
1907
  msgstr ""
1908
 
 
1909
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
1910
  msgstr ""
1911
 
 
1912
  msgid ""
1913
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
1914
  msgstr ""
1915
 
 
1916
  #, php-format
1917
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
1918
  msgstr ""
1919
 
 
1920
  msgid ""
1921
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
1922
  "b>\" button next to it."
1923
  msgstr ""
1924
 
 
1925
  msgid ""
1926
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
1927
  "App what you just created."
1928
  msgstr ""
1929
 
 
1930
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
1931
  msgstr ""
1932
 
 
1933
  msgid ""
1934
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
1935
  "button."
1936
  msgstr ""
1937
 
 
1938
  msgid "4.) Configure Nextend Social Login with your credentials:"
1939
  msgstr ""
1940
 
 
1941
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
1942
  msgstr ""
1943
 
 
1944
  msgid "<strong><u>Private Key ID:</u></strong>"
1945
  msgstr ""
1946
 
 
 
1947
  #, php-format
1948
  msgid "Navigate to: <b>%s</b>"
1949
  msgstr ""
1950
 
 
1951
  msgid "Click on the <b>name of your Key</b>."
1952
  msgstr ""
1953
 
 
1954
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
1955
  msgstr ""
1956
 
 
1957
  msgid "<strong><u>Private Key:</u></strong>"
1958
  msgstr ""
1959
 
 
1960
  msgid ""
1961
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
1962
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
1963
  "this file safe</b>!</u> "
1964
  msgstr ""
1965
 
 
1966
  msgid ""
1967
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
1968
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
1969
  "\" field of Nextend Social Login."
1970
  msgstr ""
1971
 
 
1972
  msgid "<strong><u>Team Identifier:</u></strong>"
1973
  msgstr ""
1974
 
 
1975
  msgid ""
1976
  "A 10 character long identifier, what you can find on the <b>top-right "
1977
  "corner, just under your name</b>."
1978
  msgstr ""
1979
 
 
1980
  msgid "<strong><u>Service Identifier:</u></strong>"
1981
  msgstr ""
1982
 
 
1983
  #, php-format
1984
  msgid ""
1985
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
1987
  "e.g.: <b>%s.nslclient</b>"
1988
  msgstr ""
1989
 
 
1990
  msgid ""
1991
  "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
1992
  "button."
1993
  msgstr ""
1994
 
 
1995
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
1996
  msgstr ""
1997
 
 
1998
  msgid ""
1999
  "When you need to change your credentials for some reason, then you must "
2000
  "delete the token, copy the new credentials and generate a new token!"
2001
  msgstr ""
2002
 
 
2003
  msgid "Delete credentials"
2004
  msgstr ""
2005
 
 
2006
  msgid "Private Key ID"
2007
  msgstr ""
2008
 
 
2009
  msgid "Private Key"
2010
  msgstr ""
2011
 
 
2012
  msgid "Team Identifier"
2013
  msgstr ""
2014
 
 
2015
  msgid "Service Identifier"
2016
  msgstr ""
2017
 
 
2018
  msgid "Generate Token"
2019
  msgstr ""
2020
 
 
2021
  msgid "Continue with <b>Apple</b>"
2022
  msgstr ""
2023
 
 
2024
  msgid "Sign up with <b>Apple</b>"
2025
  msgstr ""
2026
 
 
2027
  msgid "Link account with <b>Apple</b>"
2028
  msgstr ""
2029
 
 
2030
  msgid "Unlink account from <b>Apple</b>"
2031
  msgstr ""
2032
 
 
2033
  #, php-format
2034
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2035
  msgstr ""
2036
 
 
 
 
 
2037
  #, php-format
2038
  msgid "Token generation failed: %1$s"
2039
  msgstr ""
2040
 
 
2041
  msgid "Please check your credentials!"
2042
  msgstr ""
2043
 
 
2044
  msgid "Private key format is not valid!"
2045
  msgstr ""
2046
 
 
2047
  #, php-format
2048
  msgid ""
2049
  "%s detected that your Apple credentials have expired. Please delete the "
2050
  "current credentials and generate new one!"
2051
  msgstr ""
2052
 
 
2053
  msgid "Apple Credentials"
2054
  msgstr ""
2055
 
 
 
2056
  #, php-format
2057
  msgid "Click on the name of your %s App."
2058
  msgstr ""
2059
 
 
2060
  msgid ""
2061
  "Select the \"<b>Settings</b>\" tab and scroll down to the Authentication "
2062
  "section!"
2063
  msgstr ""
2064
 
 
 
 
2065
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2066
  msgstr ""
2067
 
 
2068
  msgid "Click on the \"<b>Save Changes</b>\" button."
2069
  msgstr ""
2070
 
 
2071
  msgid ""
2072
  "Click on the \"<b>Registering new application</b>\" button under the "
2073
  "Applications tab."
2074
  msgstr ""
2075
 
 
2076
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
2077
  msgstr ""
2078
 
 
2079
  #, php-format
2080
  msgid ""
2081
  "Fill \"<b>Website</b>\" with the url of your homepage, probably: <b>%s</b>"
2082
  msgstr ""
2083
 
 
2084
  msgid ""
2085
  "Complete the Human test and click the \"<b>Register my application</b>\" "
2086
  "button."
2087
  msgstr ""
2088
 
 
2089
  #, php-format
2090
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
2091
  msgstr ""
2092
 
 
2093
  msgid ""
2094
  "Select \"<b>Read only</b>\" as Default Access under the Authentication "
2095
  "section."
2096
  msgstr ""
2097
 
 
2098
  msgid "Click on the \"<b>Save Changes</b>\" button!"
2099
  msgstr ""
2100
 
 
2101
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
2102
  msgstr ""
2103
 
 
2104
  msgid ""
2105
  "Here you can see your \"<b>API Key</b>\" and \"<b>API Secret</b>\". These "
2106
  "will be needed in the plugin's settings."
2107
  msgstr ""
2108
 
 
2109
  msgid "API Secret"
2110
  msgstr ""
2111
 
 
2112
  msgid "Continue with <b>Disqus</b>"
2113
  msgstr ""
2114
 
 
2115
  msgid "Sign up with <b>Disqus</b>"
2116
  msgstr ""
2117
 
 
2118
  msgid "Link account with <b>Disqus</b>"
2119
  msgstr ""
2120
 
 
2121
  msgid "Unlink account from <b>Disqus</b>"
2122
  msgstr ""
2123
 
 
2124
  #, php-format
2125
  msgid "Click on the name of the App you configured %s with."
2126
  msgstr ""
2127
 
 
2128
  #, php-format
2129
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2130
  msgstr ""
2131
 
 
 
2132
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2133
  msgstr ""
2134
 
 
2135
  msgid "Press the <b>Update application</b> button to save the changes."
2136
  msgstr ""
2137
 
 
2138
  #, php-format
2139
  msgid ""
2140
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
2141
  "button."
2142
  msgstr ""
2143
 
 
2144
  msgid ""
2145
  "Enter a name into the <b>Application name</b> field. Users will see this "
2146
  "name, when they authorize your app at the OAuth consent screen!"
2147
  msgstr ""
2148
 
 
2149
  #, php-format
2150
  msgid ""
2151
  "Fill <b>Homepage URL</b> with the url of your homepage, probably: <b>%s</b>"
2152
  msgstr ""
2153
 
 
2154
  msgid ""
2155
  "In the <b>Description</b> field you should explain what this App will be "
2156
  "used for."
2157
  msgstr ""
2158
 
 
2159
  msgid "Click the <b>Register application</b> button."
2160
  msgstr ""
2161
 
 
2162
  msgid ""
2163
  "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the middle "
2164
  "of the page. These will be needed in the plugin's settings!"
2165
  msgstr ""
2166
 
 
2167
  #, php-format
2168
  msgid ""
2169
  "<b>Important note:</b> The email address is only retrievable, if there is a "
2170
  "public email address set at the %1$s profile page%2$s!"
2171
  msgstr ""
2172
 
 
2173
  msgid "Continue with <b>GitHub</b>"
2174
  msgstr ""
2175
 
 
2176
  msgid "Sign up with <b>GitHub</b>"
2177
  msgstr ""
2178
 
 
2179
  msgid "Link account with <b>GitHub</b>"
2180
  msgstr ""
2181
 
 
2182
  msgid "Unlink account from <b>GitHub</b>"
2183
  msgstr ""
2184
 
 
2185
  #, php-format
2186
  msgid "Navigate to your %s"
2187
  msgstr ""
2188
 
 
2189
  #, php-format
2190
  msgid "Select your %s App and click on the LINE Login section."
2191
  msgstr ""
2192
 
 
2193
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2194
  msgstr ""
2195
 
 
2196
  #, php-format
2197
  msgid ""
2198
  "Editing Live Apps are only possible with a %s. So please make sure you own "
2199
  "one!"
2200
  msgstr ""
2201
 
 
2202
  msgid "Click the \"<b>Create a new provider</b>\" button."
2203
  msgstr ""
2204
 
 
2205
  msgid ""
2206
  "Fill the \"<b>Provider name</b>\" field and click the \"<b>Create</b>\" "
2207
  "button."
2208
  msgstr ""
2209
 
 
2210
  msgid ""
2211
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
2212
  "channel</b>\" option."
2213
  msgstr ""
2214
 
 
2215
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
2216
  msgstr ""
2217
 
 
2218
  msgid ""
2219
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
2220
  "created."
2221
  msgstr ""
2222
 
 
2223
  msgid "Select your \"<b>Region</b>\"."
2224
  msgstr ""
2225
 
 
2226
  msgid ""
2227
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
2228
  "description</b>\". These will appear on your Consent Screen!"
2229
  msgstr ""
2230
 
 
2231
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
2232
  msgstr ""
2233
 
 
2234
  msgid ""
2235
  "Read and consent to the \"<b>LINE Developers Agreement</b>\", then click the "
2236
  "\"<b>Create</b>\" button."
2237
  msgstr ""
2238
 
 
2239
  msgid ""
2240
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
2241
  "near the \"<b>Email address permission</b>\" label."
2242
  msgstr ""
2243
 
 
2244
  msgid "Fill out the form, then click the \"<b>Submit</b>\" button."
2245
  msgstr ""
2246
 
 
2247
  msgid ""
2248
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
2249
  "section."
2250
  msgstr ""
2251
 
 
2252
  msgid ""
2253
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
2254
  "Channel!"
2255
  msgstr ""
2256
 
 
2257
  msgid ""
2258
  "Go to the \"<b>Basic settings</b>\" tab and find the necessary \"<b>Channel "
2259
  "ID</b>\" and \"<b>Channel secret</b>\" values and fill these fields in the "
2260
  "plugin settings!"
2261
  msgstr ""
2262
 
 
2263
  msgid "Channel ID"
2264
  msgstr ""
2265
 
 
2266
  msgid "Channel Secret"
2267
  msgstr ""
2268
 
 
2269
  msgid "Continue with <b>Line</b>"
2270
  msgstr ""
2271
 
 
2272
  msgid "Sign up with <b>Line</b>"
2273
  msgstr ""
2274
 
 
2275
  msgid "Link account with <b>Line</b>"
2276
  msgstr ""
2277
 
 
2278
  msgid "Unlink account from <b>Line</b>"
2279
  msgstr ""
2280
 
 
2281
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2282
  msgstr ""
2283
 
 
 
 
2284
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2285
  msgstr ""
2286
 
 
 
 
 
 
2287
  msgid "Click on \"<b>Update</b>\" to save the changes"
2288
  msgstr ""
2289
 
 
2290
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
2291
  msgstr ""
2292
 
 
2293
  msgid "Enter the name of your App to the \"App name\" field."
2294
  msgstr ""
2295
 
 
2296
  #, php-format
2297
  msgid ""
2298
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
2299
  "one yet, create new one at: %s"
2300
  msgstr ""
2301
 
 
2302
  msgid ""
2303
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
2304
  msgstr ""
2305
 
 
2306
  msgid ""
2307
  "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
2308
  "App</b>\" button!"
2309
  msgstr ""
2310
 
 
2311
  msgid ""
2312
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
2313
  "tab."
2314
  msgstr ""
2315
 
 
2316
  #, php-format
2317
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
2318
  msgstr ""
2319
 
 
2320
  msgid ""
2321
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
2322
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
2323
  "button."
2324
  msgstr ""
2325
 
 
2326
  msgid "Click on the \"<b>Auth</b>\" tab."
2327
  msgstr ""
2328
 
 
2329
  msgid ""
2330
  "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
2331
  "\"<b>Redirect URLs</b>\" field:"
2332
  msgstr ""
2333
 
 
2334
  msgid ""
2335
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" under "
2336
  "the Application credentials section, on the <b>Auth</b> tab."
2337
  msgstr ""
2338
 
 
2339
  msgid "Continue with <b>LinkedIn</b>"
2340
  msgstr ""
2341
 
 
2342
  msgid "Sign up with <b>LinkedIn</b>"
2343
  msgstr ""
2344
 
 
2345
  msgid "Link account with <b>LinkedIn</b>"
2346
  msgstr ""
2347
 
 
2348
  msgid "Unlink account from <b>LinkedIn</b>"
2349
  msgstr ""
2350
 
 
2351
  #, php-format
2352
  msgid "Log in with your %s credentials if you are not logged in yet."
2353
  msgstr ""
2354
 
 
 
2355
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
2356
  msgstr ""
2357
 
 
2358
  #, php-format
2359
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
2360
  msgstr ""
2361
 
 
2362
  msgid "Click on the link next to the Redirect URIs label."
2363
  msgstr ""
2364
 
 
2365
  msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2366
  msgstr ""
2367
 
 
2368
  #, php-format
2369
  msgid ""
2370
  "Log in with your %s credentials if you are not logged in or create a new "
2371
  "account."
2372
  msgstr ""
2373
 
 
2374
  msgid "Click on \"<b>New registration</b>\"."
2375
  msgstr ""
2376
 
 
2377
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2378
  msgstr ""
2379
 
 
2380
  msgid ""
2381
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2382
  "account types."
2383
  msgstr ""
2384
 
 
2385
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2386
  msgstr ""
2387
 
 
2388
  msgid "Create your App with the \"<b>Register</b>\" button."
2389
  msgstr ""
2390
 
 
2391
  msgid "You land on the \"<b>Overview</b>\" page."
2392
  msgstr ""
2393
 
 
2394
  msgid ""
2395
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
2396
  "(client) ID</b> in the plugin settings."
2397
  msgstr ""
2398
 
 
2399
  msgid ""
2400
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
2401
  "Client credentials label."
2402
  msgstr ""
2403
 
 
2404
  msgid "Click on \"<b>New client secret</b>\"."
2405
  msgstr ""
2406
 
 
2407
  msgid "Fill the \"<b>Description</b>\" field."
2408
  msgstr ""
2409
 
 
2410
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
2411
  msgstr ""
2412
 
 
2413
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
2414
  msgstr ""
2415
 
 
2416
  msgid ""
2417
  "Copy the \"<b>Client Secret Value</b>\", this will be the <b>Client secret</"
2418
  "b> in the plugin settings."
2419
  msgstr ""
2420
 
 
2421
  msgid "Application (client) ID"
2422
  msgstr ""
2423
 
 
2424
  msgid "Client secret"
2425
  msgstr ""
2426
 
 
2427
  msgid "Continue with <b>Microsoft</b>"
2428
  msgstr ""
2429
 
 
2430
  msgid "Sign up with <b>Microsoft</b>"
2431
  msgstr ""
2432
 
 
2433
  msgid "Link account with <b>Microsoft</b>"
2434
  msgstr ""
2435
 
 
2436
  msgid "Unlink account from <b>Microsoft</b>"
2437
  msgstr ""
2438
 
 
 
2439
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
2440
  msgstr ""
2441
 
 
2442
  #, php-format
2443
  msgid "Click on the name of your %s App, under the REST API apps section."
2444
  msgstr ""
2445
 
 
2446
  msgid ""
2447
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
2448
  "b>\" heading and click \"<b>Show</b>\"."
2449
  msgstr ""
2450
 
 
 
2451
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
2452
  msgstr ""
2453
 
 
2454
  msgid "Click on \"Save\""
2455
  msgstr ""
2456
 
 
2457
  #, php-format
2458
  msgid ""
2459
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
2460
  "step, if not click on the link!"
2461
  msgstr ""
2462
 
 
2463
  msgid "Click on Registration and create a Business account."
2464
  msgstr ""
2465
 
 
2466
  msgid "If you are done, follow the guide from the 5. step."
2467
  msgstr ""
2468
 
 
2469
  #, php-format
2470
  msgid "Log in with your %s credentials."
2471
  msgstr ""
2472
 
 
2473
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
2474
  msgstr ""
2475
 
 
2476
  msgid ""
2477
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
2478
  msgstr ""
2479
 
 
2480
  msgid ""
2481
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
2482
  "b>\" heading then click \"<b>Show</b>\"."
2483
  msgstr ""
2484
 
 
2485
  msgid ""
2486
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
2487
  "with PayPal</b>\"."
2488
  msgstr ""
2489
 
 
2490
  msgid ""
2491
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
2492
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
2493
  msgstr ""
2494
 
 
2495
  msgid "Tick \"<b>Full name</b>\"."
2496
  msgstr ""
2497
 
 
2498
  msgid ""
2499
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
2500
  "email address as well, <b>please submit your App for a review</b> after your "
2503
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
2504
  msgstr ""
2505
 
 
2506
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
2507
  msgstr ""
2508
 
 
2509
  msgid ""
2510
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
2511
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
2512
  "\"<b>Live</b>\" mode and not \"Sandbox\". )"
2513
  msgstr ""
2514
 
 
2515
  msgid "Secret"
2516
  msgstr ""
2517
 
 
2518
  msgid "Email scope"
2519
  msgstr ""
2520
 
 
2521
  msgid "Disable, when you have no rights for email address."
2522
  msgstr ""
2523
 
 
2524
  msgid "Continue with <b>PayPal</b>"
2525
  msgstr ""
2526
 
 
2527
  msgid "Sign up with <b>PayPal</b>"
2528
  msgstr ""
2529
 
 
2530
  msgid "Link account with <b>PayPal</b>"
2531
  msgstr ""
2532
 
 
2533
  msgid "Unlink account from <b>PayPal</b>"
2534
  msgstr ""
2535
 
 
2536
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
2537
  msgstr ""
2538
 
 
2539
  msgid "Go to the \"<b>Settings</b>\" menu"
2540
  msgstr ""
2541
 
 
 
2542
  msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
2543
  msgstr ""
2544
 
 
2545
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
2546
  msgstr ""
2547
 
 
2548
  msgid ""
2549
  "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
2550
  "platform."
2551
  msgstr ""
2552
 
 
2553
  #, php-format
2554
  msgid ""
2555
  "Fill \"<b>Website address</b>\" with the url of your homepage, probably: <b>"
2556
  "%s</b>"
2557
  msgstr ""
2558
 
 
2559
  #, php-format
2560
  msgid ""
2561
  "Fill the \"<b>Base domain</b>\" field with your domain, probably: <b>%s</b>"
2562
  msgstr ""
2563
 
 
2564
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
2565
  msgstr ""
2566
 
 
2567
  msgid ""
2568
  "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
2569
  "click <b>Save</b>."
2570
  msgstr ""
2571
 
 
2572
  msgid "Pick <b>Settings</b> at the left-hand menu "
2573
  msgstr ""
2574
 
 
2575
  msgid "<b>Save</b> your app"
2576
  msgstr ""
2577
 
 
2578
  msgid ""
2579
  "Find the necessary \"<b>App ID</b>\" and \"<b>Secure key</b>\" at the top of "
2580
  "the Settings page where you just hit the save button."
2581
  msgstr ""
2582
 
 
2583
  msgid "Secure key"
2584
  msgstr ""
2585
 
 
2586
  msgid "Continue with <b>VK</b>"
2587
  msgstr ""
2588
 
 
2589
  msgid "Sign up with <b>VK</b>"
2590
  msgstr ""
2591
 
 
2592
  msgid "Link account with <b>VK</b>"
2593
  msgstr ""
2594
 
 
2595
  msgid "Unlink account from <b>VK</b>"
2596
  msgstr ""
2597
 
 
2598
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
2599
  msgstr ""
2600
 
 
2601
  msgid "Click on the \"<b>Create New Application</b>\" button."
2602
  msgstr ""
2603
 
 
2604
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
2605
  msgstr ""
2606
 
 
2607
  #, php-format
2608
  msgid ""
2609
  "Fill \"<b>Website URL</b>\" with the url of your homepage, probably: <b>%s</"
2610
  "b>"
2611
  msgstr ""
2612
 
 
2613
  msgid "You can leave the \"Javascript Origins\" field blank!"
2614
  msgstr ""
2615
 
 
2616
  msgid "Complete the human verification test."
2617
  msgstr ""
2618
 
 
2619
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
2620
  msgstr ""
2621
 
 
2622
  msgid "Click the \"<b>Create</b>\" button!"
2623
  msgstr ""
2624
 
 
2625
  msgid ""
2626
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
2627
  "next to Editing!"
2628
  msgstr ""
2629
 
 
2630
  msgid ""
2631
  "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
2632
  "These will be needed in the plugin's settings."
2633
  msgstr ""
2634
 
 
2635
  msgid "Continue with <b>WordPress.com</b>"
2636
  msgstr ""
2637
 
 
2638
  msgid "Sign up with <b>WordPress.com</b>"
2639
  msgstr ""
2640
 
 
2641
  msgid "Link account with <b>WordPress.com</b>"
2642
  msgstr ""
2643
 
 
2644
  msgid "Unlink account from <b>WordPress.com</b>"
2645
  msgstr ""
2646
 
 
2647
  msgid "Click on the App which has its credentials associated with the plugin."
2648
  msgstr ""
2649
 
 
 
2650
  msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
2651
  msgstr ""
2652
 
 
2653
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
2654
  msgstr ""
2655
 
 
2656
  msgid ""
2657
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
2658
  "at \"<b>Application Type</b>\"."
2659
  msgstr ""
2660
 
 
2661
  msgid "Enter a \"<b>Description</b>\" for your app!"
2662
  msgstr ""
2663
 
 
2664
  #, php-format
2665
  msgid ""
2666
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
2667
  msgstr ""
2668
 
 
2669
  msgid ""
2670
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
2671
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
2672
  msgstr ""
2673
 
 
2674
  msgid "Click \"<b>Create App</b>\"."
2675
  msgstr ""
2676
 
 
2677
  msgid ""
2678
  "On the top of the page, you will find the necessary \"<b>Client ID</b>\" and "
2679
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
2680
  msgstr ""
2681
 
 
2682
  msgid "Continue with <b>Yahoo</b>"
2683
  msgstr ""
2684
 
 
2685
  msgid "Sign up with <b>Yahoo</b>"
2686
  msgstr ""
2687
 
 
2688
  msgid "Link account with <b>Yahoo</b>"
2689
  msgstr ""
2690
 
 
2691
  msgid "Unlink account from <b>Yahoo</b>"
2692
  msgstr ""
2693
 
 
2694
  #, php-format
2695
  msgid "Required permission: %1$s"
2696
  msgstr ""
2697
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2698
  msgid "OR"
2699
  msgstr "ODER"
2700
 
 
 
 
 
2701
  msgid "Social accounts"
2702
  msgstr ""
languages/nextend-facebook-connect-es_LA.mo CHANGED
Binary file
languages/nextend-facebook-connect-es_LA.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-09-08 13:29+0200\n"
5
- "PO-Revision-Date: 2021-09-08 13:29+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\n"
@@ -17,15 +17,13 @@ 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-Flags-xgettext: −−default-domain=nextend-facebook-connect\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
24
- #: nextend-facebook-connect/NSL/GDPR.php:34
25
  msgid "What personal data we collect and why we collect it"
26
  msgstr ""
27
 
28
- #: nextend-facebook-connect/NSL/GDPR.php:35
29
  #, php-format
30
  msgid ""
31
  "%1$s collects data when a visitor register, login or link the account with "
@@ -35,11 +33,9 @@ msgid ""
35
  "feature."
36
  msgstr ""
37
 
38
- #: nextend-facebook-connect/NSL/GDPR.php:37
39
  msgid "Who we share your data with"
40
  msgstr ""
41
 
42
- #: nextend-facebook-connect/NSL/GDPR.php:38
43
  #, php-format
44
  msgid ""
45
  "%1$s stores the personal data on your site and does not share it with anyone "
@@ -47,44 +43,36 @@ msgid ""
47
  "the social providers."
48
  msgstr ""
49
 
50
- #: nextend-facebook-connect/NSL/GDPR.php:40
51
  msgid "Does the plugin share personal data with third parties"
52
  msgstr ""
53
 
54
- #: nextend-facebook-connect/NSL/GDPR.php:41
55
  #, php-format
56
  msgid ""
57
  "%1$s use the access token what the social provider gave to communicate with "
58
  "the providers to verify account and securely access personal data."
59
  msgstr ""
60
 
61
- #: nextend-facebook-connect/NSL/GDPR.php:43
62
  msgid "How long we retain your data"
63
  msgstr ""
64
 
65
- #: nextend-facebook-connect/NSL/GDPR.php:44
66
  #, php-format
67
  msgid ""
68
  "%1$s removes the collected personal data when the user deleted from "
69
  "WordPress."
70
  msgstr ""
71
 
72
- #: nextend-facebook-connect/NSL/GDPR.php:46
73
  msgid "Does the plugin use personal data collected by others?"
74
  msgstr ""
75
 
76
- #: nextend-facebook-connect/NSL/GDPR.php:47
77
  #, php-format
78
  msgid ""
79
  "%1$s use the personal data collected by the social providers to create "
80
  "account on your site when the visitor authorize it."
81
  msgstr ""
82
 
83
- #: nextend-facebook-connect/NSL/GDPR.php:49
84
  msgid "Does the plugin store things in the browser?"
85
  msgstr ""
86
 
87
- #: nextend-facebook-connect/NSL/GDPR.php:50
88
  #, php-format
89
  msgid ""
90
  "Yes, %1$s must create a cookie for visitors who use the social login "
@@ -92,75 +80,49 @@ msgid ""
92
  "communication and to redirect the user back to the last location."
93
  msgstr ""
94
 
95
- #: nextend-facebook-connect/NSL/GDPR.php:52
96
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
97
  msgstr ""
98
 
99
- #: nextend-facebook-connect/NSL/GDPR.php:53
100
- #: nextend-facebook-connect/NSL/GDPR.php:56
101
  msgid "No"
102
  msgstr ""
103
 
104
- #: nextend-facebook-connect/NSL/GDPR.php:55
105
  msgid ""
106
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
107
  "third party?"
108
  msgstr ""
109
 
110
- #: nextend-facebook-connect/NSL/GDPR.php:99
111
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57
112
  msgid "User"
113
  msgstr "Usario"
114
 
115
- #: nextend-facebook-connect/admin/admin.php:206
116
  #, php-format
117
  msgid "%s needs json_decode function."
118
  msgstr "%s necesita la función json_decode."
119
 
120
- #: nextend-facebook-connect/admin/admin.php:206
121
  msgid "Please contact your server administrator and ask for solution!"
122
  msgstr ""
123
  "¡Por favor, ponte en contacto con el administrador de tu servidor y solicita "
124
  "una solución!"
125
 
126
- #: nextend-facebook-connect/admin/admin.php:250
127
- #: nextend-facebook-connect/admin/admin.php:280
128
  msgid "Settings saved."
129
  msgstr "Ajustes guardados."
130
 
131
- #: nextend-facebook-connect/admin/admin.php:259
132
  #, fuzzy
133
  #| msgid "The authorization was successful"
134
  msgid "The activation was successful"
135
  msgstr "La autorización fue exitosa"
136
 
137
- #: nextend-facebook-connect/admin/admin.php:270
138
  #, fuzzy
139
  #| msgid "Deauthorize completed."
140
  msgid "Deactivate completed."
141
  msgstr "Desautorizar completado."
142
 
143
- #: nextend-facebook-connect/admin/admin.php:449
144
- #: nextend-facebook-connect/admin/templates-provider/menu.php:15
145
- #: nextend-facebook-connect/admin/templates/providers.php:89
146
- #: nextend-facebook-connect/admin/templates/providers.php:101
147
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
148
  msgid "Settings"
149
  msgstr "Ajustes"
150
 
151
- #: nextend-facebook-connect/admin/admin.php:532
152
- #: nextend-facebook-connect/includes/oauth2.php:143
153
- #: nextend-facebook-connect/includes/oauth2.php:288
154
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
155
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
156
- #: nextend-social-login-pro/providers/apple/apple-client.php:87
157
- #: nextend-social-login-pro/providers/github/github-client.php:87
158
  #, php-format
159
  msgid "Unexpected response: %s"
160
  msgstr "Respuesta inesperada: %s"
161
 
162
- #: nextend-facebook-connect/admin/admin.php:593
163
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
164
  #, php-format
165
  msgid ""
166
  "%s detected that your login url changed. You must update the Oauth redirect "
@@ -169,16 +131,12 @@ msgstr ""
169
  "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI "
170
  "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas."
171
 
172
- #: nextend-facebook-connect/admin/admin.php:594
173
- #: nextend-social-login-pro/providers/apple/apple.php:294
174
  msgid "Fix Error"
175
  msgstr "Arreglar Error"
176
 
177
- #: nextend-facebook-connect/admin/admin.php:594
178
  msgid "Oauth Redirect URI"
179
  msgstr "URI de redireccionamiento de Oauth"
180
 
181
- #: nextend-facebook-connect/admin/admin.php:611
182
  #, php-format
183
  msgid ""
184
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -187,15 +145,12 @@ msgstr ""
187
  "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon "
188
  "para mostrar los botones de Social Login en el formulario de acceso de %2$s!"
189
 
190
- #: nextend-facebook-connect/admin/admin.php:612
191
  msgid "Dismiss and check Pro Addon"
192
  msgstr "Descartar y verificar Pro Addon"
193
 
194
- #: nextend-facebook-connect/admin/admin.php:612
195
  msgid "Dismiss"
196
  msgstr "Descartar"
197
 
198
- #: nextend-facebook-connect/admin/admin.php:618
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -203,19 +158,16 @@ msgid ""
203
  "work properly."
204
  msgstr ""
205
 
206
- #: nextend-facebook-connect/admin/admin.php:619
207
  #, fuzzy
208
  #| msgid "Fix Error"
209
  msgid "Fix now"
210
  msgstr "Arreglar Error"
211
 
212
- #: nextend-facebook-connect/admin/admin.php:643
213
  #, fuzzy
214
  #| msgid "Activate Pro Addon"
215
  msgid "Activate your Pro Addon"
216
  msgstr "Activar Pro Addon"
217
 
218
- #: nextend-facebook-connect/admin/admin.php:644
219
  #, fuzzy
220
  #| msgid ""
221
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
@@ -230,26 +182,20 @@ msgstr ""
230
  "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a "
231
  "continuación y luego seleccionar la compra relacionada."
232
 
233
- #: nextend-facebook-connect/admin/admin.php:649
234
- #: nextend-social-login-pro/nextend-social-login-pro.php:110
235
  msgid "Activate"
236
  msgstr "Activar"
237
 
238
- #: nextend-facebook-connect/admin/admin.php:747
239
  msgid "License key"
240
  msgstr "Clave de licencia"
241
 
242
- #: nextend-facebook-connect/admin/admin.php:770
243
  msgid "OAuth proxy page"
244
  msgstr ""
245
 
246
- #: nextend-facebook-connect/admin/admin.php:773
247
  #, fuzzy
248
  #| msgid "Register layout"
249
  msgid "Register flow page"
250
  msgstr "Diseño de Registro"
251
 
252
- #: nextend-facebook-connect/admin/admin.php:780
253
  #, php-format
254
  msgid ""
255
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
@@ -257,373 +203,215 @@ msgid ""
257
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
258
  msgstr ""
259
 
260
- #: nextend-facebook-connect/admin/interim.php:12
261
- #: nextend-facebook-connect/admin/interim.php:23
262
  msgid "You have logged in successfully."
263
  msgstr "Has ingresado exitosamente."
264
 
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
266
  msgid "Login label"
267
  msgstr "Etiqueta de acceso"
268
 
269
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
270
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
271
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
273
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
274
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
275
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
276
  msgid "Reset to default"
277
  msgstr "Restablecer los valores predeterminados"
278
 
279
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
280
  #, fuzzy
281
  #| msgid "Register layout"
282
  msgid "Register label"
283
  msgstr "Diseño de Registro"
284
 
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
286
  msgid "Link label"
287
  msgstr "Etiqueta de enlace"
288
 
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
290
  msgid "Unlink label"
291
  msgstr "Etiqueta de desenlazar"
292
 
293
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
294
  msgid "Default button"
295
  msgstr "Botón predeterminado"
296
 
297
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
298
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
299
  msgid "Use custom button"
300
  msgstr "Usa botón personalizado"
301
 
302
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
303
  #, php-format
304
  msgid "Use the %s in your custom button's code to make the label show up."
305
  msgstr ""
306
  "Use el %s en el código de tu botón personalizado para que aparezca la "
307
  "etiqueta."
308
 
309
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
310
  msgid "Icon button"
311
  msgstr "Botón de icono"
312
 
313
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
314
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
315
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
316
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:220
317
- #: nextend-facebook-connect/admin/templates/settings/comment.php:79
318
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8
319
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:127
320
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8
321
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:167
322
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:198
323
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
324
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:198
325
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:179
326
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:347
327
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
328
- #: nextend-facebook-connect/providers/google/admin/settings.php:62
329
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
330
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
331
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
332
- #: nextend-social-login-pro/providers/github/admin/settings.php:48
333
- #: nextend-social-login-pro/providers/line/admin/settings.php:47
334
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:57
335
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:48
336
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:60
337
- #: nextend-social-login-pro/providers/vk/admin/settings.php:48
338
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
339
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47
340
  msgid "Save Changes"
341
  msgstr "Guardar Cambios"
342
 
343
- #: nextend-facebook-connect/admin/templates-provider/menu.php:13
344
- #: nextend-facebook-connect/admin/templates/providers.php:69
345
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
346
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
347
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
348
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
349
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28
350
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
351
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:8
352
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:8
353
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
354
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:8
355
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
356
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
357
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
358
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8
359
  msgid "Getting Started"
360
  msgstr "Empezando"
361
 
362
- #: nextend-facebook-connect/admin/templates-provider/menu.php:17
363
  msgid "Buttons"
364
  msgstr "Botones"
365
 
366
- #: nextend-facebook-connect/admin/templates-provider/menu.php:21
367
  msgid "Sync data"
368
  msgstr "Sincronizar datos"
369
 
370
- #: nextend-facebook-connect/admin/templates-provider/menu.php:24
371
  msgid "Usage"
372
  msgstr "Uso"
373
 
374
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11
375
  msgid "Other settings"
376
  msgstr "Otros ajustes"
377
 
378
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16
379
  msgid "Username prefix on register"
380
  msgstr "Prefijo del usuario cuando se registra"
381
 
382
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
383
  msgid "Fallback username prefix on register"
384
  msgstr "Prefijo del usuario de reservo cuando se registra"
385
 
386
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27
387
  #, fuzzy
388
  #| msgid "Used when username is invalid"
389
  msgid "Used when username is invalid or not stored"
390
  msgstr "Usado cuando el nombre del usuario no es válido"
391
 
392
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32
393
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
394
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
395
  msgid "Terms and conditions"
396
  msgstr ""
397
 
398
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
399
  #, php-format
400
  msgid "Override global \"%1$s\""
401
  msgstr ""
402
 
403
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
404
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12
405
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12
406
  msgid "PRO settings"
407
  msgstr "Ajustes PRO"
408
 
409
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28
410
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32
411
  msgid "Ask E-mail on registration"
412
  msgstr "Preguntar E-mail durante el registro"
413
 
414
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35
415
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69
416
  msgid "Never"
417
  msgstr "Nunca"
418
 
419
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38
420
  msgid "When email is not provided or empty"
421
  msgstr "Cuando el email no se proporciona o está vacío"
422
 
423
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41
424
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
425
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72
426
  msgid "Always"
427
  msgstr "Siempre"
428
 
429
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46
430
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50
431
  msgid "Ask Username on registration"
432
  msgstr "Preguntar Usuario durante el registro"
433
 
434
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53
435
  msgid "Never, generate automatically"
436
  msgstr "Nunca, generar automáticamente"
437
 
438
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
439
  msgid "When username is empty or invalid"
440
  msgstr "Cuando el usuario está vacío o no es válido"
441
 
442
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
443
  msgid "Ask Password on registration"
444
  msgstr "Preguntar Contraseña al registrarse"
445
 
446
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
447
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
448
  msgid "Automatically connect the existing account upon registration"
449
  msgstr "Conectar automáticamente la cuenta existente al registrarse"
450
 
451
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
452
- #: nextend-facebook-connect/admin/templates/providers.php:47
453
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:86
454
- #: nextend-facebook-connect/admin/templates/settings/general.php:48
455
- #: nextend-facebook-connect/admin/templates/settings/general.php:213
456
- #: nextend-facebook-connect/admin/templates/settings/general.php:228
457
- #: nextend-facebook-connect/admin/templates/settings/general.php:246
458
- #: nextend-facebook-connect/admin/templates/settings/general.php:261
459
- #: nextend-facebook-connect/includes/provider-admin.php:218
460
  msgid "Disabled"
461
  msgstr "Desactivado"
462
 
463
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88
464
  msgid "Automatic, based on email address"
465
  msgstr "Automático, basado en la dirección de email"
466
 
467
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93
468
  msgid "Disable login for the selected roles"
469
  msgstr "Deshabilitar inicio de sesión para los roles seleccionados"
470
 
471
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113
472
  msgid "Default roles for user who registered with this provider"
473
  msgstr ""
474
  "Roles predeterminados para el usuario que se registró con este proveedor"
475
 
476
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
477
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50
478
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:76
479
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:143
480
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:168
481
- #: nextend-facebook-connect/admin/templates/settings/comment.php:39
482
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35
483
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97
484
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:39
485
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:111
486
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
487
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
488
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
489
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
490
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
491
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
492
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
493
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:199
494
- #: nextend-facebook-connect/widget.php:42
495
  msgid "Default"
496
  msgstr "Predeterminado"
497
 
498
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
499
  msgid "Register"
500
  msgstr "Registrarse"
501
 
502
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58
503
  msgid "Login"
504
  msgstr "Iniciar Sesión"
505
 
506
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66
507
  msgid "Link"
508
  msgstr "Enlace"
509
 
510
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84
511
  msgid "Store in meta key"
512
  msgstr "Guardar en clave meta"
513
 
514
- #: nextend-facebook-connect/admin/templates-provider/usage.php:9
515
  msgid "Shortcode"
516
  msgstr "Código corto"
517
 
518
- #: nextend-facebook-connect/admin/templates-provider/usage.php:12
519
  #, fuzzy
520
  #| msgid "Import"
521
  msgid "Important!"
522
  msgstr "Importar"
523
 
524
- #: nextend-facebook-connect/admin/templates-provider/usage.php:13
525
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
526
  msgstr ""
527
 
528
- #: nextend-facebook-connect/admin/templates-provider/usage.php:14
529
  msgid "See the full list of shortcode parameters."
530
  msgstr ""
531
 
532
- #: nextend-facebook-connect/admin/templates-provider/usage.php:31
533
  msgid "Simple link"
534
  msgstr "Enlace simple"
535
 
536
- #: nextend-facebook-connect/admin/templates-provider/usage.php:34
537
  msgid "Click here to login or register"
538
  msgstr "Haz clic aquí para iniciar sesión o registrarse"
539
 
540
- #: nextend-facebook-connect/admin/templates-provider/usage.php:39
541
  msgid "Image button"
542
  msgstr "Botón de imagen"
543
 
544
- #: nextend-facebook-connect/admin/templates-provider/usage.php:42
545
  msgid "Image url"
546
  msgstr "URL de imagen"
547
 
548
- #: nextend-facebook-connect/admin/templates/debug.php:7
549
- #: nextend-facebook-connect/admin/templates/header.php:20
550
  #, fuzzy
551
  #| msgid "Debug mode"
552
  msgid "Debug"
553
  msgstr "Modo de depuración"
554
 
555
- #: nextend-facebook-connect/admin/templates/debug.php:41
556
  msgid "Test network connection with providers"
557
  msgstr ""
558
 
559
- #: nextend-facebook-connect/admin/templates/debug.php:48
560
  msgid "You don't have cURL support, please enable it in php.ini!"
561
  msgstr ""
562
 
563
- #: nextend-facebook-connect/admin/templates/debug.php:58
564
  #, php-format
565
  msgid "Test %1$s connection"
566
  msgstr ""
567
 
568
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
569
  msgid "Fix Oauth Redirect URIs"
570
  msgstr "Arregla los URI de redireccionamiento de Oauth"
571
 
572
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13
573
  msgid "Every Oauth Redirect URI seems fine"
574
  msgstr "Cada URI de redireccionamiento de Oauth está bien"
575
 
576
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32
577
  msgid "Got it"
578
  msgstr "Entiendo"
579
 
580
- #: nextend-facebook-connect/admin/templates/global-settings.php:28
581
- #: nextend-facebook-connect/admin/templates/menu.php:8
582
  msgid "Global Settings"
583
  msgstr "Ajustes Globales"
584
 
585
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
586
  msgid "General"
587
  msgstr "General"
588
 
589
- #: nextend-facebook-connect/admin/templates/global-settings.php:33
590
  msgid "Privacy"
591
  msgstr ""
592
 
593
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
594
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
595
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
596
  msgid "Login Form"
597
  msgstr "Formulario de Acceso"
598
 
599
- #: nextend-facebook-connect/admin/templates/global-settings.php:39
600
  msgid "Comment"
601
  msgstr "Comentario"
602
 
603
- #: nextend-facebook-connect/admin/templates/header.php:14
604
  msgid "Docs"
605
  msgstr "Documentos"
606
 
607
- #: nextend-facebook-connect/admin/templates/header.php:17
608
  msgid "Support"
609
  msgstr "Apoyo"
610
 
611
- #: nextend-facebook-connect/admin/templates/header.php:23
612
- #: nextend-facebook-connect/admin/templates/menu.php:12
613
  msgid "Pro Addon"
614
  msgstr "Pro Addon"
615
 
616
- #: nextend-facebook-connect/admin/templates/menu.php:6
617
  msgid "Providers"
618
  msgstr "Proveedores"
619
 
620
- #: nextend-facebook-connect/admin/templates/pro-addon.php:13
621
- #: nextend-social-login-pro/class-provider-extension.php:213
622
- #: nextend-social-login-pro/class-provider-extension.php:216
623
  msgid "Error"
624
  msgstr "Error"
625
 
626
- #: nextend-facebook-connect/admin/templates/pro-addon.php:14
627
  msgid ""
628
  "You don’t have sufficient permissions to install and activate plugins. "
629
  "Please contact your site’s administrator!"
@@ -631,13 +419,9 @@ msgstr ""
631
  "No tienes suficientes permisos para instalar y activar plugins. ¡Por favor, "
632
  "ponte en contacto con el administrador de tu sitio!"
633
 
634
- #: nextend-facebook-connect/admin/templates/pro-addon.php:22
635
- #: nextend-facebook-connect/admin/templates/pro-addon.php:32
636
- #: nextend-facebook-connect/admin/templates/pro.php:34
637
  msgid "Activate Pro Addon"
638
  msgstr "Activar Pro Addon"
639
 
640
- #: nextend-facebook-connect/admin/templates/pro-addon.php:23
641
  msgid ""
642
  "Pro Addon is installed but not activated. To be able to use the Pro "
643
  "features, you need to activate it."
@@ -645,45 +429,34 @@ msgstr ""
645
  "Pro Addon está instalado pero no activado. Para poder usar las funciones "
646
  "Pro, debes activarlo."
647
 
648
- #: nextend-facebook-connect/admin/templates/pro-addon.php:37
649
- #: nextend-facebook-connect/admin/templates/pro-addon.php:142
650
  #, fuzzy
651
  #| msgid "Activate Pro Addon"
652
  msgid "Deactivate Pro Addon"
653
  msgstr "Activar Pro Addon"
654
 
655
- #: nextend-facebook-connect/admin/templates/pro-addon.php:48
656
- #: nextend-facebook-connect/admin/templates/pro.php:43
657
  msgid "Pro Addon is not installed"
658
  msgstr "Pro Addon no está instalado"
659
 
660
- #: nextend-facebook-connect/admin/templates/pro-addon.php:50
661
  msgid ""
662
  "To access the Pro features, you need to install and activate the Pro Addon."
663
  msgstr ""
664
  "Para acceder a las funciones Pro, tienes que instalar y activar el Pro Addon."
665
 
666
- #: nextend-facebook-connect/admin/templates/pro-addon.php:59
667
  #, php-format
668
  msgid "Install %s now"
669
  msgstr "Instalar %s ahora"
670
 
671
- #: nextend-facebook-connect/admin/templates/pro-addon.php:60
672
- #: nextend-facebook-connect/admin/templates/pro.php:47
673
  msgid "Install Pro Addon"
674
  msgstr "Instalar Pro Addon"
675
 
676
- #: nextend-facebook-connect/admin/templates/pro-addon.php:94
677
  msgid "Activating..."
678
  msgstr "Activando..."
679
 
680
- #: nextend-facebook-connect/admin/templates/pro-addon.php:118
681
  #, fuzzy
682
  #| msgid "Not Available"
683
  msgid "Not compatible!"
684
  msgstr "No Disponible"
685
 
686
- #: nextend-facebook-connect/admin/templates/pro-addon.php:119
687
  #, fuzzy, php-format
688
  #| msgid "Please update %1$s to version %2$s or newer."
689
  msgid ""
@@ -691,17 +464,14 @@ msgid ""
691
  "newer."
692
  msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
693
 
694
- #: nextend-facebook-connect/admin/templates/pro-addon.php:123
695
  #, fuzzy
696
  #| msgid "Activate Pro Addon"
697
  msgid "Update Pro Addon"
698
  msgstr "Activar Pro Addon"
699
 
700
- #: nextend-facebook-connect/admin/templates/pro-addon.php:133
701
  msgid "Pro Addon is installed and activated"
702
  msgstr "Pro Addon está instalado y activado"
703
 
704
- #: nextend-facebook-connect/admin/templates/pro-addon.php:135
705
  #, fuzzy
706
  #| msgid ""
707
  #| "You installed and activated the Pro Addon. If you don’t want to use it "
@@ -713,11 +483,9 @@ msgstr ""
713
  "Instalaste y activaste el Pro Addon. Si no deseas volver a utilizarlo, "
714
  "puedes eliminar la autorización utilizando el siguiente botón."
715
 
716
- #: nextend-facebook-connect/admin/templates/pro.php:8
717
  msgid "Get Pro Addon to unlock more features"
718
  msgstr "Compra Pro Addon para desbloquear más funciones"
719
 
720
- #: nextend-facebook-connect/admin/templates/pro.php:9
721
  #, php-format
722
  msgid ""
723
  "The features below are available in %s Pro Addon. Get it today and tweak the "
@@ -726,7 +494,6 @@ msgstr ""
726
  "Las siguientes funciones están disponibles en %s Pro Addon. Compralo hoy y "
727
  "modifica unas configuraciones increíbles."
728
 
729
- #: nextend-facebook-connect/admin/templates/pro.php:10
730
  msgid ""
731
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
732
  "you can purchase it using the button below."
@@ -734,20 +501,15 @@ msgstr ""
734
  "Si ya tienes una licencia, puedes Autorizar tu Pro Addon. De lo contrario, "
735
  "puedes comprarlo usando el botón de abajo."
736
 
737
- #: nextend-facebook-connect/admin/templates/pro.php:14
738
  msgid "Buy Pro Addon"
739
  msgstr "Compra Pro Addon"
740
 
741
- #: nextend-facebook-connect/admin/templates/pro.php:16
742
  msgid "Authorize Pro Addon"
743
  msgstr "Autoriza Pro Addon"
744
 
745
- #: nextend-facebook-connect/admin/templates/pro.php:25
746
  msgid "Pro Addon is not activated"
747
  msgstr "Pro Addon no está activado"
748
 
749
- #: nextend-facebook-connect/admin/templates/pro.php:26
750
- #: nextend-facebook-connect/admin/templates/pro.php:44
751
  #, fuzzy
752
  #| msgid ""
753
  #| "To be able to use the Pro features, you need to install and activate the "
@@ -759,7 +521,6 @@ msgstr ""
759
  "Para poder utilizar las funciones Pro, debes instalar y activar el Nextend "
760
  "Social Connect Pro Addon."
761
 
762
- #: nextend-facebook-connect/admin/templates/providers.php:8
763
  #, php-format
764
  msgid ""
765
  "%1$s detected that you have providers configured but none of them are "
@@ -767,127 +528,89 @@ msgid ""
767
  "one provider enabled!"
768
  msgstr ""
769
 
770
- #: nextend-facebook-connect/admin/templates/providers.php:38
771
  msgid "Not Available"
772
  msgstr "No Disponible"
773
 
774
- #: nextend-facebook-connect/admin/templates/providers.php:41
775
  msgid "Not Configured"
776
  msgstr "No Configurado"
777
 
778
- #: nextend-facebook-connect/admin/templates/providers.php:44
779
  msgid "Not Verified"
780
  msgstr "No Verificado"
781
 
782
- #: nextend-facebook-connect/admin/templates/providers.php:50
783
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:89
784
- #: nextend-facebook-connect/admin/templates/settings/general.php:51
785
- #: nextend-facebook-connect/admin/templates/settings/general.php:216
786
- #: nextend-facebook-connect/admin/templates/settings/general.php:231
787
- #: nextend-facebook-connect/admin/templates/settings/general.php:249
788
- #: nextend-facebook-connect/admin/templates/settings/general.php:264
789
- #: nextend-facebook-connect/includes/provider-admin.php:221
790
- #: nextend-facebook-connect/providers/google/admin/settings.php:53
791
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
792
  msgid "Enabled"
793
  msgstr "Habilitado"
794
 
795
- #: nextend-facebook-connect/admin/templates/providers.php:62
796
  msgid "Upgrade Now"
797
  msgstr "Actualizar Ahora"
798
 
799
- #: nextend-facebook-connect/admin/templates/providers.php:77
800
- #: nextend-facebook-connect/includes/provider-admin.php:205
801
  msgid "Verify Settings"
802
  msgstr "Verificar Configuración"
803
 
804
- #: nextend-facebook-connect/admin/templates/providers.php:85
805
- #: nextend-facebook-connect/includes/provider-admin.php:250
806
  msgid "Enable"
807
  msgstr "Habilitar"
808
 
809
- #: nextend-facebook-connect/admin/templates/providers.php:97
810
- #: nextend-facebook-connect/includes/provider-admin.php:258
811
  msgid "Disable"
812
  msgstr "Inhabilitar"
813
 
814
- #: nextend-facebook-connect/admin/templates/providers.php:122
815
  msgid "Stay Updated"
816
  msgstr ""
817
 
818
- #: nextend-facebook-connect/admin/templates/providers.php:123
819
  msgid ""
820
  "Receive info on the latest plugin updates and social provider related "
821
  "changes."
822
  msgstr ""
823
 
824
- #: nextend-facebook-connect/admin/templates/providers.php:124
825
  #, fuzzy
826
  #| msgid "Please enter an email address."
827
  msgid "Enter your email address"
828
  msgstr "Por favor introduce un email."
829
 
830
- #: nextend-facebook-connect/admin/templates/providers.php:128
831
  msgid "Subscribe"
832
  msgstr ""
833
 
834
- #: nextend-facebook-connect/admin/templates/providers.php:144
835
  msgid "Saving..."
836
  msgstr "Guardando..."
837
 
838
- #: nextend-facebook-connect/admin/templates/providers.php:145
839
  msgid "Saving failed"
840
  msgstr "No se pudo guardar"
841
 
842
- #: nextend-facebook-connect/admin/templates/providers.php:146
843
  msgid "Order Saved"
844
  msgstr "Orden Guardado"
845
 
846
- #: nextend-facebook-connect/admin/templates/providers.php:215
847
  msgid "Successfully subscribed!"
848
  msgstr ""
849
 
850
- #: nextend-facebook-connect/admin/templates/providers.php:215
851
  msgid ""
852
  "We'll be bringing you all the latest news and updates about Social Login - "
853
  "right to your inbox."
854
  msgstr ""
855
 
856
- #: nextend-facebook-connect/admin/templates/providers.php:222
857
  #, fuzzy
858
  #| msgid "Please enter an email address."
859
  msgid "The entered email address is invalid!"
860
  msgstr "Por favor introduce un email."
861
 
862
- #: nextend-facebook-connect/admin/templates/review.php:14
863
  msgid "Rate your experience!"
864
  msgstr "¡Califica tu experiencia!"
865
 
866
- #: nextend-facebook-connect/admin/templates/review.php:15
867
  msgid "Hated it"
868
  msgstr "Lo odié"
869
 
870
- #: nextend-facebook-connect/admin/templates/review.php:16
871
  msgid "Disliked it"
872
  msgstr "No me gustó"
873
 
874
- #: nextend-facebook-connect/admin/templates/review.php:17
875
  msgid "It was ok"
876
  msgstr "Estuvo bien"
877
 
878
- #: nextend-facebook-connect/admin/templates/review.php:18
879
  msgid "Liked it"
880
  msgstr "Me gustó"
881
 
882
- #: nextend-facebook-connect/admin/templates/review.php:19
883
  msgid "Loved it"
884
  msgstr "Me encantó"
885
 
886
- #: nextend-facebook-connect/admin/templates/review.php:31
887
  msgid "Please Leave a Review"
888
  msgstr "Por Favor Deja una Evaluación"
889
 
890
- #: nextend-facebook-connect/admin/templates/review.php:32
891
  msgid ""
892
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
893
  "please leave us a review. It will be a tremendous help for us!"
@@ -895,521 +618,308 @@ msgstr ""
895
  "Si estás satisfecho con <b>Nextend Social Login</b> y tienes un minuto, por "
896
  "favor déjanos una evaluación. ¡Será una gran ayuda para nosotros!"
897
 
898
- #: nextend-facebook-connect/admin/templates/review.php:34
899
  msgid "Ok, you deserve it"
900
  msgstr "Ok, lo mereces"
901
 
902
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
903
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:90
904
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:102
905
  #, fuzzy
906
  #| msgid "Register Form"
907
  msgid "Register form"
908
  msgstr "Formulario de Registro"
909
 
910
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
911
  msgid "No Connect button"
912
  msgstr "Botón de No Conexión"
913
 
914
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
915
  msgid "Connect button before register"
916
  msgstr "Conectar botón antes de registrarse"
917
 
918
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
919
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
920
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
921
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:27
922
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:99
923
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171
924
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
925
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
926
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171
927
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
928
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
929
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:111
930
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
931
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:169
932
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
933
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
934
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
935
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:248
936
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:299
937
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:304
938
  msgid "Action:"
939
  msgstr "Acción:"
940
 
941
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
942
  msgid "Connect button before account details"
943
  msgstr "Conectar botón antes de los detalles de cuenta"
944
 
945
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
946
  msgid "Connect button after register"
947
  msgstr "Conectar botón después de registrarse"
948
 
949
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44
950
  #, fuzzy
951
  #| msgid "Register form button style"
952
  msgid "Register button style"
953
  msgstr "Estilo de botón de formulario de Registro integrado"
954
 
955
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56
956
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:149
957
- #: nextend-facebook-connect/admin/templates/settings/comment.php:45
958
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41
959
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:103
960
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:45
961
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:117
962
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
963
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:117
964
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
965
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:114
966
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
967
  msgid "Fullwidth"
968
  msgstr ""
969
 
970
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:62
971
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155
972
- #: nextend-facebook-connect/admin/templates/settings/comment.php:51
973
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:47
974
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:109
975
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:51
976
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:123
977
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:51
978
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:123
979
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:63
980
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:120
981
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:36
982
- #: nextend-facebook-connect/widget.php:47
983
  msgid "Icon"
984
  msgstr "Icono"
985
 
986
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:70
987
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
988
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
989
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
990
  msgid "Register layout"
991
  msgstr "Diseño de Registro"
992
 
993
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:82
994
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:174
995
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60
996
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122
997
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:64
998
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:136
999
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1000
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1001
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1002
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1003
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1004
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1005
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:211
1006
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:261
1007
  msgid "Below"
1008
  msgstr "Abajo"
1009
 
1010
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88
1011
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:180
1012
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66
1013
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128
1014
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:70
1015
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:142
1016
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1017
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1018
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1019
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1020
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1021
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1022
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1023
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:267
1024
  msgid "Below with separator"
1025
  msgstr "Abajo con separación"
1026
 
1027
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:94
1028
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:186
1029
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78
1030
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:134
1031
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
1032
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:148
1033
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1034
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:148
1035
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1036
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:145
1037
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1038
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1039
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
1040
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:273
1041
  msgid "Above"
1042
  msgstr "Encima"
1043
 
1044
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:100
1045
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:192
1046
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:84
1047
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140
1048
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:82
1049
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:154
1050
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:82
1051
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:154
1052
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:94
1053
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:151
1054
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
1055
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:152
1056
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:229
1057
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:279
1058
  msgid "Above with separator"
1059
  msgstr "Encima con separación"
1060
 
1061
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:108
1062
  #, fuzzy
1063
  #| msgid "Login Form"
1064
  msgid "Sidebar Login form"
1065
  msgstr "Formulario de Acceso"
1066
 
1067
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:113
1068
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:129
1069
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
1070
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
1071
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
1072
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:26
1073
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:39
1074
  msgid "Hide login buttons"
1075
  msgstr "Esconder botones de iniciar sesión"
1076
 
1077
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:116
1078
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:132
1079
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
1080
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
1081
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
1082
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:23
1083
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:36
1084
- #: nextend-facebook-connect/widget.php:76
1085
  msgid "Show login buttons"
1086
  msgstr "Mostrar botones de iniciar sesión"
1087
 
1088
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:117
1089
  msgid ""
1090
  "Some themes that use BuddyPress, display the social buttons twice in the "
1091
  "same login form. This option can disable the one for: "
1092
  "<b>bp_sidebar_login_form action</b>. "
1093
  msgstr ""
1094
 
1095
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124
1096
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1097
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1098
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
1099
  #, fuzzy
1100
  #| msgid "Login Form"
1101
  msgid "Login form"
1102
  msgstr "Formulario de Acceso"
1103
 
1104
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:137
1105
  #, fuzzy
1106
  #| msgid "Login form button style"
1107
  msgid "Login button style"
1108
  msgstr "Estilo de botón para iniciar sesión"
1109
 
1110
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162
1111
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54
1112
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:58
1113
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1114
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1115
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
1116
  msgid "Login layout"
1117
  msgstr "Diseño de Inicio de Sesión"
1118
 
1119
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:200
1120
- #: nextend-facebook-connect/admin/templates/settings/comment.php:59
1121
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:53
1122
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:178
1123
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178
1124
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:159
1125
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:311
1126
  #, fuzzy
1127
  #| msgid "Buttons"
1128
  msgid "Button alignment"
1129
  msgstr "Botones"
1130
 
1131
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:205
1132
- #: nextend-facebook-connect/admin/templates/settings/comment.php:64
1133
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:152
1134
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:58
1135
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:183
1136
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:183
1137
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:164
1138
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:316
1139
- #: nextend-facebook-connect/widget.php:57
1140
  msgid "Left"
1141
  msgstr ""
1142
 
1143
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:208
1144
- #: nextend-facebook-connect/admin/templates/settings/comment.php:67
1145
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155
1146
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:61
1147
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:186
1148
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
1149
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
1150
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:319
1151
- #: nextend-facebook-connect/widget.php:62
1152
  msgid "Center"
1153
  msgstr ""
1154
 
1155
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:212
1156
- #: nextend-facebook-connect/admin/templates/settings/comment.php:71
1157
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:159
1158
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:65
1159
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:190
1160
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:190
1161
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:171
1162
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1163
- #: nextend-facebook-connect/widget.php:67
1164
  msgid "Right"
1165
  msgstr ""
1166
 
1167
- #: nextend-facebook-connect/admin/templates/settings/comment.php:18
1168
  #, fuzzy
1169
  #| msgid "Icon button"
1170
  msgid "Login button"
1171
  msgstr "Botón de icono"
1172
 
1173
- #: nextend-facebook-connect/admin/templates/settings/comment.php:23
1174
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
1175
  msgid "Show"
1176
  msgstr "Mostrar"
1177
 
1178
- #: nextend-facebook-connect/admin/templates/settings/comment.php:26
1179
  msgid "Hide"
1180
  msgstr "Esconder"
1181
 
1182
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1183
  #, php-format
1184
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
1185
  msgstr "Necesitas activar el ' %1$s > %2$s > %3$s ' para que funcione"
1186
 
1187
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1188
  msgid "Discussion"
1189
  msgstr "Discusión"
1190
 
1191
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1192
  msgid "Users must be registered and logged in to comment"
1193
  msgstr "Los usuarios deben estar registrados e iniciar sesión para comentar"
1194
 
1195
- #: nextend-facebook-connect/admin/templates/settings/comment.php:33
1196
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
1197
  #, fuzzy
1198
  #| msgid "Button style:"
1199
  msgid "Button style"
1200
  msgstr "Estilo de Botón:"
1201
 
1202
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1203
  msgid "Target window"
1204
  msgstr "Ventana de destino"
1205
 
1206
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34
1207
  msgid "Prefer popup"
1208
  msgstr "Preferir emergente"
1209
 
1210
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37
1211
  msgid "Prefer new tab"
1212
  msgstr "Preferir nueva pestaña"
1213
 
1214
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40
1215
  msgid "Prefer same window"
1216
  msgstr "Preferir nueva ventana"
1217
 
1218
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46
1219
  msgid "Registration notification sent to"
1220
  msgstr "Notificación de registro enviado a"
1221
 
1222
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51
1223
- #: nextend-facebook-connect/admin/templates/settings/general.php:243
1224
  msgid "WordPress default"
1225
  msgstr "Configuración predeterminada de Wordpress"
1226
 
1227
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
1228
  msgid "Nobody"
1229
  msgstr "Nadie"
1230
 
1231
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60
1232
  msgid "Admin"
1233
  msgstr "Administrador"
1234
 
1235
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63
1236
  msgid "User and Admin"
1237
  msgstr "Usuario y Administrador"
1238
 
1239
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69
1240
  #, fuzzy
1241
  #| msgid "Unlink label"
1242
  msgid "Unlink"
1243
  msgstr "Etiqueta de desenlazar"
1244
 
1245
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75
1246
  #, fuzzy
1247
  #| msgid "Social accounts"
1248
  msgid "Allow Social account unlink"
1249
  msgstr "Cuentas sociales"
1250
 
1251
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
1252
  #, fuzzy
1253
  #| msgid "Show link buttons"
1254
  msgid "Show linked providers"
1255
  msgstr "Mostrar botones de enlazar"
1256
 
1257
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1258
  #, php-format
1259
  msgid "Providers linked to the account will appear in the %1$s."
1260
  msgstr ""
1261
 
1262
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1263
  #, fuzzy
1264
  #| msgid "Username"
1265
  msgid "Users table"
1266
  msgstr "Usuario"
1267
 
1268
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:96
1269
  #, fuzzy
1270
  #| msgid "Disable login for the selected roles"
1271
  msgid "Disable Admin bar for roles"
1272
  msgstr "Deshabilitar inicio de sesión para los roles seleccionados"
1273
 
1274
- #: nextend-facebook-connect/admin/templates/settings/general.php:43
1275
  msgid "Debug mode"
1276
  msgstr "Modo de depuración"
1277
 
1278
- #: nextend-facebook-connect/admin/templates/settings/general.php:57
1279
  #, fuzzy
1280
  #| msgid "for Register"
1281
  msgid "Page for register flow"
1282
  msgstr "para Registrarse"
1283
 
1284
- #: nextend-facebook-connect/admin/templates/settings/general.php:67
1285
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
1286
  msgid "None"
1287
  msgstr ""
1288
 
1289
- #: nextend-facebook-connect/admin/templates/settings/general.php:75
1290
  msgid ""
1291
  "This setting is used when you request additional data from the users (such "
1292
  "as email address) and to display the Terms and conditions."
1293
  msgstr ""
1294
 
1295
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1296
  #, php-format
1297
  msgid ""
1298
  "%2$s First create a new page and insert the following shortcode: %1$s then "
1299
  "select this page above"
1300
  msgstr ""
1301
 
1302
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1303
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1304
  #, fuzzy
1305
  #| msgid "Usage"
1306
  msgid "Usage:"
1307
  msgstr "Uso"
1308
 
1309
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1310
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1311
  #, php-format
1312
  msgid ""
1313
  "%1$s You won't be able to reach the selected page unless a social login/"
1314
  "registration happens."
1315
  msgstr ""
1316
 
1317
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1318
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1319
  #, fuzzy
1320
  #| msgid "Import"
1321
  msgid "Important:"
1322
  msgstr "Importar"
1323
 
1324
- #: nextend-facebook-connect/admin/templates/settings/general.php:81
1325
  msgid "OAuth redirect uri proxy page"
1326
  msgstr ""
1327
 
1328
- #: nextend-facebook-connect/admin/templates/settings/general.php:101
1329
  msgid ""
1330
  "You can use this setting when wp-login.php page is not available to handle "
1331
  "the OAuth flow."
1332
  msgstr ""
1333
 
1334
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1335
  #, php-format
1336
  msgid "%1$s First create a new page then select this page above."
1337
  msgstr ""
1338
 
1339
- #: nextend-facebook-connect/admin/templates/settings/general.php:109
1340
  msgid "Prevent external redirect overrides"
1341
  msgstr ""
1342
 
1343
- #: nextend-facebook-connect/admin/templates/settings/general.php:115
1344
  msgid "Disable external redirects"
1345
  msgstr ""
1346
 
1347
- #: nextend-facebook-connect/admin/templates/settings/general.php:122
1348
  msgid "Default redirect url"
1349
  msgstr "URL de redirección predeterminada"
1350
 
1351
- #: nextend-facebook-connect/admin/templates/settings/general.php:135
1352
- #: nextend-facebook-connect/admin/templates/settings/general.php:173
1353
  msgid "for Login"
1354
  msgstr "para Iniciar Sesión"
1355
 
1356
- #: nextend-facebook-connect/admin/templates/settings/general.php:150
1357
- #: nextend-facebook-connect/admin/templates/settings/general.php:188
1358
  msgid "for Register"
1359
  msgstr "para Registrarse"
1360
 
1361
- #: nextend-facebook-connect/admin/templates/settings/general.php:160
1362
  msgid "Fixed redirect url"
1363
  msgstr "URL de redirección fija"
1364
 
1365
- #: nextend-facebook-connect/admin/templates/settings/general.php:197
1366
  #, fuzzy
1367
  #| msgid "Fixed redirect url"
1368
  msgid "Blacklisted redirects"
1369
  msgstr "URL de redirección fija"
1370
 
1371
- #: nextend-facebook-connect/admin/templates/settings/general.php:203
1372
  msgid "If you want to blacklist redirect url params. One pattern per line."
1373
  msgstr ""
1374
 
1375
- #: nextend-facebook-connect/admin/templates/settings/general.php:208
1376
  #, fuzzy
1377
  #| msgid "Show login buttons"
1378
  msgid "Support login restrictions"
1379
  msgstr "Mostrar botones de iniciar sesión"
1380
 
1381
- #: nextend-facebook-connect/admin/templates/settings/general.php:218
1382
  #, php-format
1383
  msgid "Please visit to our %1$s to check what plugins are supported!"
1384
  msgstr ""
1385
 
1386
- #: nextend-facebook-connect/admin/templates/settings/general.php:223
1387
  msgid "Display avatars in \"All media items\""
1388
  msgstr ""
1389
 
1390
- #: nextend-facebook-connect/admin/templates/settings/general.php:233
1391
  msgid ""
1392
  "Enabling this option can speed up loading images in Media Library - Grid "
1393
  "view!"
1394
  msgstr ""
1395
 
1396
- #: nextend-facebook-connect/admin/templates/settings/general.php:238
1397
  msgid "Membership"
1398
  msgstr "Membresía"
1399
 
1400
- #: nextend-facebook-connect/admin/templates/settings/general.php:251
1401
  #, fuzzy
1402
  #| msgid "Allow registration with Social login"
1403
  msgid "Allow registration with Social login."
1404
  msgstr "Permitir registro con Social login"
1405
 
1406
- #: nextend-facebook-connect/admin/templates/settings/general.php:256
1407
  #, fuzzy
1408
  #| msgid "for Register"
1409
  msgid "Custom label for register buttons"
1410
  msgstr "para Registrarse"
1411
 
1412
- #: nextend-facebook-connect/admin/templates/settings/general.php:266
1413
  #, php-format
1414
  msgid ""
1415
  "Set a custom label for the social buttons in registration forms and for "
@@ -1417,300 +927,197 @@ msgid ""
1417
  "can be modified at the Buttons tab of each provider."
1418
  msgstr ""
1419
 
1420
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1421
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1422
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1423
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1424
- msgid "Login form button style"
1425
- msgstr "Estilo de botón para iniciar sesión"
1426
-
1427
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72
1428
  msgid "Below and floating"
1429
  msgstr "Abajo y flotando"
1430
 
1431
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91
1432
  msgid "Embedded Login form button style"
1433
  msgstr "Estilo de botón de formulario de inicio de sesión integrado"
1434
 
1435
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116
1436
  msgid "Embedded Login layout"
1437
  msgstr "Diseño de Inicio de Sesión integrado"
1438
 
1439
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147
1440
  #, fuzzy
1441
  #| msgid "Embedded Login form button style"
1442
  msgid "Embedded login form button alignment"
1443
  msgstr "Estilo de botón de formulario de inicio de sesión integrado"
1444
 
1445
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1446
- #: nextend-facebook-connect/includes/userData.php:152
1447
  msgid "Registration Form"
1448
  msgstr "Formulario de Registro"
1449
 
1450
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
1451
  msgid "Embedded login form"
1452
  msgstr "Formulario de Inicio de Sesión integrado"
1453
 
1454
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:23
1455
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1456
- #, fuzzy
1457
- #| msgid "No Connect button in login form"
1458
- msgid "No Connect button in Login form"
1459
- msgstr "Sin botón de conexión en el formulario de inicio de sesión"
1460
-
1461
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:26
1462
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:98
1463
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1464
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:98
1465
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
1466
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:57
1467
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
1468
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
1469
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
1470
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:173
1471
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:179
1472
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:185
1473
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:247
1474
- #, fuzzy
1475
- #| msgid "No Connect button"
1476
- msgid "Connect button on"
1477
- msgstr "Botón de No Conexión"
1478
-
1479
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
1480
  msgid "Sign Up form"
1481
  msgstr ""
1482
 
1483
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:95
1484
  #, fuzzy
1485
  #| msgid "No Connect button in login form"
1486
  msgid "No Connect button in Sign Up form"
1487
  msgstr "Sin botón de conexión en el formulario de inicio de sesión"
1488
 
1489
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:105
1490
  #, fuzzy
1491
  #| msgid "Login form button style"
1492
  msgid "Sign Up form button style"
1493
  msgstr "Estilo de botón para iniciar sesión"
1494
 
1495
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:130
1496
  #, fuzzy
1497
  #| msgid "Login layout"
1498
  msgid "Sign Up layout"
1499
  msgstr "Diseño de Inicio de Sesión"
1500
 
1501
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:162
1502
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:162
1503
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:290
1504
  #, fuzzy
1505
  #| msgid "MemberPress account details"
1506
  msgid "Account details"
1507
  msgstr "Detalles de cuenta MemberPress"
1508
 
1509
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:167
1510
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:167
1511
  msgid "No link buttons"
1512
  msgstr "Sin botones de enlace"
1513
 
1514
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:170
1515
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:170
1516
  msgid "Link buttons after account details"
1517
  msgstr "Enlazar botones de enlace después de los detalles de la cuenta"
1518
 
1519
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1520
- #: nextend-facebook-connect/nextend-social-login.php:152
1521
  msgid ""
1522
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1523
  "\"_blank\">Privacy Policy</a>"
1524
  msgstr ""
1525
 
1526
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1527
  msgid "Store"
1528
  msgstr ""
1529
 
1530
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1531
  msgid "First and last name"
1532
  msgstr ""
1533
 
1534
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1535
  msgid "When not enabled, username will be randomly generated."
1536
  msgstr ""
1537
 
1538
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1539
- #: nextend-social-login-pro/class-provider-extension.php:322
1540
  msgid "Email"
1541
  msgstr "Email"
1542
 
1543
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1544
  msgid "When not enabled, email will be empty."
1545
  msgstr ""
1546
 
1547
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1548
- #: nextend-facebook-connect/includes/avatar.php:49
1549
  msgid "Avatar"
1550
  msgstr "Avatar"
1551
 
1552
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1553
- #: nextend-facebook-connect/includes/provider.php:1108
1554
  msgid "Access token"
1555
  msgstr ""
1556
 
1557
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:95
1558
- #, fuzzy
1559
- #| msgid "No Connect button in register form"
1560
- msgid "No Connect button in Register form"
1561
- msgstr "Sin botón de conexión en el formulario de registro"
1562
-
1563
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
1564
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
1565
- msgid "Register form button style"
1566
- msgstr "Estilo de botón de formulario de Registro integrado"
1567
-
1568
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1569
  msgid "Register Form"
1570
  msgstr "Formulario de Registro"
1571
 
1572
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:49
1573
  msgid "No Connect button in login form"
1574
  msgstr "Sin botón de conexión en el formulario de inicio de sesión"
1575
 
1576
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:107
1577
  msgid "No Connect button in register form"
1578
  msgstr "Sin botón de conexión en el formulario de registro"
1579
 
1580
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:160
1581
  #, fuzzy
1582
  #| msgid "WooCommerce billing form"
1583
  msgid "Billing form"
1584
  msgstr "Formulario de facturación de WooCommerce"
1585
 
1586
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:165
1587
  msgid "No Connect button in billing form"
1588
  msgstr "Sin botón de conexión en el formulario de facturación"
1589
 
1590
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:193
1591
  #, fuzzy
1592
  #| msgid "Login layout"
1593
  msgid "Billing layout"
1594
  msgstr "Diseño de Inicio de Sesión"
1595
 
1596
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:205
1597
  #, fuzzy
1598
  #| msgid "Below with separator"
1599
  msgid "Default with separator"
1600
  msgstr "Abajo con separación"
1601
 
1602
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:239
1603
  msgid "Checkout for WooCommerce"
1604
  msgstr ""
1605
 
1606
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:244
1607
  #, fuzzy
1608
  #| msgid "No Connect button in register form"
1609
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1610
  msgstr "Sin botón de conexión en el formulario de registro"
1611
 
1612
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:255
1613
  msgid "Checkout for WooCommerce layout"
1614
  msgstr ""
1615
 
1616
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:295
1617
  #, fuzzy
1618
  #| msgid "Connect button before account details"
1619
  msgid "No Connect buttons in account details form"
1620
  msgstr "Conectar botón antes de los detalles de cuenta"
1621
 
1622
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:298
1623
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:303
1624
  #, fuzzy
1625
  #| msgid "No link buttons"
1626
  msgid "Link buttons on"
1627
  msgstr "Sin botones de enlace"
1628
 
1629
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:329
1630
  #, fuzzy
1631
  #| msgid "Ask E-mail on registration"
1632
  msgid "Email template for registration"
1633
  msgstr "Preguntar E-mail durante el registro"
1634
 
1635
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:334
1636
  #, fuzzy
1637
  #| msgid "WordPress default"
1638
  msgid "WordPress default notification"
1639
  msgstr "Configuración predeterminada de Wordpress"
1640
 
1641
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:337
1642
  #, fuzzy
1643
  #| msgid "WooCommerce register form"
1644
  msgid "WooCommerce registration notification"
1645
  msgstr "Formulario de registro WooCommerce"
1646
 
1647
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:339
1648
  #, php-format
1649
  msgid ""
1650
  "Defines whether the registration with %1$s will send the same registration "
1651
  "notification that %2$s does, instead of the %3$s default one."
1652
  msgstr ""
1653
 
1654
- #: nextend-facebook-connect/admin/templates/test-connection.php:42
1655
  #, fuzzy, php-format
1656
  #| msgid "Authentication successful"
1657
  msgid "Network connection successful: %1$s"
1658
  msgstr "Autenticación exitosa"
1659
 
1660
- #: nextend-facebook-connect/admin/templates/test-connection.php:49
1661
  #, php-format
1662
  msgid "Network connection failed: %1$s"
1663
  msgstr ""
1664
 
1665
- #: nextend-facebook-connect/admin/templates/test-connection.php:52
1666
  msgid ""
1667
  "Please contact with your hosting provider to resolve the network issue "
1668
  "between your server and the provider."
1669
  msgstr ""
1670
 
1671
- #: nextend-facebook-connect/includes/avatar.php:50
1672
  msgid "Manage Avatar"
1673
  msgstr "Administrar Avatar"
1674
 
1675
- #: nextend-facebook-connect/includes/avatar.php:51
1676
  #, php-format
1677
  msgid "Avatar <span class=\"count\">(%s)</span>"
1678
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1679
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1680
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1681
 
1682
- #: nextend-facebook-connect/includes/avatar.php:399
1683
  msgid "Invalid URL Provided."
1684
  msgstr ""
1685
 
1686
- #: nextend-facebook-connect/includes/avatar.php:404
1687
  msgid "Could not create Temporary file."
1688
  msgstr ""
1689
 
1690
- #: nextend-facebook-connect/includes/compat-wp-login.php:63
1691
  #, php-format
1692
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1693
  msgstr ""
1694
 
1695
- #: nextend-facebook-connect/includes/compat-wp-login.php:129
1696
  msgid "https://wordpress.org/"
1697
  msgstr ""
1698
 
1699
- #: nextend-facebook-connect/includes/compat-wp-login.php:130
1700
  msgid "Powered by WordPress"
1701
  msgstr ""
1702
 
1703
- #: nextend-facebook-connect/includes/compat-wp-login.php:284
1704
  #, php-format
1705
  msgctxt "site"
1706
  msgid "&larr; Back to %s"
1707
  msgstr ""
1708
 
1709
- #: nextend-facebook-connect/includes/provider-admin.php:199
1710
  msgid "Your configuration needs to be verified"
1711
  msgstr "Tu configuración debe ser verificada"
1712
 
1713
- #: nextend-facebook-connect/includes/provider-admin.php:200
1714
  msgid ""
1715
  "Before you can start letting your users register with your app it needs to "
1716
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1724,15 +1131,12 @@ msgstr ""
1724
  "mensaje de error en el menú emergente, verifica la ID copiada y el secreto o "
1725
  "la aplicación. De lo contrario, tu configuración está bien."
1726
 
1727
- #: nextend-facebook-connect/includes/provider-admin.php:206
1728
  msgid "Please save your changes to verify settings."
1729
  msgstr "Guarda los cambios para verificar la configuración."
1730
 
1731
- #: nextend-facebook-connect/includes/provider-admin.php:214
1732
  msgid "Works Fine"
1733
  msgstr "Funciona Bien"
1734
 
1735
- #: nextend-facebook-connect/includes/provider-admin.php:228
1736
  #, php-format
1737
  msgid ""
1738
  "This provider is currently disabled, which means that users can’t register "
@@ -1741,7 +1145,6 @@ msgstr ""
1741
  "Este proveedor está desactivado, así que los usuarios no pueden registrarse "
1742
  "ni iniciar sesión a través de su cuenta de %s."
1743
 
1744
- #: nextend-facebook-connect/includes/provider-admin.php:231
1745
  #, php-format
1746
  msgid ""
1747
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1751,7 +1154,6 @@ msgstr ""
1751
  "permitir que los usuarios se registren o inicien sesión con %s, puedes "
1752
  "deshabilitarlo."
1753
 
1754
- #: nextend-facebook-connect/includes/provider-admin.php:234
1755
  #, php-format
1756
  msgid ""
1757
  "This provider is currently enabled, which means that users can register or "
@@ -1760,52 +1162,36 @@ msgstr ""
1760
  "Este proveedor está habilitado, así que los usuarios pueden registrarse o "
1761
  "iniciar sesión a través de su cuenta %s."
1762
 
1763
- #: nextend-facebook-connect/includes/provider-admin.php:242
1764
  msgid "Verify Settings Again"
1765
  msgstr "Verificar la configuración de nuevo"
1766
 
1767
- #: nextend-facebook-connect/includes/provider-admin.php:243
1768
  msgid "Please save your changes before verifying settings."
1769
  msgstr "Guarda tus cambios antes de verificar la configuración, por favor."
1770
 
1771
- #: nextend-facebook-connect/includes/provider.php:364
1772
- #: nextend-facebook-connect/includes/provider.php:725
1773
- #: nextend-facebook-connect/includes/provider.php:733
1774
  msgid "Authentication successful"
1775
  msgstr "Autenticación exitosa"
1776
 
1777
- #: nextend-facebook-connect/includes/provider.php:662
1778
- #: nextend-facebook-connect/includes/user.php:170
1779
- #: nextend-facebook-connect/includes/user.php:606
1780
  msgid "Authentication error"
1781
  msgstr "Error de autenticación"
1782
 
1783
- #: nextend-facebook-connect/includes/provider.php:677
1784
  msgid "Unlink successful."
1785
  msgstr "Desenlace exitoso."
1786
 
1787
- #: nextend-facebook-connect/includes/provider.php:679
1788
  msgid "Unlink is not allowed!"
1789
  msgstr ""
1790
 
1791
- #: nextend-facebook-connect/includes/provider.php:894
1792
- #: nextend-facebook-connect/includes/provider.php:901
1793
  msgid "The test was successful"
1794
  msgstr "La prueba fue exitosa"
1795
 
1796
- #: nextend-facebook-connect/includes/provider.php:947
1797
  msgid "Authentication failed"
1798
  msgstr "Error de autenticación"
1799
 
1800
- #: nextend-facebook-connect/includes/provider.php:1100
1801
  msgid "Identifier"
1802
  msgstr ""
1803
 
1804
- #: nextend-facebook-connect/includes/provider.php:1116
1805
  msgid "Profile Picture"
1806
  msgstr ""
1807
 
1808
- #: nextend-facebook-connect/includes/user.php:76
1809
  #, php-format
1810
  msgid ""
1811
  "Your %1$s account is successfully linked with your account. Now you can sign "
@@ -1814,7 +1200,6 @@ msgstr ""
1814
  "Tu cuenta %1$s está vinculada con éxito a tu cuenta. Ahora puedes iniciar "
1815
  "sesión con %2$s fácilmente."
1816
 
1817
- #: nextend-facebook-connect/includes/user.php:79
1818
  #, fuzzy, php-format
1819
  #| msgid ""
1820
  #| "You have already linked a(n) %s account. Please unlink the current and "
@@ -1826,17 +1211,14 @@ msgstr ""
1826
  "Ya has vinculado una %s cuenta. Desvincula la cuenta actual y después "
1827
  "podrías vincular otra cuenta de %s."
1828
 
1829
- #: nextend-facebook-connect/includes/user.php:84
1830
  #, fuzzy, php-format
1831
  #| msgid "This %s account is already linked to other user."
1832
  msgid "This %s account is already linked to another user."
1833
  msgstr "Esta cuenta %s ya está vinculada a otro usuario."
1834
 
1835
- #: nextend-facebook-connect/includes/user.php:130
1836
  msgid "User registration is currently not allowed."
1837
  msgstr ""
1838
 
1839
- #: nextend-facebook-connect/includes/user.php:681
1840
  #, php-format
1841
  msgid ""
1842
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
@@ -1844,25 +1226,21 @@ msgid ""
1844
  "linked %1$s account or log in with your password!"
1845
  msgstr ""
1846
 
1847
- #: nextend-facebook-connect/includes/userData.php:152
1848
  #, fuzzy
1849
  #| msgid "Register For This Site!"
1850
  msgid "Register For This Site"
1851
  msgstr "¡Registrarse Para Este Sitio!"
1852
 
1853
- #: nextend-facebook-connect/includes/userData.php:204
1854
  #, fuzzy
1855
  #| msgid "Register"
1856
  msgctxt "Register form submit button label"
1857
  msgid "Register"
1858
  msgstr "Registrarse"
1859
 
1860
- #: nextend-facebook-connect/nextend-facebook-connect.php:37
1861
  #, php-format
1862
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1863
  msgstr "%1$s requiere la versión PHP %2$s+, el plugin NO ESTÁ ACTIVO."
1864
 
1865
- #: nextend-facebook-connect/nextend-facebook-connect.php:44
1866
  #, php-format
1867
  msgid ""
1868
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1871,92 +1249,55 @@ msgstr ""
1871
  "%1$s requiere la versión de WordPress %2$s+. Desde estás utilizando una "
1872
  "versión anterior, el plugin NO ESTÁ ACTIVO."
1873
 
1874
- #: nextend-facebook-connect/nextend-social-login.php:56
1875
- #: nextend-facebook-connect/nextend-social-login.php:63
1876
  #, php-format
1877
  msgid "Please update %1$s to version %2$s or newer."
1878
  msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
1879
 
1880
- #: nextend-facebook-connect/nextend-social-login.php:56
1881
- #: nextend-facebook-connect/nextend-social-login.php:63
1882
  msgid "Update now!"
1883
  msgstr "¡Actualizar ahora!"
1884
 
1885
- #: nextend-facebook-connect/nextend-social-login.php:846
1886
- #: nextend-facebook-connect/nextend-social-login.php:1225
1887
  msgid "Social Login"
1888
  msgstr "Social Login"
1889
 
1890
- #: nextend-facebook-connect/nextend-social-login.php:1206
1891
  msgid "Social Accounts"
1892
  msgstr "Cuentas Sociales"
1893
 
1894
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:2
1895
- #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1896
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:2
1897
  #, fuzzy
1898
  #| msgid "Buttons"
1899
  msgid "Button skin"
1900
  msgstr "Botones"
1901
 
1902
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:8
1903
- #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1904
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:14
1905
  msgid "Dark"
1906
  msgstr ""
1907
 
1908
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:14
1909
- #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1910
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:8
1911
  msgid "Light"
1912
  msgstr ""
1913
 
1914
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:20
1915
  msgid "Black"
1916
  msgstr ""
1917
 
1918
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:26
1919
  msgid "White"
1920
  msgstr ""
1921
 
1922
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1923
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1924
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1925
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1926
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8
1927
  #, fuzzy, php-format
1928
  #| msgid "Navigate to %s"
1929
  msgid "Navigate to <b>%s</b>"
1930
  msgstr "Navegar a %s"
1931
 
1932
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1933
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1934
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1935
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1936
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1937
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:9
1938
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1939
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18
1940
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9
1941
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9
1942
  #, php-format
1943
  msgid "Log in with your %s credentials if you are not logged in"
1944
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
1945
 
1946
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
1947
  #, fuzzy, php-format
1948
  #| msgid "Click on the App with App ID: %s"
1949
  msgid "Click on the App with App ID: <b>%s</b>"
1950
  msgstr "Haz clic en la App con la App ID: %s"
1951
 
1952
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
1953
  #, fuzzy
1954
  #| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1955
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1956
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
1957
 
1958
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:14
1959
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1960
  #, fuzzy
1961
  #| msgid ""
1962
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
@@ -1966,16 +1307,11 @@ msgid ""
1966
  msgstr ""
1967
  "Agrega la siguiente URL al campo \"Valid OAuth redirect URIs\": <b>%s</b>"
1968
 
1969
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:22
1970
  #, fuzzy
1971
  #| msgid "Click on \"Save Changes\""
1972
  msgid "Click on \"<b>Save Changes</b>\""
1973
  msgstr "Haz clic en \"Guardar Cambios\""
1974
 
1975
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11
1976
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:13
1977
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11
1978
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22
1979
  #, php-format
1980
  msgid ""
1981
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
@@ -1984,19 +1320,9 @@ msgstr ""
1984
  "%1$s solo permite redireccionamientos HTTPS OAuth. Debes mover tu sitio a "
1985
  "HTTPS para permitir el inicio de sesión con %1$s."
1986
 
1987
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
1988
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:15
1989
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13
1990
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24
1991
  msgid "How to get SSL for my WordPress site?"
1992
  msgstr "¿Cómo puedo obtener SSL para mi sitio de WordPress?"
1993
 
1994
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1995
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1996
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1997
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:10
1998
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1999
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10
2000
  #, php-format
2001
  msgid ""
2002
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -2011,70 +1337,19 @@ msgstr ""
2011
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
2012
  "dados según tu aplicación %1$s."
2013
 
2014
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
2015
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
2016
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
2017
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
2018
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:34
2019
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:14
2020
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:14
2021
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:14
2022
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
2023
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:14
2024
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:14
2025
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:14
2026
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:14
2027
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:15
2028
  #, php-format
2029
  msgctxt "App creation"
2030
  msgid "Create %s"
2031
  msgstr "Crear %s"
2032
 
2033
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
2034
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2035
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
2036
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2037
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19
2038
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:39
2039
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
2040
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2041
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:8
2042
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:17
2043
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
2044
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
2045
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:8
2046
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:17
2047
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
2048
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2049
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
2050
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
2051
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
2052
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2053
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18
2054
  #, php-format
2055
  msgid "Navigate to %s"
2056
  msgstr "Navegar a %s"
2057
 
2058
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2059
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2060
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2061
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2062
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:40
2063
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2064
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2065
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:18
2066
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:9
2067
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:18
2068
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2069
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
2070
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2071
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2072
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19
2073
  #, php-format
2074
  msgid "Log in with your %s credentials if you are not logged in."
2075
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
2076
 
2077
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
2078
  #, fuzzy
2079
  #| msgid "Click on the \"Create New App\" button"
2080
  msgid ""
@@ -2082,38 +1357,32 @@ msgid ""
2082
  "\"<b>Consumer</b>\" App type!"
2083
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2084
 
2085
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
2086
  msgid ""
2087
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
2088
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
2089
  "finally verify your account."
2090
  msgstr ""
2091
 
2092
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2093
  #, php-format
2094
  msgid ""
2095
  "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
2096
  "specified \"App Display Name\" will appear on your %s!"
2097
  msgstr ""
2098
 
2099
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2100
  msgid ""
2101
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
2102
  "if you have any."
2103
  msgstr ""
2104
 
2105
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2106
  #, fuzzy
2107
  #| msgid "Click on the \"Create New App\" button"
2108
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
2109
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2110
 
2111
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2112
  #, php-format
2113
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
2114
  msgstr ""
2115
 
2116
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2117
  #, fuzzy, php-format
2118
  #| msgid ""
2119
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -2124,34 +1393,28 @@ msgid ""
2124
  msgstr ""
2125
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2126
 
2127
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
2128
  #, fuzzy
2129
  #| msgid "Click on \"Save Changes\""
2130
  msgid "Press “<b>Save</b>”."
2131
  msgstr "Haz clic en \"Guardar Cambios\""
2132
 
2133
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2134
  #, php-format
2135
  msgid ""
2136
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2137
  "%2$s</b> - <b>%3$s</b>”"
2138
  msgstr ""
2139
 
2140
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:47
2141
  #, fuzzy
2142
  #| msgid "Click on \"Save Changes\""
2143
  msgid "Click on “<b>Save Changes</b>”."
2144
  msgstr "Haz clic en \"Guardar Cambios\""
2145
 
2146
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:48
2147
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:65
2148
  #, php-format
2149
  msgid ""
2150
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2151
  "%2$s</b>”."
2152
  msgstr ""
2153
 
2154
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:49
2155
  #, fuzzy, php-format
2156
  #| msgid "Enter your domain name to the App Domains"
2157
  msgid ""
@@ -2159,7 +1422,6 @@ msgid ""
2159
  "b>"
2160
  msgstr "Ingresa tu nombre de dominio a los App Domains"
2161
 
2162
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:50
2163
  #, fuzzy
2164
  #| msgid ""
2165
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
@@ -2174,26 +1436,22 @@ msgstr ""
2174
  "accesible al público y de fácil acceso que explique cuales datos estás "
2175
  "recopilando y cómo utilizarás esos datos."
2176
 
2177
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2178
  msgid ""
2179
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2180
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2181
  "instructions on how users can delete their accounts on your site."
2182
  msgstr ""
2183
 
2184
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2185
  msgid ""
2186
  "To comply with GDPR, you should already offer possibility to delete accounts "
2187
  "on your site, either by the user or by the admin:"
2188
  msgstr ""
2189
 
2190
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2191
  msgid ""
2192
  "<u>If each user has an option to delete the account</u>: the URL should "
2193
  "point to a guide showing the way users can delete their accounts."
2194
  msgstr ""
2195
 
2196
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:57
2197
  msgid ""
2198
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
2199
  "section - usually in the Privacy Policy - with the contact details, where "
@@ -2201,14 +1459,12 @@ msgid ""
2201
  "point to this section of the document."
2202
  msgstr ""
2203
 
2204
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:62
2205
  msgid ""
2206
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2207
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2208
  "Changes</b>\"."
2209
  msgstr ""
2210
 
2211
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2212
  #, fuzzy
2213
  #| msgid ""
2214
  #| "Your application is currently private, which means that only you can log "
@@ -2223,7 +1479,6 @@ msgstr ""
2223
  "En la barra lateral izquierda, elige \"App Review\" y haz que tu aplicación "
2224
  "sea pública"
2225
 
2226
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:64
2227
  #, php-format
2228
  msgid ""
2229
  "By default, your application only has Standard access for the permissions, "
@@ -2233,7 +1488,6 @@ msgid ""
2233
  "should click on the <strong>%6$s</strong> buttons next to them. "
2234
  msgstr ""
2235
 
2236
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:66
2237
  #, fuzzy, php-format
2238
  #| msgid ""
2239
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -2248,7 +1502,6 @@ msgstr ""
2248
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
2249
  "plugin."
2250
 
2251
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:69
2252
  #, php-format
2253
  msgid ""
2254
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
@@ -2259,11 +1512,9 @@ msgid ""
2259
  "the Facebook App, then please check our %2$sdocumentation%3$s."
2260
  msgstr ""
2261
 
2262
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:73
2263
  msgid "Maintaining the Facebook App:"
2264
  msgstr ""
2265
 
2266
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:74
2267
  #, php-format
2268
  msgid ""
2269
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
@@ -2274,76 +1525,16 @@ msgid ""
2274
  "that we need."
2275
  msgstr ""
2276
 
2277
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:78
2278
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:53
2279
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:46
2280
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:50
2281
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:134
2282
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:41
2283
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:40
2284
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:46
2285
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:43
2286
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:45
2287
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:46
2288
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:41
2289
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:41
2290
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:40
2291
  #, php-format
2292
  msgid "I am done setting up my %s"
2293
  msgstr "He terminado de configurar mi %s"
2294
 
2295
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:35
2296
- #: nextend-social-login-pro/providers/vk/admin/settings.php:27
2297
  msgid "App ID"
2298
  msgstr "App ID"
2299
 
2300
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:36
2301
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
2302
- #: nextend-facebook-connect/providers/google/admin/settings.php:28
2303
- #: nextend-facebook-connect/providers/google/admin/settings.php:41
2304
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
2305
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
2306
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
2307
- #: nextend-social-login-pro/providers/apple/admin/settings.php:79
2308
- #: nextend-social-login-pro/providers/apple/admin/settings.php:90
2309
- #: nextend-social-login-pro/providers/apple/admin/settings.php:99
2310
- #: nextend-social-login-pro/providers/apple/admin/settings.php:107
2311
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
2312
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
2313
- #: nextend-social-login-pro/providers/github/admin/settings.php:28
2314
- #: nextend-social-login-pro/providers/github/admin/settings.php:40
2315
- #: nextend-social-login-pro/providers/line/admin/settings.php:27
2316
- #: nextend-social-login-pro/providers/line/admin/settings.php:39
2317
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
2318
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
2319
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:27
2320
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:39
2321
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
2322
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
2323
- #: nextend-social-login-pro/providers/vk/admin/settings.php:28
2324
- #: nextend-social-login-pro/providers/vk/admin/settings.php:40
2325
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
2326
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
2327
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27
2328
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39
2329
  msgid "Required"
2330
  msgstr "Obligatorio"
2331
 
2332
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:41
2333
- #: nextend-facebook-connect/providers/google/admin/settings.php:35
2334
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
2335
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
2336
- #: nextend-social-login-pro/providers/apple/admin/settings.php:34
2337
- #: nextend-social-login-pro/providers/apple/admin/settings.php:85
2338
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
2339
- #: nextend-social-login-pro/providers/github/admin/settings.php:34
2340
- #: nextend-social-login-pro/providers/line/admin/settings.php:33
2341
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
2342
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:33
2343
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
2344
- #: nextend-social-login-pro/providers/vk/admin/settings.php:34
2345
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
2346
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33
2347
  #, php-format
2348
  msgid ""
2349
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -2352,87 +1543,56 @@ msgstr ""
2352
  "Si no estás seguro de cuál es tu %1$s, dirígete a <a href=\"%2$s\">Getting "
2353
  "Started</a>"
2354
 
2355
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:47
2356
  msgid "App Secret"
2357
  msgstr "App Secret"
2358
 
2359
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2360
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:49
2361
  #, php-format
2362
  msgid ""
2363
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2364
  "longer be able to login with %1$s."
2365
  msgstr ""
2366
 
2367
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2368
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:51
2369
  msgid "Find out why?"
2370
  msgstr ""
2371
 
2372
- #: nextend-facebook-connect/providers/facebook/facebook.php:90
2373
  msgid "Continue with <b>Facebook</b>"
2374
  msgstr "Sigue con <b>Facebook</b>"
2375
 
2376
- #: nextend-facebook-connect/providers/facebook/facebook.php:91
2377
  #, fuzzy
2378
  #| msgid "Continue with <b>Facebook</b>"
2379
  msgid "Sign up with <b>Facebook</b>"
2380
  msgstr "Sigue con <b>Facebook</b>"
2381
 
2382
- #: nextend-facebook-connect/providers/facebook/facebook.php:92
2383
  msgid "Link account with <b>Facebook</b>"
2384
  msgstr "Enlazar cuenta con <b>Facebook</b>"
2385
 
2386
- #: nextend-facebook-connect/providers/facebook/facebook.php:93
2387
  msgid "Unlink account from <b>Facebook</b>"
2388
  msgstr "Desenlazar cuenta de <b>Facebook</b>"
2389
 
2390
- #: nextend-facebook-connect/providers/facebook/facebook.php:193
2391
- #: nextend-facebook-connect/providers/google/google.php:168
2392
- #: nextend-facebook-connect/providers/twitter/twitter.php:97
2393
- #: nextend-social-login-pro/providers/amazon/amazon.php:67
2394
- #: nextend-social-login-pro/providers/apple/apple.php:115
2395
- #: nextend-social-login-pro/providers/apple/apple.php:122
2396
- #: nextend-social-login-pro/providers/disqus/disqus.php:114
2397
- #: nextend-social-login-pro/providers/github/github.php:152
2398
- #: nextend-social-login-pro/providers/line/line.php:63
2399
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2400
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:65
2401
- #: nextend-social-login-pro/providers/paypal/paypal.php:92
2402
- #: nextend-social-login-pro/providers/vk/vk.php:63
2403
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2404
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2405
  #, php-format
2406
  msgid ""
2407
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2408
  msgstr ""
2409
  "El %1$s ingresado no parece ser válido. Por favor ingresa un %2$s válido."
2410
 
2411
- #: nextend-facebook-connect/providers/facebook/facebook.php:314
2412
- #: nextend-social-login-pro/providers/paypal/paypal.php:172
2413
  #, php-format
2414
  msgid "Required scope: %1$s"
2415
  msgstr "Alcance requerido: %1$s"
2416
 
2417
- #: nextend-facebook-connect/providers/google/admin/buttons.php:20
2418
  msgid "Uniform - Legacy"
2419
  msgstr ""
2420
 
2421
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
2422
  #, fuzzy
2423
  #| msgid "Click on the \"Credentials\" in the left hand menu"
2424
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
2425
  msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
2426
 
2427
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
2428
  #, php-format
2429
  msgid ""
2430
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
2431
  "%s</b>"
2432
  msgstr ""
2433
 
2434
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:14
2435
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2436
  #, fuzzy, php-format
2437
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
2438
  msgid ""
@@ -2440,16 +1600,11 @@ msgid ""
2440
  "following URL:"
2441
  msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s"
2442
 
2443
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:22
2444
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:23
2445
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:23
2446
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:23
2447
  #, fuzzy
2448
  #| msgid "Click on \"Save\""
2449
  msgid "Click on \"<b>Save</b>\""
2450
  msgstr "Haz clic en \"Guardar Cambios\""
2451
 
2452
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2453
  #, fuzzy, php-format
2454
  #| msgid ""
2455
  #| "If you don't have a project yet, you'll need to create one. You can do "
@@ -2463,26 +1618,22 @@ msgstr ""
2463
  "Si aún no tienes un proyecto, deberás crear uno. Puedes hacer esto haciendo "
2464
  "clic en el botón azul \"Create project\" en el lado derecho"
2465
 
2466
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2467
  #, fuzzy, php-format
2468
  #| msgid "Name your project and then click on the Create button"
2469
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2470
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2471
 
2472
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2473
  msgid ""
2474
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2475
  "have already had a Project, then make sure you select the created project in "
2476
  "the top bar! )"
2477
  msgstr ""
2478
 
2479
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2480
  #, fuzzy, php-format
2481
  #| msgid "Click on the \"Credentials\" in the left hand menu"
2482
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
2483
  msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
2484
 
2485
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2486
  #, php-format
2487
  msgid ""
2488
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
@@ -2490,7 +1641,6 @@ msgid ""
2490
  "account, then pick the \"%4$s\" option!"
2491
  msgstr ""
2492
 
2493
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2494
  #, php-format
2495
  msgid ""
2496
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
@@ -2498,21 +1648,18 @@ msgid ""
2498
  "%1$s!"
2499
  msgstr ""
2500
 
2501
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2502
  #, php-format
2503
  msgid ""
2504
  "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2505
  "the name of the app asking for consent."
2506
  msgstr ""
2507
 
2508
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2509
  #, php-format
2510
  msgid ""
2511
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2512
  "contact you with questions about their consent."
2513
  msgstr ""
2514
 
2515
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2516
  #, fuzzy, php-format
2517
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2518
  msgid ""
@@ -2521,51 +1668,43 @@ msgid ""
2521
  msgstr ""
2522
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2523
 
2524
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2525
  #, php-format
2526
  msgid ""
2527
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2528
  "notify you about any changes to your project."
2529
  msgstr ""
2530
 
2531
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2532
  #, php-format
2533
  msgid ""
2534
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2535
  "too!"
2536
  msgstr ""
2537
 
2538
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2539
  #, php-format
2540
  msgid ""
2541
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2542
  "\"<b>%2$s</b>\" button in the top bar."
2543
  msgstr ""
2544
 
2545
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2546
  #, fuzzy, php-format
2547
  #| msgid "Click on the Create button"
2548
  msgid "Choose the \"<b>%1$s</b>\" option."
2549
  msgstr "Haz clic en el botón Create"
2550
 
2551
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2552
  #, fuzzy, php-format
2553
  #| msgid "Click on the \"Create New App\" button"
2554
  msgid "Select the \"<b>%1$s</b>\" under Application type."
2555
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2556
 
2557
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2558
  #, php-format
2559
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2560
  msgstr ""
2561
 
2562
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:48
2563
  #, fuzzy, php-format
2564
  #| msgid "Click on the Create button"
2565
  msgid "Click on the \"<b>%1$s</b>\" button"
2566
  msgstr "Haz clic en el botón Create"
2567
 
2568
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:49
2569
  #, fuzzy, php-format
2570
  #| msgid ""
2571
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
@@ -2583,61 +1722,38 @@ msgstr ""
2583
  "clic en su nombre y podrías copiar y pegar desde ahí la Client ID y el "
2584
  "Client Secret."
2585
 
2586
- #: nextend-facebook-connect/providers/google/admin/settings.php:27
2587
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2588
- #: nextend-social-login-pro/providers/apple/admin/settings.php:28
2589
- #: nextend-social-login-pro/providers/github/admin/settings.php:27
2590
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2591
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2592
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2593
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26
2594
  msgid "Client ID"
2595
  msgstr "Client ID"
2596
 
2597
- #: nextend-facebook-connect/providers/google/admin/settings.php:40
2598
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2599
- #: nextend-social-login-pro/providers/apple/admin/settings.php:39
2600
- #: nextend-social-login-pro/providers/github/admin/settings.php:39
2601
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2602
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2603
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38
2604
  msgid "Client Secret"
2605
  msgstr "Client Secret"
2606
 
2607
- #: nextend-facebook-connect/providers/google/admin/settings.php:47
2608
  msgid "Select account on each login"
2609
  msgstr ""
2610
 
2611
- #: nextend-facebook-connect/providers/google/admin/settings.php:56
2612
  msgid ""
2613
  "Disable, when you don't want to see the account select prompt on each login."
2614
  msgstr ""
2615
 
2616
- #: nextend-facebook-connect/providers/google/google.php:99
2617
  msgid "Continue with <b>Google</b>"
2618
  msgstr "Sigue con <b>Google</b>"
2619
 
2620
- #: nextend-facebook-connect/providers/google/google.php:100
2621
  #, fuzzy
2622
  #| msgid "Continue with <b>Google</b>"
2623
  msgid "Sign up with <b>Google</b>"
2624
  msgstr "Sigue con <b>Google</b>"
2625
 
2626
- #: nextend-facebook-connect/providers/google/google.php:101
2627
  msgid "Link account with <b>Google</b>"
2628
  msgstr "Enlazar cuenta con <b>Google</b>"
2629
 
2630
- #: nextend-facebook-connect/providers/google/google.php:102
2631
  msgid "Unlink account from <b>Google</b>"
2632
  msgstr "Desenlazar cuenta de <b>Google</b>"
2633
 
2634
- #: nextend-facebook-connect/providers/google/google.php:295
2635
  #, fuzzy, php-format
2636
  #| msgid "Required scope: %1$s"
2637
  msgid "Required API: %1$s"
2638
  msgstr "Alcance requerido: %1$s"
2639
 
2640
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2641
  #, fuzzy
2642
  #| msgid "Name your project and then click on the Create button"
2643
  msgid ""
@@ -2645,59 +1761,49 @@ msgid ""
2645
  "like a gear.)"
2646
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2647
 
2648
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2649
  #, fuzzy
2650
  #| msgid "Click on the \"Create New App\" button"
2651
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2652
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2653
 
2654
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2655
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2656
  #, fuzzy, php-format
2657
  #| msgid ""
2658
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2659
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
2660
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2661
 
2662
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:22
2663
  #, fuzzy, php-format
2664
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
2665
  msgid ""
2666
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2667
  msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s"
2668
 
2669
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2670
  msgid ""
2671
  "If you don't have a developer account yet, please apply one by filling all "
2672
  "the required details! This is required for the next steps!"
2673
  msgstr ""
2674
 
2675
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2676
  #, php-format
2677
  msgid ""
2678
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
2679
  "aren't already there!"
2680
  msgstr ""
2681
 
2682
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2683
  #, fuzzy, php-format
2684
  #| msgid "Click on \"Save\""
2685
  msgid "Click on \"<b>%s</b>\"!"
2686
  msgstr "Haz clic en \"Guardar Cambios\""
2687
 
2688
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2689
  msgid ""
2690
  "Name your project, and go through the basic setup. You’ll need to select "
2691
  "your use case, give a description and enter a name for the App as well."
2692
  msgstr ""
2693
 
2694
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2695
  #, fuzzy, php-format
2696
  #| msgid "Click \"Edit\"."
2697
  msgid "Click \"<b>%s</b>\"!"
2698
  msgstr "Haz clic en \"Edit\"."
2699
 
2700
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2701
  #, php-format
2702
  msgid ""
2703
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
@@ -2705,33 +1811,28 @@ msgid ""
2705
  "press \"<b>Save Changes</b>\"."
2706
  msgstr ""
2707
 
2708
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2709
  #, php-format
2710
  msgid ""
2711
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2712
  "\" section click on the name of your App."
2713
  msgstr ""
2714
 
2715
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2716
  #, fuzzy, php-format
2717
  #| msgid "Name your project and then click on the Create button"
2718
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2719
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2720
 
2721
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2722
  #, fuzzy, php-format
2723
  #| msgid "Click on the Create button"
2724
  msgid "Switch on the \"<b>%s</b>\" option."
2725
  msgstr "Haz clic en el botón Create"
2726
 
2727
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:39
2728
  #, fuzzy, php-format
2729
  #| msgid ""
2730
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2731
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2732
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2733
 
2734
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:40
2735
  #, php-format
2736
  msgid ""
2737
  "If you want to get the email address as well, then don’t forget to enable "
@@ -2739,90 +1840,70 @@ msgid ""
2739
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
2740
  msgstr ""
2741
 
2742
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:41
2743
  #, fuzzy, php-format
2744
  #| msgid "Click on \"Save\""
2745
  msgid "Click on \"<b>%s</b>\"."
2746
  msgstr "Haz clic en \"Guardar Cambios\""
2747
 
2748
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:42
2749
  #, php-format
2750
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2751
  msgstr ""
2752
 
2753
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2754
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2755
  msgid "API Key"
2756
  msgstr ""
2757
 
2758
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2759
  #, fuzzy
2760
  #| msgid "Secure key"
2761
  msgid "API secret key"
2762
  msgstr "Secure key"
2763
 
2764
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2765
  msgid "Profile image size"
2766
  msgstr ""
2767
 
2768
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2769
  msgid "Original"
2770
  msgstr ""
2771
 
2772
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
2773
  msgid "Continue with <b>Twitter</b>"
2774
  msgstr "Sigue con <b>Twitter</b>"
2775
 
2776
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2777
  #, fuzzy
2778
  #| msgid "Continue with <b>Twitter</b>"
2779
  msgid "Sign up with <b>Twitter</b>"
2780
  msgstr "Sigue con <b>Twitter</b>"
2781
 
2782
- #: nextend-facebook-connect/providers/twitter/twitter.php:72
2783
  msgid "Link account with <b>Twitter</b>"
2784
  msgstr "Enlazar cuenta con <b>Twitter</b>"
2785
 
2786
- #: nextend-facebook-connect/providers/twitter/twitter.php:73
2787
  msgid "Unlink account from <b>Twitter</b>"
2788
  msgstr "Desenlazar cuenta de <b>Twitter</b>"
2789
 
2790
- #: nextend-facebook-connect/widget.php:10
2791
  #, php-format
2792
  msgid "%s Buttons"
2793
  msgstr "%s Botones"
2794
 
2795
- #: nextend-facebook-connect/widget.php:30
2796
  msgid "Title:"
2797
  msgstr "Titulo:"
2798
 
2799
- #: nextend-facebook-connect/widget.php:38
2800
  msgid "Button style:"
2801
  msgstr "Estilo de Botón:"
2802
 
2803
- #: nextend-facebook-connect/widget.php:53
2804
  #, fuzzy
2805
  #| msgid "Buttons"
2806
  msgid "Button align:"
2807
  msgstr "Botones"
2808
 
2809
- #: nextend-facebook-connect/widget.php:85
2810
  msgid "Show link buttons"
2811
  msgstr "Mostrar botones de enlazar"
2812
 
2813
- #: nextend-facebook-connect/widget.php:94
2814
  msgid "Show unlink buttons"
2815
  msgstr "Mostrar botones de desenlazar"
2816
 
2817
- #: nextend-social-login-pro/class-provider-extension.php:117
2818
  msgid "Social login is not allowed with this role!"
2819
  msgstr "¡Social login no esta permitido con este rol!"
2820
 
2821
- #: nextend-social-login-pro/class-provider-extension.php:213
2822
  msgid "Please enter a username."
2823
  msgstr "Por favor introduce un usuario."
2824
 
2825
- #: nextend-social-login-pro/class-provider-extension.php:216
2826
  msgid ""
2827
  "This username is invalid because it uses illegal characters. Please enter a "
2828
  "valid username."
@@ -2830,7 +1911,6 @@ msgstr ""
2830
  "Este usuario no es válido porque usa caracteres ilegales. Por favor ingresa "
2831
  "un usuario válido."
2832
 
2833
- #: nextend-social-login-pro/class-provider-extension.php:222
2834
  #, fuzzy
2835
  #| msgid "This username is already registered. Please choose another one."
2836
  msgid ""
@@ -2838,29 +1918,24 @@ msgid ""
2838
  "another one."
2839
  msgstr "Este nombre de usuario ya está registrado. Por favor escoge otro."
2840
 
2841
- #: nextend-social-login-pro/class-provider-extension.php:229
2842
  #, fuzzy
2843
  #| msgid "Sorry, that username is not allowed."
2844
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
2845
  msgstr "Lo sentimos, ese usuario no está permitido."
2846
 
2847
- #: nextend-social-login-pro/class-provider-extension.php:247
2848
  msgid "Username"
2849
  msgstr "Usuario"
2850
 
2851
- #: nextend-social-login-pro/class-provider-extension.php:300
2852
  #, fuzzy
2853
  #| msgid "<strong>ERROR</strong>: Please enter a password."
2854
  msgid "<strong>Error</strong>: Please enter an email address."
2855
  msgstr "<strong>ERROR</strong>: Por favor introduce una contraseña."
2856
 
2857
- #: nextend-social-login-pro/class-provider-extension.php:303
2858
  #, fuzzy
2859
  #| msgid "The email address isn&#8217;t correct."
2860
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
2861
  msgstr "El email no es correcto."
2862
 
2863
- #: nextend-social-login-pro/class-provider-extension.php:307
2864
  #, fuzzy
2865
  #| msgid "This email is already registered, please choose another one."
2866
  msgid ""
@@ -2868,17 +1943,14 @@ msgid ""
2868
  "another one."
2869
  msgstr "Este email ya esta registrado, por favor escoge otro."
2870
 
2871
- #: nextend-social-login-pro/class-provider-extension.php:327
2872
  msgid "Registration confirmation will be emailed to you."
2873
  msgstr "La confirmación de registro será enviada por email."
2874
 
2875
- #: nextend-social-login-pro/class-provider-extension.php:386
2876
  #, fuzzy
2877
  #| msgid "<strong>ERROR</strong>: Please enter a password."
2878
  msgid "<strong>Error</strong>: Please enter a password."
2879
  msgstr "<strong>ERROR</strong>: Por favor introduce una contraseña."
2880
 
2881
- #: nextend-social-login-pro/class-provider-extension.php:392
2882
  #, fuzzy
2883
  #| msgid ""
2884
  #| "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
@@ -2886,7 +1958,6 @@ msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
2886
  msgstr ""
2887
  "<strong>ERROR</strong>: Contraseñas no pueden contener el caracter \"\\\"."
2888
 
2889
- #: nextend-social-login-pro/class-provider-extension.php:398
2890
  #, fuzzy
2891
  #| msgid ""
2892
  #| "<strong>ERROR</strong>: Please enter the same password in both password "
@@ -2898,23 +1969,18 @@ msgstr ""
2898
  "<strong>ERROR</strong>: Por favor introduce la misma contraseña en los dos "
2899
  "campos de contraseña."
2900
 
2901
- #: nextend-social-login-pro/class-provider-extension.php:415
2902
  msgid "Password"
2903
  msgstr "Contraseña"
2904
 
2905
- #: nextend-social-login-pro/class-provider-extension.php:425
2906
  msgid "Strength indicator"
2907
  msgstr "Indicador de dificultad"
2908
 
2909
- #: nextend-social-login-pro/class-provider-extension.php:430
2910
  msgid "Confirm use of weak password"
2911
  msgstr "Confirmar el uso de contraseña débil"
2912
 
2913
- #: nextend-social-login-pro/class-provider-extension.php:436
2914
  msgid "Confirm password"
2915
  msgstr "Confirmar contraseña"
2916
 
2917
- #: nextend-social-login-pro/class-provider-extension.php:448
2918
  #, php-format
2919
  msgid ""
2920
  "This email is already registered, please login in to your account to link "
@@ -2923,47 +1989,37 @@ msgstr ""
2923
  "Este email ya está registrado, por favor inicia sesión en tu cuenta para "
2924
  "vincularlo con %1$s."
2925
 
2926
- #: nextend-social-login-pro/nextend-social-login-pro.php:104
2927
  #, php-format
2928
  msgid "Please install and activate %1$s to use the %2$s"
2929
  msgstr "Por favor instala y activa %1$s para usar el %2$s"
2930
 
2931
- #: nextend-social-login-pro/nextend-social-login-pro.php:118
2932
  msgid "Network Activate"
2933
  msgstr "Activar Red"
2934
 
2935
- #: nextend-social-login-pro/nextend-social-login-pro.php:130
2936
  msgid "Install now!"
2937
  msgstr "¡Instalar ahora!"
2938
 
2939
- #: nextend-social-login-pro/nextend-social-login-pro.php:826
2940
  #, fuzzy
2941
  #| msgid "Providers"
2942
  msgid "Social Providers"
2943
  msgstr "Proveedores"
2944
 
2945
- #: nextend-social-login-pro/provider-extensions/facebook.php:74
2946
  #, php-format
2947
  msgid ""
2948
  "The Facebook Sync data needs an approved %1$s and your App must use the "
2949
  "latest %2$s version!"
2950
  msgstr ""
2951
 
2952
- #: nextend-social-login-pro/provider-extensions/google.php:187
2953
  #, php-format
2954
  msgid ""
2955
  "Most of these information can only be retrieved, when the field is marked as "
2956
  "Public on the user's %s page!"
2957
  msgstr ""
2958
 
2959
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2960
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2961
  #, php-format
2962
  msgid "Visit %s"
2963
  msgstr "Visita %s"
2964
 
2965
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2966
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2967
  #, fuzzy
2968
  #| msgid ""
2969
  #| "On the right side, under \"Manage\", hover over the gear icon and select "
@@ -2975,28 +2031,17 @@ msgstr ""
2975
  "En el lado derecho, en \"Manage\", desplaza el cursor sobre el ícono de "
2976
  "ajustes y selecciona la opción \"Web Settings\"."
2977
 
2978
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2979
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2980
  #, fuzzy
2981
  #| msgid "Click \"Edit\"."
2982
  msgid "Click \"<b>Edit</b>\"."
2983
  msgstr "Haz clic en \"Edit\"."
2984
 
2985
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:15
2986
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
2987
  #, fuzzy
2988
  #| msgid ""
2989
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2990
  msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2991
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2992
 
2993
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
2994
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2995
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:10
2996
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:10
2997
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2998
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2999
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10
3000
  #, php-format
3001
  msgid ""
3002
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -3011,7 +2056,6 @@ msgstr ""
3011
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
3012
  "dados según tu aplicación %1$s."
3013
 
3014
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
3015
  #, fuzzy
3016
  #| msgid ""
3017
  #| "If you don't have a Security Profile yet, you'll need to create one. You "
@@ -3026,7 +2070,6 @@ msgstr ""
3026
  "haciendo clic en el botón naranja \"Create a New Security Profile\" en el "
3027
  "lado izquierdo."
3028
 
3029
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
3030
  #, fuzzy
3031
  #| msgid ""
3032
  #| "Fill \"Security Profile Name\", \"Security Profile Description\" and "
@@ -3038,7 +2081,6 @@ msgstr ""
3038
  "Llena \"Security Profile Name\", \"Security Profile Description\" y "
3039
  "\"Consent Privacy Notice URL\"."
3040
 
3041
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
3042
  #, fuzzy
3043
  #| msgid "Once you filled all the required fields, click \"Save\"."
3044
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
@@ -3046,7 +2088,6 @@ msgstr ""
3046
  "Una vez que hayas completado todos los campos requeridos, haz clic en "
3047
  "\"Guardar\"."
3048
 
3049
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
3050
  #, fuzzy, php-format
3051
  #| msgid ""
3052
  #| "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</"
@@ -3058,15 +2099,12 @@ msgstr ""
3058
  "Llena \"Allowed Origins\" con la url de tu página principal, probablemente: "
3059
  "<b>%s</b>"
3060
 
3061
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:45
3062
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:41
3063
  #, fuzzy
3064
  #| msgid "When all fields are filled, click \"Save\"."
3065
  msgid "When all fields are filled, click \"<b>Save</b>\"."
3066
  msgstr ""
3067
  "Una vez que hayas completado todos los campos, haz clic en \"Guardar\"."
3068
 
3069
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:46
3070
  #, fuzzy
3071
  #| msgid ""
3072
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -3076,43 +2114,33 @@ msgid ""
3076
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
3077
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
3078
 
3079
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
3080
  msgid "Continue with <b>Amazon</b>"
3081
  msgstr "Sigue con <b>Amazon</b>"
3082
 
3083
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
3084
  #, fuzzy
3085
  #| msgid "Continue with <b>Amazon</b>"
3086
  msgid "Sign up with <b>Amazon</b>"
3087
  msgstr "Sigue con <b>Amazon</b>"
3088
 
3089
- #: nextend-social-login-pro/providers/amazon/amazon.php:42
3090
  msgid "Link account with <b>Amazon</b>"
3091
  msgstr "Enlazar cuenta con <b>Amazon</b>"
3092
 
3093
- #: nextend-social-login-pro/providers/amazon/amazon.php:43
3094
  msgid "Unlink account from <b>Amazon</b>"
3095
  msgstr "Desenlazar cuenta de <b>Amazon</b>"
3096
 
3097
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
3098
  #, fuzzy
3099
  #| msgid "Click on the Manage button at the App"
3100
  msgid "Click on the name of your service."
3101
  msgstr "Haz clic en el botón Manage en la App"
3102
 
3103
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22
3104
  msgid ""
3105
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
3106
  msgstr ""
3107
 
3108
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23
3109
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56
3110
  #, php-format
3111
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
3112
  msgstr ""
3113
 
3114
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24
3115
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:82
3116
  #, fuzzy, php-format
3117
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
3118
  msgid ""
@@ -3121,21 +2149,17 @@ msgid ""
3121
  msgstr ""
3122
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
3123
 
3124
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:27
3125
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:85
3126
  #, fuzzy
3127
  #| msgid ""
3128
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3129
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3130
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
3131
 
3132
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:35
3133
  msgid ""
3134
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
3135
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
3136
  msgstr ""
3137
 
3138
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30
3139
  #, fuzzy, php-format
3140
  #| msgid ""
3141
  #| "To allow your visitors to log in with their %1$s account, first you must "
@@ -3156,7 +2180,6 @@ msgstr ""
3156
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
3157
  "dados según tu aplicación %1$s."
3158
 
3159
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37
3160
  msgid ""
3161
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
3162
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
@@ -3164,35 +2187,29 @@ msgid ""
3164
  "App!"
3165
  msgstr ""
3166
 
3167
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
3168
  msgid ""
3169
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
3170
  "b>!"
3171
  msgstr ""
3172
 
3173
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43
3174
  msgid "1.) Create the associated App:"
3175
  msgstr ""
3176
 
3177
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45
3178
  #, php-format
3179
  msgid ""
3180
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
3181
  "option and click the \"Continue\" button."
3182
  msgstr ""
3183
 
3184
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46
3185
  #, php-format
3186
  msgid ""
3187
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
3188
  "\"<b>Continue</b>\" button."
3189
  msgstr ""
3190
 
3191
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47
3192
  msgid "Enter a \"<b>Description</b>\""
3193
  msgstr ""
3194
 
3195
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:48
3196
  #, php-format
3197
  msgid ""
3198
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
@@ -3200,185 +2217,150 @@ msgid ""
3200
  "app at its end: <b>%s.nslapp</b>"
3201
  msgstr ""
3202
 
3203
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:49
3204
  msgid ""
3205
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
3206
  "b>\" option."
3207
  msgstr ""
3208
 
3209
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50
3210
  msgid ""
3211
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
3212
  "\"<b>Register</b>\" button."
3213
  msgstr ""
3214
 
3215
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53
3216
  msgid "2.) Create the Key:"
3217
  msgstr ""
3218
 
3219
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55
3220
  #, php-format
3221
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
3222
  msgstr ""
3223
 
3224
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57
3225
  #, fuzzy
3226
  #| msgid "Enter the title of your app and select \"Websie\"."
3227
  msgid "Enter a name in the <b>Key Name</b> field."
3228
  msgstr "Ingresa el título de tu app y selecciona \"Websie\"."
3229
 
3230
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58
3231
  msgid ""
3232
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
3233
  "b>\"."
3234
  msgstr ""
3235
 
3236
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:59
3237
  msgid ""
3238
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
3239
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
3240
  "\"."
3241
  msgstr ""
3242
 
3243
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:60
3244
  msgid ""
3245
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
3246
  "\" button."
3247
  msgstr ""
3248
 
3249
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61
3250
  msgid "<b>Don't download the key yet!</b>"
3251
  msgstr ""
3252
 
3253
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64
3254
  msgid "3.) Create the Service:"
3255
  msgstr ""
3256
 
3257
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66
3258
  #, php-format
3259
  msgid ""
3260
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
3261
  "tab."
3262
  msgstr ""
3263
 
3264
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:67
3265
  #, php-format
3266
  msgid ""
3267
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
3268
  "option and click the \"<b>Continue</b>\" button."
3269
  msgstr ""
3270
 
3271
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:68
3272
  msgid "Enter a \"<b>Description</b>\"."
3273
  msgstr ""
3274
 
3275
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69
3276
  #, php-format
3277
  msgid ""
3278
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
3279
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
3280
  msgstr ""
3281
 
3282
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72
3283
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
3284
  msgstr ""
3285
 
3286
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:75
3287
  msgid ""
3288
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
3289
  msgstr ""
3290
 
3291
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76
3292
  #, php-format
3293
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
3294
  msgstr ""
3295
 
3296
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79
3297
  msgid ""
3298
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
3299
  "b>\" button next to it."
3300
  msgstr ""
3301
 
3302
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:81
3303
  msgid ""
3304
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
3305
  "App what you just created."
3306
  msgstr ""
3307
 
3308
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:95
3309
  #, fuzzy
3310
  #| msgid "Click on the \"Create New App\" button"
3311
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
3312
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3313
 
3314
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:96
3315
  msgid ""
3316
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
3317
  "button."
3318
  msgstr ""
3319
 
3320
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99
3321
  msgid "4.) Configure Nextend Social Login with your credentials:"
3322
  msgstr ""
3323
 
3324
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:101
3325
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
3326
  msgstr ""
3327
 
3328
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:102
3329
  msgid "<strong><u>Private Key ID:</u></strong>"
3330
  msgstr ""
3331
 
3332
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:104
3333
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
3334
  #, fuzzy, php-format
3335
  #| msgid "Navigate to %s"
3336
  msgid "Navigate to: <b>%s</b>"
3337
  msgstr "Navegar a %s"
3338
 
3339
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105
3340
  #, fuzzy
3341
  #| msgid "Click on the Manage button at the App"
3342
  msgid "Click on the <b>name of your Key</b>."
3343
  msgstr "Haz clic en el botón Manage en la App"
3344
 
3345
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:106
3346
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
3347
  msgstr ""
3348
 
3349
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:109
3350
  msgid "<strong><u>Private Key:</u></strong>"
3351
  msgstr ""
3352
 
3353
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111
3354
  msgid ""
3355
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
3356
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
3357
  "this file safe</b>!</u> "
3358
  msgstr ""
3359
 
3360
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:112
3361
  msgid ""
3362
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
3363
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
3364
  "\" field of Nextend Social Login."
3365
  msgstr ""
3366
 
3367
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115
3368
  msgid "<strong><u>Team Identifier:</u></strong>"
3369
  msgstr ""
3370
 
3371
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:117
3372
  msgid ""
3373
  "A 10 character long identifier, what you can find on the <b>top-right "
3374
  "corner, just under your name</b>."
3375
  msgstr ""
3376
 
3377
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:120
3378
  msgid "<strong><u>Service Identifier:</u></strong>"
3379
  msgstr ""
3380
 
3381
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:123
3382
  #, php-format
3383
  msgid ""
3384
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
@@ -3386,7 +2368,6 @@ msgid ""
3386
  "e.g.: <b>%s.nslclient</b>"
3387
  msgstr ""
3388
 
3389
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:126
3390
  #, fuzzy
3391
  #| msgid "Once you filled all the required fields, click \"Save\"."
3392
  msgid ""
@@ -3396,99 +2377,75 @@ msgstr ""
3396
  "Una vez que hayas completado todos los campos requeridos, haz clic en "
3397
  "\"Guardar\"."
3398
 
3399
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:127
3400
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
3401
  msgstr ""
3402
 
3403
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:128
3404
  msgid ""
3405
  "When you need to change your credentials for some reason, then you must "
3406
  "delete the token, copy the new credentials and generate a new token!"
3407
  msgstr ""
3408
 
3409
- #: nextend-social-login-pro/providers/apple/admin/settings.php:48
3410
  msgid "Delete credentials"
3411
  msgstr ""
3412
 
3413
- #: nextend-social-login-pro/providers/apple/admin/settings.php:78
3414
  msgid "Private Key ID"
3415
  msgstr ""
3416
 
3417
- #: nextend-social-login-pro/providers/apple/admin/settings.php:89
3418
  msgid "Private Key"
3419
  msgstr ""
3420
 
3421
- #: nextend-social-login-pro/providers/apple/admin/settings.php:98
3422
  msgid "Team Identifier"
3423
  msgstr ""
3424
 
3425
- #: nextend-social-login-pro/providers/apple/admin/settings.php:106
3426
  msgid "Service Identifier"
3427
  msgstr ""
3428
 
3429
- #: nextend-social-login-pro/providers/apple/admin/settings.php:116
3430
  msgid "Generate Token"
3431
  msgstr ""
3432
 
3433
- #: nextend-social-login-pro/providers/apple/apple.php:67
3434
  msgid "Continue with <b>Apple</b>"
3435
  msgstr "Sigue con <b>Apple</b>"
3436
 
3437
- #: nextend-social-login-pro/providers/apple/apple.php:68
3438
  #, fuzzy
3439
  msgid "Sign up with <b>Apple</b>"
3440
  msgstr "Sigue con <b>Apple</b>"
3441
 
3442
- #: nextend-social-login-pro/providers/apple/apple.php:69
3443
  #, fuzzy
3444
  msgid "Link account with <b>Apple</b>"
3445
  msgstr "Enlazar cuenta con <b>Apple</b>"
3446
 
3447
- #: nextend-social-login-pro/providers/apple/apple.php:70
3448
  #, fuzzy
3449
  msgid "Unlink account from <b>Apple</b>"
3450
  msgstr "Desenlazar cuenta de <b>Apple</b>"
3451
 
3452
- #: nextend-social-login-pro/providers/apple/apple.php:164
3453
  #, php-format
3454
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3455
  msgstr ""
3456
 
3457
- #: nextend-social-login-pro/providers/apple/apple.php:168
3458
- #: nextend-social-login-pro/providers/apple/apple.php:266
3459
- #: nextend-social-login-pro/providers/apple/apple.php:281
3460
- #: nextend-social-login-pro/providers/apple/apple.php:325
3461
  #, php-format
3462
  msgid "Token generation failed: %1$s"
3463
  msgstr ""
3464
 
3465
- #: nextend-social-login-pro/providers/apple/apple.php:168
3466
  msgid "Please check your credentials!"
3467
  msgstr ""
3468
 
3469
- #: nextend-social-login-pro/providers/apple/apple.php:266
3470
  msgid "Private key format is not valid!"
3471
  msgstr ""
3472
 
3473
- #: nextend-social-login-pro/providers/apple/apple.php:292
3474
  #, php-format
3475
  msgid ""
3476
  "%s detected that your Apple credentials have expired. Please delete the "
3477
  "current credentials and generate new one!"
3478
  msgstr ""
3479
 
3480
- #: nextend-social-login-pro/providers/apple/apple.php:294
3481
  msgid "Apple Credentials"
3482
  msgstr ""
3483
 
3484
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
3485
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
3486
  #, fuzzy, php-format
3487
  #| msgid "Click on the Manage button at the App"
3488
  msgid "Click on the name of your %s App."
3489
  msgstr "Haz clic en el botón Manage en la App"
3490
 
3491
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:11
3492
  #, fuzzy
3493
  #| msgid "Find the necessary Authentication Keys under the Authentication menu"
3494
  msgid ""
@@ -3496,21 +2453,16 @@ msgid ""
3496
  "section!"
3497
  msgstr "Busca las Authentication Keys abajo del menú Authentication"
3498
 
3499
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
3500
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:27
3501
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:33
3502
  #, fuzzy
3503
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3504
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3505
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
3506
 
3507
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:22
3508
  #, fuzzy
3509
  #| msgid "Click on \"Save Changes\""
3510
  msgid "Click on the \"<b>Save Changes</b>\" button."
3511
  msgstr "Haz clic en \"Guardar Cambios\""
3512
 
3513
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
3514
  #, fuzzy
3515
  #| msgid "Click on the \"Create New App\" button"
3516
  msgid ""
@@ -3518,11 +2470,9 @@ msgid ""
3518
  "Applications tab."
3519
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3520
 
3521
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
3522
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
3523
  msgstr ""
3524
 
3525
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
3526
  #, fuzzy, php-format
3527
  #| msgid ""
3528
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
@@ -3532,7 +2482,6 @@ msgstr ""
3532
  "Llena \"Website URL\" con la URL de tu página principal, probablemente: <b>"
3533
  "%s</b>"
3534
 
3535
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
3536
  #, fuzzy
3537
  #| msgid "Click on the \"Create New App\" button"
3538
  msgid ""
@@ -3540,14 +2489,12 @@ msgid ""
3540
  "button."
3541
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3542
 
3543
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
3544
  #, fuzzy, php-format
3545
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
3546
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
3547
  msgstr ""
3548
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
3549
 
3550
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
3551
  #, fuzzy
3552
  #| msgid "Find the necessary Authentication Keys under the Authentication menu"
3553
  msgid ""
@@ -3555,17 +2502,14 @@ msgid ""
3555
  "section."
3556
  msgstr "Busca las Authentication Keys abajo del menú Authentication"
3557
 
3558
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:35
3559
  #, fuzzy
3560
  #| msgid "Click on \"Save Changes\""
3561
  msgid "Click on the \"<b>Save Changes</b>\" button!"
3562
  msgstr "Haz clic en \"Guardar Cambios\""
3563
 
3564
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:36
3565
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
3566
  msgstr ""
3567
 
3568
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:37
3569
  #, fuzzy
3570
  #| msgid ""
3571
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -3579,70 +2523,57 @@ msgstr ""
3579
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
3580
  "plugin."
3581
 
3582
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
3583
  #, fuzzy
3584
  #| msgid "App Secret"
3585
  msgid "API Secret"
3586
  msgstr "App Secret"
3587
 
3588
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
3589
  msgid "Continue with <b>Disqus</b>"
3590
  msgstr "Sigue con <b>Disqus</b>"
3591
 
3592
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3593
  #, fuzzy
3594
  #| msgid "Continue with <b>Disqus</b>"
3595
  msgid "Sign up with <b>Disqus</b>"
3596
  msgstr "Sigue con <b>Disqus</b>"
3597
 
3598
- #: nextend-social-login-pro/providers/disqus/disqus.php:89
3599
  msgid "Link account with <b>Disqus</b>"
3600
  msgstr "Enlazar cuenta con <b>Disqus</b>"
3601
 
3602
- #: nextend-social-login-pro/providers/disqus/disqus.php:90
3603
  msgid "Unlink account from <b>Disqus</b>"
3604
  msgstr "Desenlazar cuenta de <b>Disqus</b>"
3605
 
3606
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
3607
  #, fuzzy, php-format
3608
  #| msgid "Click on the Manage button at the App"
3609
  msgid "Click on the name of the App you configured %s with."
3610
  msgstr "Haz clic en el botón Manage en la App"
3611
 
3612
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:11
3613
  #, fuzzy, php-format
3614
  #| msgid ""
3615
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3616
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
3617
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
3618
 
3619
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:14
3620
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:25
3621
  #, fuzzy
3622
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3623
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
3624
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
3625
 
3626
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:22
3627
  #, fuzzy
3628
  #| msgid "Hit update to save the changes"
3629
  msgid "Press the <b>Update application</b> button to save the changes."
3630
  msgstr "Haz clic en update para guardar los cambios"
3631
 
3632
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:19
3633
  #, php-format
3634
  msgid ""
3635
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
3636
  "button."
3637
  msgstr ""
3638
 
3639
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:20
3640
  msgid ""
3641
  "Enter a name into the <b>Application name</b> field. Users will see this "
3642
  "name, when they authorize your app at the OAuth consent screen!"
3643
  msgstr ""
3644
 
3645
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:21
3646
  #, fuzzy, php-format
3647
  #| msgid ""
3648
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
@@ -3652,19 +2583,16 @@ msgstr ""
3652
  "Llena \"Website URL\" con la URL de tu página principal, probablemente: <b>"
3653
  "%s</b>"
3654
 
3655
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:22
3656
  msgid ""
3657
  "In the <b>Description</b> field you should explain what this App will be "
3658
  "used for."
3659
  msgstr ""
3660
 
3661
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:33
3662
  #, fuzzy
3663
  #| msgid "Click on the \"Create New App\" button"
3664
  msgid "Click the <b>Register application</b> button."
3665
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3666
 
3667
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:34
3668
  #, fuzzy
3669
  #| msgid ""
3670
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -3674,61 +2602,50 @@ msgid ""
3674
  "of the page. These will be needed in the plugin's settings!"
3675
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
3676
 
3677
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:37
3678
  #, php-format
3679
  msgid ""
3680
  "<b>Important note:</b> The email address is only retrievable, if there is a "
3681
  "public email address set at the %1$s profile page%2$s!"
3682
  msgstr ""
3683
 
3684
- #: nextend-social-login-pro/providers/github/github.php:125
3685
  msgid "Continue with <b>GitHub</b>"
3686
  msgstr "Sigue con <b>GitHub</b>"
3687
 
3688
- #: nextend-social-login-pro/providers/github/github.php:126
3689
  #, fuzzy
3690
  msgid "Sign up with <b>GitHub</b>"
3691
  msgstr "Sigue con <b>GitHub</b>"
3692
 
3693
- #: nextend-social-login-pro/providers/github/github.php:127
3694
  msgid "Link account with <b>GitHub</b>"
3695
  msgstr "Enlazar cuenta con <b>GitHub</b>"
3696
 
3697
- #: nextend-social-login-pro/providers/github/github.php:128
3698
  msgid "Unlink account from <b>GitHub</b>"
3699
  msgstr "Desenlazar cuenta de <b>GitHub</b>"
3700
 
3701
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:8
3702
  #, fuzzy, php-format
3703
  #| msgid "Navigate to %s"
3704
  msgid "Navigate to your %s"
3705
  msgstr "Navegar a %s"
3706
 
3707
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:10
3708
  #, php-format
3709
  msgid "Select your %s App and click on the LINE Login section."
3710
  msgstr ""
3711
 
3712
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:13
3713
  #, fuzzy
3714
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
3715
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
3716
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
3717
 
3718
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:17
3719
  #, php-format
3720
  msgid ""
3721
  "Editing Live Apps are only possible with a %s. So please make sure you own "
3722
  "one!"
3723
  msgstr ""
3724
 
3725
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:19
3726
  #, fuzzy
3727
  #| msgid "Click on the \"Create New App\" button"
3728
  msgid "Click the \"<b>Create a new provider</b>\" button."
3729
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3730
 
3731
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:20
3732
  #, fuzzy
3733
  #| msgid "Name your project and then click on the Create button"
3734
  msgid ""
@@ -3736,39 +2653,32 @@ msgid ""
3736
  "button."
3737
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
3738
 
3739
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:21
3740
  msgid ""
3741
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
3742
  "channel</b>\" option."
3743
  msgstr ""
3744
 
3745
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:22
3746
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
3747
  msgstr ""
3748
 
3749
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:23
3750
  msgid ""
3751
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
3752
  "created."
3753
  msgstr ""
3754
 
3755
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:24
3756
  #, fuzzy
3757
  #| msgid "Click on \"Save\""
3758
  msgid "Select your \"<b>Region</b>\"."
3759
  msgstr "Haz clic en \"Guardar Cambios\""
3760
 
3761
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:25
3762
  msgid ""
3763
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
3764
  "description</b>\". These will appear on your Consent Screen!"
3765
  msgstr ""
3766
 
3767
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:26
3768
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
3769
  msgstr ""
3770
 
3771
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:27
3772
  #, fuzzy
3773
  #| msgid "Name your project and then click on the Create button"
3774
  msgid ""
@@ -3776,31 +2686,26 @@ msgid ""
3776
  "\"<b>Create</b>\" button."
3777
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
3778
 
3779
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:28
3780
  msgid ""
3781
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
3782
  "near the \"<b>Email address permission</b>\" label."
3783
  msgstr ""
3784
 
3785
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:29
3786
  #, fuzzy
3787
  #| msgid "Click on the \"Create New App\" button"
3788
  msgid "Fill out the form, then click the \"<b>Submit</b>\" button."
3789
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3790
 
3791
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:30
3792
  msgid ""
3793
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
3794
  "section."
3795
  msgstr ""
3796
 
3797
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:41
3798
  msgid ""
3799
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
3800
  "Channel!"
3801
  msgstr ""
3802
 
3803
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:42
3804
  #, fuzzy
3805
  #| msgid ""
3806
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -3815,47 +2720,37 @@ msgstr ""
3815
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
3816
  "plugin."
3817
 
3818
- #: nextend-social-login-pro/providers/line/admin/settings.php:26
3819
  msgid "Channel ID"
3820
  msgstr ""
3821
 
3822
- #: nextend-social-login-pro/providers/line/admin/settings.php:38
3823
  #, fuzzy
3824
  #| msgid "Consumer Secret"
3825
  msgid "Channel Secret"
3826
  msgstr "Consumer Secret"
3827
 
3828
- #: nextend-social-login-pro/providers/line/line.php:36
3829
  #, fuzzy
3830
  #| msgid "Continue with <b>LinkedIn</b>"
3831
  msgid "Continue with <b>Line</b>"
3832
  msgstr "Sigue con <b>LinkedIn</b>"
3833
 
3834
- #: nextend-social-login-pro/providers/line/line.php:37
3835
  #, fuzzy
3836
  #| msgid "Continue with <b>LinkedIn</b>"
3837
  msgid "Sign up with <b>Line</b>"
3838
  msgstr "Sigue con <b>LinkedIn</b>"
3839
 
3840
- #: nextend-social-login-pro/providers/line/line.php:38
3841
  #, fuzzy
3842
  #| msgid "Link account with <b>LinkedIn</b>"
3843
  msgid "Link account with <b>Line</b>"
3844
  msgstr "Enlazar cuenta con <b>LinkedIn</b>"
3845
 
3846
- #: nextend-social-login-pro/providers/line/line.php:39
3847
  #, fuzzy
3848
  #| msgid "Unlink account from <b>LinkedIn</b>"
3849
  msgid "Unlink account from <b>Line</b>"
3850
  msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
3851
 
3852
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3853
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3854
  msgstr ""
3855
 
3856
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:13
3857
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
3858
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
3859
  #, fuzzy
3860
  #| msgid ""
3861
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -3864,41 +2759,31 @@ msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3864
  msgstr ""
3865
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3866
 
3867
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:21
3868
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:38
3869
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:22
3870
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:22
3871
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:21
3872
  #, fuzzy
3873
  #| msgid "Hit update to save the changes"
3874
  msgid "Click on \"<b>Update</b>\" to save the changes"
3875
  msgstr "Haz clic en update para guardar los cambios"
3876
 
3877
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
3878
  #, fuzzy
3879
  #| msgid "Locate the blue \"Create application\" button and click on it."
3880
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
3881
  msgstr "Busca el botón azul \"Create application\" y haz click en el."
3882
 
3883
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
3884
  #, fuzzy
3885
  #| msgid "Enter the title of your app and select \"Websie\"."
3886
  msgid "Enter the name of your App to the \"App name\" field."
3887
  msgstr "Ingresa el título de tu app y selecciona \"Websie\"."
3888
 
3889
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
3890
  #, php-format
3891
  msgid ""
3892
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
3893
  "one yet, create new one at: %s"
3894
  msgstr ""
3895
 
3896
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
3897
  msgid ""
3898
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
3899
  msgstr ""
3900
 
3901
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
3902
  #, fuzzy
3903
  #| msgid "Name your project and then click on the Create button"
3904
  msgid ""
@@ -3906,31 +2791,26 @@ msgid ""
3906
  "App</b>\" button!"
3907
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
3908
 
3909
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24
3910
  msgid ""
3911
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
3912
  "tab."
3913
  msgstr ""
3914
 
3915
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25
3916
  #, php-format
3917
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
3918
  msgstr ""
3919
 
3920
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:26
3921
  msgid ""
3922
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
3923
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
3924
  "button."
3925
  msgstr ""
3926
 
3927
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
3928
  #, fuzzy
3929
  #| msgid "Click on the Create button"
3930
  msgid "Click on the \"<b>Auth</b>\" tab."
3931
  msgstr "Haz clic en el botón Create"
3932
 
3933
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:30
3934
  #, fuzzy
3935
  #| msgid ""
3936
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -3941,7 +2821,6 @@ msgid ""
3941
  msgstr ""
3942
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3943
 
3944
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:39
3945
  #, fuzzy
3946
  #| msgid ""
3947
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -3951,42 +2830,33 @@ msgid ""
3951
  "the Application credentials section, on the <b>Auth</b> tab."
3952
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
3953
 
3954
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3955
  msgid "Continue with <b>LinkedIn</b>"
3956
  msgstr "Sigue con <b>LinkedIn</b>"
3957
 
3958
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3959
  #, fuzzy
3960
  #| msgid "Continue with <b>LinkedIn</b>"
3961
  msgid "Sign up with <b>LinkedIn</b>"
3962
  msgstr "Sigue con <b>LinkedIn</b>"
3963
 
3964
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3965
  msgid "Link account with <b>LinkedIn</b>"
3966
  msgstr "Enlazar cuenta con <b>LinkedIn</b>"
3967
 
3968
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3969
  msgid "Unlink account from <b>LinkedIn</b>"
3970
  msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
3971
 
3972
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:9
3973
  #, fuzzy, php-format
3974
  #| msgid "Log in with your %s credentials if you are not logged in"
3975
  msgid "Log in with your %s credentials if you are not logged in yet."
3976
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
3977
 
3978
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:10
3979
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:19
3980
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
3981
  msgstr ""
3982
 
3983
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:11
3984
  #, fuzzy, php-format
3985
  #| msgid "Click on the App with App ID: %s"
3986
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
3987
  msgstr "Haz clic en la App con la App ID: %s"
3988
 
3989
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:12
3990
  #, fuzzy
3991
  #| msgid ""
3992
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -3995,7 +2865,6 @@ msgid "Click on the link next to the Redirect URIs label."
3995
  msgstr ""
3996
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3997
 
3998
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:15
3999
  #, fuzzy
4000
  #| msgid ""
4001
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -4004,7 +2873,6 @@ msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
4004
  msgstr ""
4005
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
4006
 
4007
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:18
4008
  #, fuzzy, php-format
4009
  #| msgid "Log in with your %s credentials if you are not logged in"
4010
  msgid ""
@@ -4012,26 +2880,22 @@ msgid ""
4012
  "account."
4013
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
4014
 
4015
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:20
4016
  #, fuzzy
4017
  #| msgid "Click on \"Save\""
4018
  msgid "Click on \"<b>New registration</b>\"."
4019
  msgstr "Haz clic en \"Guardar Cambios\""
4020
 
4021
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:21
4022
  #, fuzzy
4023
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
4024
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
4025
  msgstr ""
4026
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
4027
 
4028
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:22
4029
  msgid ""
4030
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
4031
  "account types."
4032
  msgstr ""
4033
 
4034
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:25
4035
  #, fuzzy
4036
  #| msgid ""
4037
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -4040,41 +2904,34 @@ msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
4040
  msgstr ""
4041
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
4042
 
4043
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:33
4044
  #, fuzzy
4045
  #| msgid "Click on the \"Create New App\" button"
4046
  msgid "Create your App with the \"<b>Register</b>\" button."
4047
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
4048
 
4049
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:34
4050
  #, fuzzy
4051
  #| msgid "Click on the Create button"
4052
  msgid "You land on the \"<b>Overview</b>\" page."
4053
  msgstr "Haz clic en el botón Create"
4054
 
4055
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:35
4056
  msgid ""
4057
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
4058
  "(client) ID</b> in the plugin settings."
4059
  msgstr ""
4060
 
4061
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:36
4062
  msgid ""
4063
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
4064
  "Client credentials label."
4065
  msgstr ""
4066
 
4067
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:37
4068
  #, fuzzy
4069
  #| msgid "Click on \"Save\""
4070
  msgid "Click on \"<b>New client secret</b>\"."
4071
  msgstr "Haz clic en \"Guardar Cambios\""
4072
 
4073
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:38
4074
  msgid "Fill the \"<b>Description</b>\" field."
4075
  msgstr ""
4076
 
4077
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:39
4078
  #, fuzzy
4079
  #| msgid ""
4080
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -4083,11 +2940,9 @@ msgid "Set the expiration date at the \"<b>Expires</b>\" field."
4083
  msgstr ""
4084
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
4085
 
4086
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:40
4087
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
4088
  msgstr ""
4089
 
4090
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:41
4091
  #, fuzzy
4092
  #| msgid ""
4093
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -4101,127 +2956,103 @@ msgstr ""
4101
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
4102
  "plugin."
4103
 
4104
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:26
4105
  #, fuzzy
4106
  #| msgid "Application ID"
4107
  msgid "Application (client) ID"
4108
  msgstr "Application ID"
4109
 
4110
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:38
4111
  #, fuzzy
4112
  #| msgid "Client Secret"
4113
  msgid "Client secret"
4114
  msgstr "Client Secret"
4115
 
4116
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:38
4117
  #, fuzzy
4118
  #| msgid "Continue with <b>Yahoo</b>"
4119
  msgid "Continue with <b>Microsoft</b>"
4120
  msgstr "Sigue con <b>Yahoo</b>"
4121
 
4122
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:39
4123
  #, fuzzy
4124
  msgid "Sign up with <b>Microsoft</b>"
4125
  msgstr "Sigue con <b>Yahoo</b>"
4126
 
4127
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:40
4128
  #, fuzzy
4129
  #| msgid "Link account with <b>Yahoo</b>"
4130
  msgid "Link account with <b>Microsoft</b>"
4131
  msgstr "Enlazar cuenta con <b>Yahoo</b>"
4132
 
4133
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:41
4134
  #, fuzzy
4135
  #| msgid "Unlink account from <b>Yahoo</b>"
4136
  msgid "Unlink account from <b>Microsoft</b>"
4137
  msgstr "Desenlazar cuenta de <b>Yahoo</b>"
4138
 
4139
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
4140
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
4141
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
4142
  msgstr ""
4143
 
4144
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
4145
  #, fuzzy, php-format
4146
  #| msgid "Click on the Manage button at the App"
4147
  msgid "Click on the name of your %s App, under the REST API apps section."
4148
  msgstr "Haz clic en el botón Manage en la App"
4149
 
4150
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
4151
  msgid ""
4152
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
4153
  "b>\" heading and click \"<b>Show</b>\"."
4154
  msgstr ""
4155
 
4156
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
4157
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
4158
  #, fuzzy
4159
  #| msgid ""
4160
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
4161
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
4162
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
4163
 
4164
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:23
4165
  msgid "Click on \"Save\""
4166
  msgstr "Haz clic en \"Guardar Cambios\""
4167
 
4168
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
4169
  #, php-format
4170
  msgid ""
4171
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
4172
  "step, if not click on the link!"
4173
  msgstr ""
4174
 
4175
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
4176
  msgid "Click on Registration and create a Business account."
4177
  msgstr ""
4178
 
4179
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
4180
  msgid "If you are done, follow the guide from the 5. step."
4181
  msgstr ""
4182
 
4183
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
4184
  #, fuzzy, php-format
4185
  #| msgid "Log in with your %s credentials if you are not logged in."
4186
  msgid "Log in with your %s credentials."
4187
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
4188
 
4189
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
4190
  #, fuzzy
4191
  #| msgid "Click on the \"Create New App\" button"
4192
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
4193
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
4194
 
4195
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
4196
  msgid ""
4197
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
4198
  msgstr ""
4199
 
4200
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
4201
  msgid ""
4202
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
4203
  "b>\" heading then click \"<b>Show</b>\"."
4204
  msgstr ""
4205
 
4206
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:36
4207
  msgid ""
4208
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
4209
  "with PayPal</b>\"."
4210
  msgstr ""
4211
 
4212
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:37
4213
  msgid ""
4214
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
4215
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
4216
  msgstr ""
4217
 
4218
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:38
4219
  #, fuzzy
4220
  #| msgid "Please enter an email address."
4221
  msgid "Tick \"<b>Full name</b>\"."
4222
  msgstr "Por favor introduce un email."
4223
 
4224
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:39
4225
  msgid ""
4226
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
4227
  "email address as well, <b>please submit your App for a review</b> after your "
@@ -4230,65 +3061,52 @@ msgid ""
4230
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
4231
  msgstr ""
4232
 
4233
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:40
4234
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
4235
  msgstr ""
4236
 
4237
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:42
4238
  msgid ""
4239
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
4240
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
4241
  "\"<b>Live</b>\" mode and not \"Sandbox\". )"
4242
  msgstr ""
4243
 
4244
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
4245
  #, fuzzy
4246
  #| msgid "App Secret"
4247
  msgid "Secret"
4248
  msgstr "App Secret"
4249
 
4250
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:45
4251
  #, fuzzy
4252
  #| msgid "Email"
4253
  msgid "Email scope"
4254
  msgstr "Email"
4255
 
4256
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:54
4257
  msgid "Disable, when you have no rights for email address."
4258
  msgstr ""
4259
 
4260
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
4261
  msgid "Continue with <b>PayPal</b>"
4262
  msgstr "Sigue con <b>PayPal</b>"
4263
 
4264
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
4265
  #, fuzzy
4266
  #| msgid "Continue with <b>PayPal</b>"
4267
  msgid "Sign up with <b>PayPal</b>"
4268
  msgstr "Sigue con <b>PayPal</b>"
4269
 
4270
- #: nextend-social-login-pro/providers/paypal/paypal.php:67
4271
  msgid "Link account with <b>PayPal</b>"
4272
  msgstr "Enlazar cuenta con <b>PayPal</b>"
4273
 
4274
- #: nextend-social-login-pro/providers/paypal/paypal.php:68
4275
  msgid "Unlink account from <b>PayPal</b>"
4276
  msgstr "Desenlazar cuenta de <b>PayPal</b>"
4277
 
4278
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
4279
  #, fuzzy
4280
  #| msgid "Click on the Manage button at the App"
4281
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
4282
  msgstr "Haz clic en el botón Manage en la App"
4283
 
4284
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
4285
  #, fuzzy
4286
  #| msgid "Go to the Settings menu"
4287
  msgid "Go to the \"<b>Settings</b>\" menu"
4288
  msgstr "Ve al menú de Ajustes"
4289
 
4290
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:14
4291
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:28
4292
  #, fuzzy
4293
  #| msgid ""
4294
  #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
@@ -4296,13 +3114,11 @@ msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
4296
  msgstr ""
4297
  "Agrega la siguiente URL al campo \"Authorized redirect URI\": <b>%s</b>"
4298
 
4299
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
4300
  #, fuzzy
4301
  #| msgid "Locate the blue \"Create application\" button and click on it."
4302
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
4303
  msgstr "Busca el botón azul \"Create application\" y haz click en el."
4304
 
4305
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
4306
  #, fuzzy
4307
  #| msgid "Enter the title of your app and select \"Websie\"."
4308
  msgid ""
@@ -4310,7 +3126,6 @@ msgid ""
4310
  "platform."
4311
  msgstr "Ingresa el título de tu app y selecciona \"Websie\"."
4312
 
4313
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
4314
  #, fuzzy, php-format
4315
  #| msgid ""
4316
  #| "Fill \"Site address\" with the url of your homepage, probably: <b>%s</b>"
@@ -4321,7 +3136,6 @@ msgstr ""
4321
  "Llena \"Site address\" con la url de tu página principal, probablemente: <b>"
4322
  "%s</b>"
4323
 
4324
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
4325
  #, fuzzy, php-format
4326
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
4327
  msgid ""
@@ -4329,14 +3143,12 @@ msgid ""
4329
  msgstr ""
4330
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
4331
 
4332
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
4333
  #, fuzzy
4334
  #| msgid "When all fields are filled, click \"Save\"."
4335
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
4336
  msgstr ""
4337
  "Una vez que hayas completado todos los campos, haz clic en \"Guardar\"."
4338
 
4339
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
4340
  #, fuzzy
4341
  #| msgid "Fill the form for your app and upload an app icon then hit Save."
4342
  msgid ""
@@ -4346,19 +3158,16 @@ msgstr ""
4346
  "Llena el formulario de tu app y carga un ícono de la app, luego haz clic en "
4347
  "Guardar."
4348
 
4349
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
4350
  #, fuzzy
4351
  #| msgid "Pick Settings at the left-hand menu "
4352
  msgid "Pick <b>Settings</b> at the left-hand menu "
4353
  msgstr "Escoge Ajustes en el menú de la izquierda"
4354
 
4355
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:36
4356
  #, fuzzy
4357
  #| msgid "Save your app"
4358
  msgid "<b>Save</b> your app"
4359
  msgstr "Guarda tu app"
4360
 
4361
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:37
4362
  #, fuzzy
4363
  #| msgid ""
4364
  #| "Find the necessary Application ID and Secure key at the top of the "
@@ -4370,43 +3179,34 @@ msgstr ""
4370
  "Busca la Application ID y Secure key en la parte superior de la página "
4371
  "Ajustes dónde acabas de hacer clic en el botón de guardar."
4372
 
4373
- #: nextend-social-login-pro/providers/vk/admin/settings.php:39
4374
  msgid "Secure key"
4375
  msgstr "Secure key"
4376
 
4377
- #: nextend-social-login-pro/providers/vk/vk.php:36
4378
  msgid "Continue with <b>VK</b>"
4379
  msgstr "Sigue con <b>VK</b>"
4380
 
4381
- #: nextend-social-login-pro/providers/vk/vk.php:37
4382
  #, fuzzy
4383
  #| msgid "Continue with <b>VK</b>"
4384
  msgid "Sign up with <b>VK</b>"
4385
  msgstr "Sigue con <b>VK</b>"
4386
 
4387
- #: nextend-social-login-pro/providers/vk/vk.php:38
4388
  msgid "Link account with <b>VK</b>"
4389
  msgstr "Enlazar cuenta con <b>VK</b>"
4390
 
4391
- #: nextend-social-login-pro/providers/vk/vk.php:39
4392
  msgid "Unlink account from <b>VK</b>"
4393
  msgstr "Desenlazar cuenta de <b>VK</b>"
4394
 
4395
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:11
4396
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
4397
  msgstr ""
4398
 
4399
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
4400
  #, fuzzy
4401
  #| msgid "Click on the \"Create New App\" button"
4402
  msgid "Click on the \"<b>Create New Application</b>\" button."
4403
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
4404
 
4405
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
4406
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
4407
  msgstr ""
4408
 
4409
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
4410
  #, fuzzy, php-format
4411
  #| msgid ""
4412
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
@@ -4417,31 +3217,25 @@ msgstr ""
4417
  "Llena \"Website URL\" con la URL de tu página principal, probablemente: <b>"
4418
  "%s</b>"
4419
 
4420
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:32
4421
  msgid "You can leave the \"Javascript Origins\" field blank!"
4422
  msgstr ""
4423
 
4424
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:33
4425
  msgid "Complete the human verification test."
4426
  msgstr ""
4427
 
4428
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:34
4429
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
4430
  msgstr ""
4431
 
4432
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:35
4433
  #, fuzzy
4434
  #| msgid "Click on the \"Create New App\" button"
4435
  msgid "Click the \"<b>Create</b>\" button!"
4436
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
4437
 
4438
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:36
4439
  msgid ""
4440
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
4441
  "next to Editing!"
4442
  msgstr ""
4443
 
4444
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:37
4445
  #, fuzzy
4446
  #| msgid ""
4447
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -4455,30 +3249,23 @@ msgstr ""
4455
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
4456
  "plugin."
4457
 
4458
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
4459
  msgid "Continue with <b>WordPress.com</b>"
4460
  msgstr "Sigue con <b>WordPress.com</b>"
4461
 
4462
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
4463
  #, fuzzy
4464
  #| msgid "Continue with <b>WordPress.com</b>"
4465
  msgid "Sign up with <b>WordPress.com</b>"
4466
  msgstr "Sigue con <b>WordPress.com</b>"
4467
 
4468
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
4469
  msgid "Link account with <b>WordPress.com</b>"
4470
  msgstr "Enlazar cuenta con <b>WordPress.com</b>"
4471
 
4472
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
4473
  msgid "Unlink account from <b>WordPress.com</b>"
4474
  msgstr "Desenlazar cuenta de <b>WordPress.com</b>"
4475
 
4476
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
4477
  msgid "Click on the App which has its credentials associated with the plugin."
4478
  msgstr ""
4479
 
4480
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:13
4481
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:26
4482
  #, fuzzy
4483
  #| msgid ""
4484
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
@@ -4487,23 +3274,19 @@ msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
4487
  msgstr ""
4488
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
4489
 
4490
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20
4491
  #, fuzzy
4492
  #| msgid "Click on the \"Create New App\" button"
4493
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
4494
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
4495
 
4496
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21
4497
  msgid ""
4498
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
4499
  "at \"<b>Application Type</b>\"."
4500
  msgstr ""
4501
 
4502
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22
4503
  msgid "Enter a \"<b>Description</b>\" for your app!"
4504
  msgstr ""
4505
 
4506
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23
4507
  #, fuzzy, php-format
4508
  #| msgid ""
4509
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
@@ -4511,19 +3294,16 @@ msgid ""
4511
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
4512
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
4513
 
4514
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:34
4515
  msgid ""
4516
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
4517
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
4518
  msgstr ""
4519
 
4520
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:35
4521
  #, fuzzy
4522
  #| msgid "Click on the \"Create New App\" button"
4523
  msgid "Click \"<b>Create App</b>\"."
4524
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
4525
 
4526
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:36
4527
  #, fuzzy
4528
  #| msgid ""
4529
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -4537,66 +3317,27 @@ msgstr ""
4537
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
4538
  "plugin."
4539
 
4540
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
4541
  msgid "Continue with <b>Yahoo</b>"
4542
  msgstr "Sigue con <b>Yahoo</b>"
4543
 
4544
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4545
  #, fuzzy
4546
  msgid "Sign up with <b>Yahoo</b>"
4547
  msgstr "Sigue con <b>Yahoo</b>"
4548
 
4549
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
4550
  msgid "Link account with <b>Yahoo</b>"
4551
  msgstr "Enlazar cuenta con <b>Yahoo</b>"
4552
 
4553
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
4554
  msgid "Unlink account from <b>Yahoo</b>"
4555
  msgstr "Desenlazar cuenta de <b>Yahoo</b>"
4556
 
4557
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4558
  #, fuzzy, php-format
4559
  #| msgid "Required scope: %1$s"
4560
  msgid "Required permission: %1$s"
4561
  msgstr "Alcance requerido: %1$s"
4562
 
4563
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4564
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4565
- #: nextend-social-login-pro/template-parts/buddypress/register/above-separator.php:25
4566
- #: nextend-social-login-pro/template-parts/buddypress/register/below-separator.php:25
4567
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4568
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4569
- #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4570
- #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4571
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4572
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4573
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4574
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4575
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4576
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4577
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4578
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4579
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4580
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4581
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4582
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4583
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4584
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4585
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4586
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4587
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4588
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4589
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4590
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4591
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4592
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4593
  msgid "OR"
4594
  msgstr "O"
4595
 
4596
- #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
4597
- #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2
4598
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
4599
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
4600
  msgid "Social accounts"
4601
  msgstr "Cuentas sociales"
4602
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-09-13 20:36+0200\n"
5
+ "PO-Revision-Date: 2021-09-13 20:36+0200\n"
6
  "Last-Translator: Gabriel Vilaró <gabo@etereo.ch>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: es_419\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-Flags-xgettext: --no-location\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
 
24
  msgid "What personal data we collect and why we collect it"
25
  msgstr ""
26
 
 
27
  #, php-format
28
  msgid ""
29
  "%1$s collects data when a visitor register, login or link the account with "
33
  "feature."
34
  msgstr ""
35
 
 
36
  msgid "Who we share your data with"
37
  msgstr ""
38
 
 
39
  #, php-format
40
  msgid ""
41
  "%1$s stores the personal data on your site and does not share it with anyone "
43
  "the social providers."
44
  msgstr ""
45
 
 
46
  msgid "Does the plugin share personal data with third parties"
47
  msgstr ""
48
 
 
49
  #, php-format
50
  msgid ""
51
  "%1$s use the access token what the social provider gave to communicate with "
52
  "the providers to verify account and securely access personal data."
53
  msgstr ""
54
 
 
55
  msgid "How long we retain your data"
56
  msgstr ""
57
 
 
58
  #, php-format
59
  msgid ""
60
  "%1$s removes the collected personal data when the user deleted from "
61
  "WordPress."
62
  msgstr ""
63
 
 
64
  msgid "Does the plugin use personal data collected by others?"
65
  msgstr ""
66
 
 
67
  #, php-format
68
  msgid ""
69
  "%1$s use the personal data collected by the social providers to create "
70
  "account on your site when the visitor authorize it."
71
  msgstr ""
72
 
 
73
  msgid "Does the plugin store things in the browser?"
74
  msgstr ""
75
 
 
76
  #, php-format
77
  msgid ""
78
  "Yes, %1$s must create a cookie for visitors who use the social login "
80
  "communication and to redirect the user back to the last location."
81
  msgstr ""
82
 
 
83
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
84
  msgstr ""
85
 
 
 
86
  msgid "No"
87
  msgstr ""
88
 
 
89
  msgid ""
90
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
91
  "third party?"
92
  msgstr ""
93
 
 
 
94
  msgid "User"
95
  msgstr "Usario"
96
 
 
97
  #, php-format
98
  msgid "%s needs json_decode function."
99
  msgstr "%s necesita la función json_decode."
100
 
 
101
  msgid "Please contact your server administrator and ask for solution!"
102
  msgstr ""
103
  "¡Por favor, ponte en contacto con el administrador de tu servidor y solicita "
104
  "una solución!"
105
 
 
 
106
  msgid "Settings saved."
107
  msgstr "Ajustes guardados."
108
 
 
109
  #, fuzzy
110
  #| msgid "The authorization was successful"
111
  msgid "The activation was successful"
112
  msgstr "La autorización fue exitosa"
113
 
 
114
  #, fuzzy
115
  #| msgid "Deauthorize completed."
116
  msgid "Deactivate completed."
117
  msgstr "Desautorizar completado."
118
 
 
 
 
 
 
119
  msgid "Settings"
120
  msgstr "Ajustes"
121
 
 
 
 
 
 
 
 
122
  #, php-format
123
  msgid "Unexpected response: %s"
124
  msgstr "Respuesta inesperada: %s"
125
 
 
 
126
  #, php-format
127
  msgid ""
128
  "%s detected that your login url changed. You must update the Oauth redirect "
131
  "%s detectó que tu URL de inicio de sesión cambió. Debes actualizar los URI "
132
  "de redireccionamiento de Oauth en las aplicaciones sociales relacionadas."
133
 
 
 
134
  msgid "Fix Error"
135
  msgstr "Arreglar Error"
136
 
 
137
  msgid "Oauth Redirect URI"
138
  msgstr "URI de redireccionamiento de Oauth"
139
 
 
140
  #, php-format
141
  msgid ""
142
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
145
  "%1$s detectó que %2$s está instalado en tu sitio. ¡Necesitas el Pro Addon "
146
  "para mostrar los botones de Social Login en el formulario de acceso de %2$s!"
147
 
 
148
  msgid "Dismiss and check Pro Addon"
149
  msgstr "Descartar y verificar Pro Addon"
150
 
 
151
  msgid "Dismiss"
152
  msgstr "Descartar"
153
 
 
154
  #, php-format
155
  msgid ""
156
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
158
  "work properly."
159
  msgstr ""
160
 
 
161
  #, fuzzy
162
  #| msgid "Fix Error"
163
  msgid "Fix now"
164
  msgstr "Arreglar Error"
165
 
 
166
  #, fuzzy
167
  #| msgid "Activate Pro Addon"
168
  msgid "Activate your Pro Addon"
169
  msgstr "Activar Pro Addon"
170
 
 
171
  #, fuzzy
172
  #| msgid ""
173
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
182
  "Pro Addon. Puedes hacer esto haciendo clic en el botón Autorizar a "
183
  "continuación y luego seleccionar la compra relacionada."
184
 
 
 
185
  msgid "Activate"
186
  msgstr "Activar"
187
 
 
188
  msgid "License key"
189
  msgstr "Clave de licencia"
190
 
 
191
  msgid "OAuth proxy page"
192
  msgstr ""
193
 
 
194
  #, fuzzy
195
  #| msgid "Register layout"
196
  msgid "Register flow page"
197
  msgstr "Diseño de Registro"
198
 
 
199
  #, php-format
200
  msgid ""
201
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
203
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
204
  msgstr ""
205
 
 
 
206
  msgid "You have logged in successfully."
207
  msgstr "Has ingresado exitosamente."
208
 
 
209
  msgid "Login label"
210
  msgstr "Etiqueta de acceso"
211
 
 
 
 
 
 
 
 
212
  msgid "Reset to default"
213
  msgstr "Restablecer los valores predeterminados"
214
 
 
215
  #, fuzzy
216
  #| msgid "Register layout"
217
  msgid "Register label"
218
  msgstr "Diseño de Registro"
219
 
 
220
  msgid "Link label"
221
  msgstr "Etiqueta de enlace"
222
 
 
223
  msgid "Unlink label"
224
  msgstr "Etiqueta de desenlazar"
225
 
 
226
  msgid "Default button"
227
  msgstr "Botón predeterminado"
228
 
 
 
229
  msgid "Use custom button"
230
  msgstr "Usa botón personalizado"
231
 
 
232
  #, php-format
233
  msgid "Use the %s in your custom button's code to make the label show up."
234
  msgstr ""
235
  "Use el %s en el código de tu botón personalizado para que aparezca la "
236
  "etiqueta."
237
 
 
238
  msgid "Icon button"
239
  msgstr "Botón de icono"
240
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
241
  msgid "Save Changes"
242
  msgstr "Guardar Cambios"
243
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  msgid "Getting Started"
245
  msgstr "Empezando"
246
 
 
247
  msgid "Buttons"
248
  msgstr "Botones"
249
 
 
250
  msgid "Sync data"
251
  msgstr "Sincronizar datos"
252
 
 
253
  msgid "Usage"
254
  msgstr "Uso"
255
 
 
256
  msgid "Other settings"
257
  msgstr "Otros ajustes"
258
 
 
259
  msgid "Username prefix on register"
260
  msgstr "Prefijo del usuario cuando se registra"
261
 
 
262
  msgid "Fallback username prefix on register"
263
  msgstr "Prefijo del usuario de reservo cuando se registra"
264
 
 
265
  #, fuzzy
266
  #| msgid "Used when username is invalid"
267
  msgid "Used when username is invalid or not stored"
268
  msgstr "Usado cuando el nombre del usuario no es válido"
269
 
 
 
 
270
  msgid "Terms and conditions"
271
  msgstr ""
272
 
 
273
  #, php-format
274
  msgid "Override global \"%1$s\""
275
  msgstr ""
276
 
 
 
 
277
  msgid "PRO settings"
278
  msgstr "Ajustes PRO"
279
 
 
 
280
  msgid "Ask E-mail on registration"
281
  msgstr "Preguntar E-mail durante el registro"
282
 
 
 
283
  msgid "Never"
284
  msgstr "Nunca"
285
 
 
286
  msgid "When email is not provided or empty"
287
  msgstr "Cuando el email no se proporciona o está vacío"
288
 
 
 
 
289
  msgid "Always"
290
  msgstr "Siempre"
291
 
 
 
292
  msgid "Ask Username on registration"
293
  msgstr "Preguntar Usuario durante el registro"
294
 
 
295
  msgid "Never, generate automatically"
296
  msgstr "Nunca, generar automáticamente"
297
 
 
298
  msgid "When username is empty or invalid"
299
  msgstr "Cuando el usuario está vacío o no es válido"
300
 
 
301
  msgid "Ask Password on registration"
302
  msgstr "Preguntar Contraseña al registrarse"
303
 
 
 
304
  msgid "Automatically connect the existing account upon registration"
305
  msgstr "Conectar automáticamente la cuenta existente al registrarse"
306
 
 
 
 
 
 
 
 
 
 
307
  msgid "Disabled"
308
  msgstr "Desactivado"
309
 
 
310
  msgid "Automatic, based on email address"
311
  msgstr "Automático, basado en la dirección de email"
312
 
 
313
  msgid "Disable login for the selected roles"
314
  msgstr "Deshabilitar inicio de sesión para los roles seleccionados"
315
 
 
316
  msgid "Default roles for user who registered with this provider"
317
  msgstr ""
318
  "Roles predeterminados para el usuario que se registró con este proveedor"
319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  msgid "Default"
321
  msgstr "Predeterminado"
322
 
 
323
  msgid "Register"
324
  msgstr "Registrarse"
325
 
 
326
  msgid "Login"
327
  msgstr "Iniciar Sesión"
328
 
 
329
  msgid "Link"
330
  msgstr "Enlace"
331
 
 
332
  msgid "Store in meta key"
333
  msgstr "Guardar en clave meta"
334
 
 
335
  msgid "Shortcode"
336
  msgstr "Código corto"
337
 
 
338
  #, fuzzy
339
  #| msgid "Import"
340
  msgid "Important!"
341
  msgstr "Importar"
342
 
 
343
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
344
  msgstr ""
345
 
 
346
  msgid "See the full list of shortcode parameters."
347
  msgstr ""
348
 
 
349
  msgid "Simple link"
350
  msgstr "Enlace simple"
351
 
 
352
  msgid "Click here to login or register"
353
  msgstr "Haz clic aquí para iniciar sesión o registrarse"
354
 
 
355
  msgid "Image button"
356
  msgstr "Botón de imagen"
357
 
 
358
  msgid "Image url"
359
  msgstr "URL de imagen"
360
 
 
 
361
  #, fuzzy
362
  #| msgid "Debug mode"
363
  msgid "Debug"
364
  msgstr "Modo de depuración"
365
 
 
366
  msgid "Test network connection with providers"
367
  msgstr ""
368
 
 
369
  msgid "You don't have cURL support, please enable it in php.ini!"
370
  msgstr ""
371
 
 
372
  #, php-format
373
  msgid "Test %1$s connection"
374
  msgstr ""
375
 
 
376
  msgid "Fix Oauth Redirect URIs"
377
  msgstr "Arregla los URI de redireccionamiento de Oauth"
378
 
 
379
  msgid "Every Oauth Redirect URI seems fine"
380
  msgstr "Cada URI de redireccionamiento de Oauth está bien"
381
 
 
382
  msgid "Got it"
383
  msgstr "Entiendo"
384
 
 
 
385
  msgid "Global Settings"
386
  msgstr "Ajustes Globales"
387
 
 
388
  msgid "General"
389
  msgstr "General"
390
 
 
391
  msgid "Privacy"
392
  msgstr ""
393
 
 
 
 
394
  msgid "Login Form"
395
  msgstr "Formulario de Acceso"
396
 
 
397
  msgid "Comment"
398
  msgstr "Comentario"
399
 
 
400
  msgid "Docs"
401
  msgstr "Documentos"
402
 
 
403
  msgid "Support"
404
  msgstr "Apoyo"
405
 
 
 
406
  msgid "Pro Addon"
407
  msgstr "Pro Addon"
408
 
 
409
  msgid "Providers"
410
  msgstr "Proveedores"
411
 
 
 
 
412
  msgid "Error"
413
  msgstr "Error"
414
 
 
415
  msgid ""
416
  "You don’t have sufficient permissions to install and activate plugins. "
417
  "Please contact your site’s administrator!"
419
  "No tienes suficientes permisos para instalar y activar plugins. ¡Por favor, "
420
  "ponte en contacto con el administrador de tu sitio!"
421
 
 
 
 
422
  msgid "Activate Pro Addon"
423
  msgstr "Activar Pro Addon"
424
 
 
425
  msgid ""
426
  "Pro Addon is installed but not activated. To be able to use the Pro "
427
  "features, you need to activate it."
429
  "Pro Addon está instalado pero no activado. Para poder usar las funciones "
430
  "Pro, debes activarlo."
431
 
 
 
432
  #, fuzzy
433
  #| msgid "Activate Pro Addon"
434
  msgid "Deactivate Pro Addon"
435
  msgstr "Activar Pro Addon"
436
 
 
 
437
  msgid "Pro Addon is not installed"
438
  msgstr "Pro Addon no está instalado"
439
 
 
440
  msgid ""
441
  "To access the Pro features, you need to install and activate the Pro Addon."
442
  msgstr ""
443
  "Para acceder a las funciones Pro, tienes que instalar y activar el Pro Addon."
444
 
 
445
  #, php-format
446
  msgid "Install %s now"
447
  msgstr "Instalar %s ahora"
448
 
 
 
449
  msgid "Install Pro Addon"
450
  msgstr "Instalar Pro Addon"
451
 
 
452
  msgid "Activating..."
453
  msgstr "Activando..."
454
 
 
455
  #, fuzzy
456
  #| msgid "Not Available"
457
  msgid "Not compatible!"
458
  msgstr "No Disponible"
459
 
 
460
  #, fuzzy, php-format
461
  #| msgid "Please update %1$s to version %2$s or newer."
462
  msgid ""
464
  "newer."
465
  msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
466
 
 
467
  #, fuzzy
468
  #| msgid "Activate Pro Addon"
469
  msgid "Update Pro Addon"
470
  msgstr "Activar Pro Addon"
471
 
 
472
  msgid "Pro Addon is installed and activated"
473
  msgstr "Pro Addon está instalado y activado"
474
 
 
475
  #, fuzzy
476
  #| msgid ""
477
  #| "You installed and activated the Pro Addon. If you don’t want to use it "
483
  "Instalaste y activaste el Pro Addon. Si no deseas volver a utilizarlo, "
484
  "puedes eliminar la autorización utilizando el siguiente botón."
485
 
 
486
  msgid "Get Pro Addon to unlock more features"
487
  msgstr "Compra Pro Addon para desbloquear más funciones"
488
 
 
489
  #, php-format
490
  msgid ""
491
  "The features below are available in %s Pro Addon. Get it today and tweak the "
494
  "Las siguientes funciones están disponibles en %s Pro Addon. Compralo hoy y "
495
  "modifica unas configuraciones increíbles."
496
 
 
497
  msgid ""
498
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
499
  "you can purchase it using the button below."
501
  "Si ya tienes una licencia, puedes Autorizar tu Pro Addon. De lo contrario, "
502
  "puedes comprarlo usando el botón de abajo."
503
 
 
504
  msgid "Buy Pro Addon"
505
  msgstr "Compra Pro Addon"
506
 
 
507
  msgid "Authorize Pro Addon"
508
  msgstr "Autoriza Pro Addon"
509
 
 
510
  msgid "Pro Addon is not activated"
511
  msgstr "Pro Addon no está activado"
512
 
 
 
513
  #, fuzzy
514
  #| msgid ""
515
  #| "To be able to use the Pro features, you need to install and activate the "
521
  "Para poder utilizar las funciones Pro, debes instalar y activar el Nextend "
522
  "Social Connect Pro Addon."
523
 
 
524
  #, php-format
525
  msgid ""
526
  "%1$s detected that you have providers configured but none of them are "
528
  "one provider enabled!"
529
  msgstr ""
530
 
 
531
  msgid "Not Available"
532
  msgstr "No Disponible"
533
 
 
534
  msgid "Not Configured"
535
  msgstr "No Configurado"
536
 
 
537
  msgid "Not Verified"
538
  msgstr "No Verificado"
539
 
 
 
 
 
 
 
 
 
 
 
540
  msgid "Enabled"
541
  msgstr "Habilitado"
542
 
 
543
  msgid "Upgrade Now"
544
  msgstr "Actualizar Ahora"
545
 
 
 
546
  msgid "Verify Settings"
547
  msgstr "Verificar Configuración"
548
 
 
 
549
  msgid "Enable"
550
  msgstr "Habilitar"
551
 
 
 
552
  msgid "Disable"
553
  msgstr "Inhabilitar"
554
 
 
555
  msgid "Stay Updated"
556
  msgstr ""
557
 
 
558
  msgid ""
559
  "Receive info on the latest plugin updates and social provider related "
560
  "changes."
561
  msgstr ""
562
 
 
563
  #, fuzzy
564
  #| msgid "Please enter an email address."
565
  msgid "Enter your email address"
566
  msgstr "Por favor introduce un email."
567
 
 
568
  msgid "Subscribe"
569
  msgstr ""
570
 
 
571
  msgid "Saving..."
572
  msgstr "Guardando..."
573
 
 
574
  msgid "Saving failed"
575
  msgstr "No se pudo guardar"
576
 
 
577
  msgid "Order Saved"
578
  msgstr "Orden Guardado"
579
 
 
580
  msgid "Successfully subscribed!"
581
  msgstr ""
582
 
 
583
  msgid ""
584
  "We'll be bringing you all the latest news and updates about Social Login - "
585
  "right to your inbox."
586
  msgstr ""
587
 
 
588
  #, fuzzy
589
  #| msgid "Please enter an email address."
590
  msgid "The entered email address is invalid!"
591
  msgstr "Por favor introduce un email."
592
 
 
593
  msgid "Rate your experience!"
594
  msgstr "¡Califica tu experiencia!"
595
 
 
596
  msgid "Hated it"
597
  msgstr "Lo odié"
598
 
 
599
  msgid "Disliked it"
600
  msgstr "No me gustó"
601
 
 
602
  msgid "It was ok"
603
  msgstr "Estuvo bien"
604
 
 
605
  msgid "Liked it"
606
  msgstr "Me gustó"
607
 
 
608
  msgid "Loved it"
609
  msgstr "Me encantó"
610
 
 
611
  msgid "Please Leave a Review"
612
  msgstr "Por Favor Deja una Evaluación"
613
 
 
614
  msgid ""
615
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
616
  "please leave us a review. It will be a tremendous help for us!"
618
  "Si estás satisfecho con <b>Nextend Social Login</b> y tienes un minuto, por "
619
  "favor déjanos una evaluación. ¡Será una gran ayuda para nosotros!"
620
 
 
621
  msgid "Ok, you deserve it"
622
  msgstr "Ok, lo mereces"
623
 
 
 
 
624
  #, fuzzy
625
  #| msgid "Register Form"
626
  msgid "Register form"
627
  msgstr "Formulario de Registro"
628
 
 
629
  msgid "No Connect button"
630
  msgstr "Botón de No Conexión"
631
 
 
632
  msgid "Connect button before register"
633
  msgstr "Conectar botón antes de registrarse"
634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  msgid "Action:"
636
  msgstr "Acción:"
637
 
 
638
  msgid "Connect button before account details"
639
  msgstr "Conectar botón antes de los detalles de cuenta"
640
 
 
641
  msgid "Connect button after register"
642
  msgstr "Conectar botón después de registrarse"
643
 
 
644
  #, fuzzy
645
  #| msgid "Register form button style"
646
  msgid "Register button style"
647
  msgstr "Estilo de botón de formulario de Registro integrado"
648
 
 
 
 
 
 
 
 
 
 
 
 
 
649
  msgid "Fullwidth"
650
  msgstr ""
651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
  msgid "Icon"
653
  msgstr "Icono"
654
 
 
 
 
 
655
  msgid "Register layout"
656
  msgstr "Diseño de Registro"
657
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658
  msgid "Below"
659
  msgstr "Abajo"
660
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
661
  msgid "Below with separator"
662
  msgstr "Abajo con separación"
663
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
664
  msgid "Above"
665
  msgstr "Encima"
666
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
667
  msgid "Above with separator"
668
  msgstr "Encima con separación"
669
 
 
670
  #, fuzzy
671
  #| msgid "Login Form"
672
  msgid "Sidebar Login form"
673
  msgstr "Formulario de Acceso"
674
 
 
 
 
 
 
 
 
675
  msgid "Hide login buttons"
676
  msgstr "Esconder botones de iniciar sesión"
677
 
 
 
 
 
 
 
 
 
678
  msgid "Show login buttons"
679
  msgstr "Mostrar botones de iniciar sesión"
680
 
 
681
  msgid ""
682
  "Some themes that use BuddyPress, display the social buttons twice in the "
683
  "same login form. This option can disable the one for: "
684
  "<b>bp_sidebar_login_form action</b>. "
685
  msgstr ""
686
 
 
 
 
 
687
  #, fuzzy
688
  #| msgid "Login Form"
689
  msgid "Login form"
690
  msgstr "Formulario de Acceso"
691
 
 
692
  #, fuzzy
693
  #| msgid "Login form button style"
694
  msgid "Login button style"
695
  msgstr "Estilo de botón para iniciar sesión"
696
 
 
 
 
 
 
 
697
  msgid "Login layout"
698
  msgstr "Diseño de Inicio de Sesión"
699
 
 
 
 
 
 
 
 
700
  #, fuzzy
701
  #| msgid "Buttons"
702
  msgid "Button alignment"
703
  msgstr "Botones"
704
 
 
 
 
 
 
 
 
 
 
705
  msgid "Left"
706
  msgstr ""
707
 
 
 
 
 
 
 
 
 
 
708
  msgid "Center"
709
  msgstr ""
710
 
 
 
 
 
 
 
 
 
 
711
  msgid "Right"
712
  msgstr ""
713
 
 
714
  #, fuzzy
715
  #| msgid "Icon button"
716
  msgid "Login button"
717
  msgstr "Botón de icono"
718
 
 
 
719
  msgid "Show"
720
  msgstr "Mostrar"
721
 
 
722
  msgid "Hide"
723
  msgstr "Esconder"
724
 
 
725
  #, php-format
726
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
727
  msgstr "Necesitas activar el ' %1$s > %2$s > %3$s ' para que funcione"
728
 
 
729
  msgid "Discussion"
730
  msgstr "Discusión"
731
 
 
732
  msgid "Users must be registered and logged in to comment"
733
  msgstr "Los usuarios deben estar registrados e iniciar sesión para comentar"
734
 
 
 
735
  #, fuzzy
736
  #| msgid "Button style:"
737
  msgid "Button style"
738
  msgstr "Estilo de Botón:"
739
 
740
+ #, fuzzy
741
+ #| msgid "No Connect button in login form"
742
+ msgid "No Connect button in Login form"
743
+ msgstr "Sin botón de conexión en el formulario de inicio de sesión"
744
+
745
+ #, fuzzy
746
+ #| msgid "No Connect button"
747
+ msgid "Connect button on"
748
+ msgstr "Botón de No Conexión"
749
+
750
+ msgid "Login form button style"
751
+ msgstr "Estilo de botón para iniciar sesión"
752
+
753
+ #, fuzzy
754
+ #| msgid "No Connect button in register form"
755
+ msgid "No Connect button in Register form"
756
+ msgstr "Sin botón de conexión en el formulario de registro"
757
+
758
+ msgid "Register form button style"
759
+ msgstr "Estilo de botón de formulario de Registro integrado"
760
+
761
  msgid "Target window"
762
  msgstr "Ventana de destino"
763
 
 
764
  msgid "Prefer popup"
765
  msgstr "Preferir emergente"
766
 
 
767
  msgid "Prefer new tab"
768
  msgstr "Preferir nueva pestaña"
769
 
 
770
  msgid "Prefer same window"
771
  msgstr "Preferir nueva ventana"
772
 
 
773
  msgid "Registration notification sent to"
774
  msgstr "Notificación de registro enviado a"
775
 
 
 
776
  msgid "WordPress default"
777
  msgstr "Configuración predeterminada de Wordpress"
778
 
 
779
  msgid "Nobody"
780
  msgstr "Nadie"
781
 
 
782
  msgid "Admin"
783
  msgstr "Administrador"
784
 
 
785
  msgid "User and Admin"
786
  msgstr "Usuario y Administrador"
787
 
 
788
  #, fuzzy
789
  #| msgid "Unlink label"
790
  msgid "Unlink"
791
  msgstr "Etiqueta de desenlazar"
792
 
 
793
  #, fuzzy
794
  #| msgid "Social accounts"
795
  msgid "Allow Social account unlink"
796
  msgstr "Cuentas sociales"
797
 
 
798
  #, fuzzy
799
  #| msgid "Show link buttons"
800
  msgid "Show linked providers"
801
  msgstr "Mostrar botones de enlazar"
802
 
 
803
  #, php-format
804
  msgid "Providers linked to the account will appear in the %1$s."
805
  msgstr ""
806
 
 
807
  #, fuzzy
808
  #| msgid "Username"
809
  msgid "Users table"
810
  msgstr "Usuario"
811
 
 
812
  #, fuzzy
813
  #| msgid "Disable login for the selected roles"
814
  msgid "Disable Admin bar for roles"
815
  msgstr "Deshabilitar inicio de sesión para los roles seleccionados"
816
 
 
817
  msgid "Debug mode"
818
  msgstr "Modo de depuración"
819
 
 
820
  #, fuzzy
821
  #| msgid "for Register"
822
  msgid "Page for register flow"
823
  msgstr "para Registrarse"
824
 
 
 
825
  msgid "None"
826
  msgstr ""
827
 
 
828
  msgid ""
829
  "This setting is used when you request additional data from the users (such "
830
  "as email address) and to display the Terms and conditions."
831
  msgstr ""
832
 
 
833
  #, php-format
834
  msgid ""
835
  "%2$s First create a new page and insert the following shortcode: %1$s then "
836
  "select this page above"
837
  msgstr ""
838
 
 
 
839
  #, fuzzy
840
  #| msgid "Usage"
841
  msgid "Usage:"
842
  msgstr "Uso"
843
 
 
 
844
  #, php-format
845
  msgid ""
846
  "%1$s You won't be able to reach the selected page unless a social login/"
847
  "registration happens."
848
  msgstr ""
849
 
 
 
850
  #, fuzzy
851
  #| msgid "Import"
852
  msgid "Important:"
853
  msgstr "Importar"
854
 
 
855
  msgid "OAuth redirect uri proxy page"
856
  msgstr ""
857
 
 
858
  msgid ""
859
  "You can use this setting when wp-login.php page is not available to handle "
860
  "the OAuth flow."
861
  msgstr ""
862
 
 
863
  #, php-format
864
  msgid "%1$s First create a new page then select this page above."
865
  msgstr ""
866
 
 
867
  msgid "Prevent external redirect overrides"
868
  msgstr ""
869
 
 
870
  msgid "Disable external redirects"
871
  msgstr ""
872
 
 
873
  msgid "Default redirect url"
874
  msgstr "URL de redirección predeterminada"
875
 
 
 
876
  msgid "for Login"
877
  msgstr "para Iniciar Sesión"
878
 
 
 
879
  msgid "for Register"
880
  msgstr "para Registrarse"
881
 
 
882
  msgid "Fixed redirect url"
883
  msgstr "URL de redirección fija"
884
 
 
885
  #, fuzzy
886
  #| msgid "Fixed redirect url"
887
  msgid "Blacklisted redirects"
888
  msgstr "URL de redirección fija"
889
 
 
890
  msgid "If you want to blacklist redirect url params. One pattern per line."
891
  msgstr ""
892
 
 
893
  #, fuzzy
894
  #| msgid "Show login buttons"
895
  msgid "Support login restrictions"
896
  msgstr "Mostrar botones de iniciar sesión"
897
 
 
898
  #, php-format
899
  msgid "Please visit to our %1$s to check what plugins are supported!"
900
  msgstr ""
901
 
 
902
  msgid "Display avatars in \"All media items\""
903
  msgstr ""
904
 
 
905
  msgid ""
906
  "Enabling this option can speed up loading images in Media Library - Grid "
907
  "view!"
908
  msgstr ""
909
 
 
910
  msgid "Membership"
911
  msgstr "Membresía"
912
 
 
913
  #, fuzzy
914
  #| msgid "Allow registration with Social login"
915
  msgid "Allow registration with Social login."
916
  msgstr "Permitir registro con Social login"
917
 
 
918
  #, fuzzy
919
  #| msgid "for Register"
920
  msgid "Custom label for register buttons"
921
  msgstr "para Registrarse"
922
 
 
923
  #, php-format
924
  msgid ""
925
  "Set a custom label for the social buttons in registration forms and for "
927
  "can be modified at the Buttons tab of each provider."
928
  msgstr ""
929
 
 
 
 
 
 
 
 
 
930
  msgid "Below and floating"
931
  msgstr "Abajo y flotando"
932
 
 
933
  msgid "Embedded Login form button style"
934
  msgstr "Estilo de botón de formulario de inicio de sesión integrado"
935
 
 
936
  msgid "Embedded Login layout"
937
  msgstr "Diseño de Inicio de Sesión integrado"
938
 
 
939
  #, fuzzy
940
  #| msgid "Embedded Login form button style"
941
  msgid "Embedded login form button alignment"
942
  msgstr "Estilo de botón de formulario de inicio de sesión integrado"
943
 
 
 
944
  msgid "Registration Form"
945
  msgstr "Formulario de Registro"
946
 
 
947
  msgid "Embedded login form"
948
  msgstr "Formulario de Inicio de Sesión integrado"
949
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
950
  msgid "Sign Up form"
951
  msgstr ""
952
 
 
953
  #, fuzzy
954
  #| msgid "No Connect button in login form"
955
  msgid "No Connect button in Sign Up form"
956
  msgstr "Sin botón de conexión en el formulario de inicio de sesión"
957
 
 
958
  #, fuzzy
959
  #| msgid "Login form button style"
960
  msgid "Sign Up form button style"
961
  msgstr "Estilo de botón para iniciar sesión"
962
 
 
963
  #, fuzzy
964
  #| msgid "Login layout"
965
  msgid "Sign Up layout"
966
  msgstr "Diseño de Inicio de Sesión"
967
 
 
 
 
968
  #, fuzzy
969
  #| msgid "MemberPress account details"
970
  msgid "Account details"
971
  msgstr "Detalles de cuenta MemberPress"
972
 
 
 
973
  msgid "No link buttons"
974
  msgstr "Sin botones de enlace"
975
 
 
 
976
  msgid "Link buttons after account details"
977
  msgstr "Enlazar botones de enlace después de los detalles de la cuenta"
978
 
 
 
979
  msgid ""
980
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
981
  "\"_blank\">Privacy Policy</a>"
982
  msgstr ""
983
 
 
984
  msgid "Store"
985
  msgstr ""
986
 
 
987
  msgid "First and last name"
988
  msgstr ""
989
 
 
990
  msgid "When not enabled, username will be randomly generated."
991
  msgstr ""
992
 
 
 
993
  msgid "Email"
994
  msgstr "Email"
995
 
 
996
  msgid "When not enabled, email will be empty."
997
  msgstr ""
998
 
 
 
999
  msgid "Avatar"
1000
  msgstr "Avatar"
1001
 
 
 
1002
  msgid "Access token"
1003
  msgstr ""
1004
 
 
 
 
 
 
 
 
 
 
 
 
 
1005
  msgid "Register Form"
1006
  msgstr "Formulario de Registro"
1007
 
 
1008
  msgid "No Connect button in login form"
1009
  msgstr "Sin botón de conexión en el formulario de inicio de sesión"
1010
 
 
1011
  msgid "No Connect button in register form"
1012
  msgstr "Sin botón de conexión en el formulario de registro"
1013
 
 
1014
  #, fuzzy
1015
  #| msgid "WooCommerce billing form"
1016
  msgid "Billing form"
1017
  msgstr "Formulario de facturación de WooCommerce"
1018
 
 
1019
  msgid "No Connect button in billing form"
1020
  msgstr "Sin botón de conexión en el formulario de facturación"
1021
 
 
1022
  #, fuzzy
1023
  #| msgid "Login layout"
1024
  msgid "Billing layout"
1025
  msgstr "Diseño de Inicio de Sesión"
1026
 
 
1027
  #, fuzzy
1028
  #| msgid "Below with separator"
1029
  msgid "Default with separator"
1030
  msgstr "Abajo con separación"
1031
 
 
1032
  msgid "Checkout for WooCommerce"
1033
  msgstr ""
1034
 
 
1035
  #, fuzzy
1036
  #| msgid "No Connect button in register form"
1037
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1038
  msgstr "Sin botón de conexión en el formulario de registro"
1039
 
 
1040
  msgid "Checkout for WooCommerce layout"
1041
  msgstr ""
1042
 
 
1043
  #, fuzzy
1044
  #| msgid "Connect button before account details"
1045
  msgid "No Connect buttons in account details form"
1046
  msgstr "Conectar botón antes de los detalles de cuenta"
1047
 
 
 
1048
  #, fuzzy
1049
  #| msgid "No link buttons"
1050
  msgid "Link buttons on"
1051
  msgstr "Sin botones de enlace"
1052
 
 
1053
  #, fuzzy
1054
  #| msgid "Ask E-mail on registration"
1055
  msgid "Email template for registration"
1056
  msgstr "Preguntar E-mail durante el registro"
1057
 
 
1058
  #, fuzzy
1059
  #| msgid "WordPress default"
1060
  msgid "WordPress default notification"
1061
  msgstr "Configuración predeterminada de Wordpress"
1062
 
 
1063
  #, fuzzy
1064
  #| msgid "WooCommerce register form"
1065
  msgid "WooCommerce registration notification"
1066
  msgstr "Formulario de registro WooCommerce"
1067
 
 
1068
  #, php-format
1069
  msgid ""
1070
  "Defines whether the registration with %1$s will send the same registration "
1071
  "notification that %2$s does, instead of the %3$s default one."
1072
  msgstr ""
1073
 
 
1074
  #, fuzzy, php-format
1075
  #| msgid "Authentication successful"
1076
  msgid "Network connection successful: %1$s"
1077
  msgstr "Autenticación exitosa"
1078
 
 
1079
  #, php-format
1080
  msgid "Network connection failed: %1$s"
1081
  msgstr ""
1082
 
 
1083
  msgid ""
1084
  "Please contact with your hosting provider to resolve the network issue "
1085
  "between your server and the provider."
1086
  msgstr ""
1087
 
 
1088
  msgid "Manage Avatar"
1089
  msgstr "Administrar Avatar"
1090
 
 
1091
  #, php-format
1092
  msgid "Avatar <span class=\"count\">(%s)</span>"
1093
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1094
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1095
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1096
 
 
1097
  msgid "Invalid URL Provided."
1098
  msgstr ""
1099
 
 
1100
  msgid "Could not create Temporary file."
1101
  msgstr ""
1102
 
 
1103
  #, php-format
1104
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1105
  msgstr ""
1106
 
 
1107
  msgid "https://wordpress.org/"
1108
  msgstr ""
1109
 
 
1110
  msgid "Powered by WordPress"
1111
  msgstr ""
1112
 
 
1113
  #, php-format
1114
  msgctxt "site"
1115
  msgid "&larr; Back to %s"
1116
  msgstr ""
1117
 
 
1118
  msgid "Your configuration needs to be verified"
1119
  msgstr "Tu configuración debe ser verificada"
1120
 
 
1121
  msgid ""
1122
  "Before you can start letting your users register with your app it needs to "
1123
  "be tested. This test makes sure that no users will have troubles with the "
1131
  "mensaje de error en el menú emergente, verifica la ID copiada y el secreto o "
1132
  "la aplicación. De lo contrario, tu configuración está bien."
1133
 
 
1134
  msgid "Please save your changes to verify settings."
1135
  msgstr "Guarda los cambios para verificar la configuración."
1136
 
 
1137
  msgid "Works Fine"
1138
  msgstr "Funciona Bien"
1139
 
 
1140
  #, php-format
1141
  msgid ""
1142
  "This provider is currently disabled, which means that users can’t register "
1145
  "Este proveedor está desactivado, así que los usuarios no pueden registrarse "
1146
  "ni iniciar sesión a través de su cuenta de %s."
1147
 
 
1148
  #, php-format
1149
  msgid ""
1150
  "This provider works fine, but you can test it again. If you don’t want to "
1154
  "permitir que los usuarios se registren o inicien sesión con %s, puedes "
1155
  "deshabilitarlo."
1156
 
 
1157
  #, php-format
1158
  msgid ""
1159
  "This provider is currently enabled, which means that users can register or "
1162
  "Este proveedor está habilitado, así que los usuarios pueden registrarse o "
1163
  "iniciar sesión a través de su cuenta %s."
1164
 
 
1165
  msgid "Verify Settings Again"
1166
  msgstr "Verificar la configuración de nuevo"
1167
 
 
1168
  msgid "Please save your changes before verifying settings."
1169
  msgstr "Guarda tus cambios antes de verificar la configuración, por favor."
1170
 
 
 
 
1171
  msgid "Authentication successful"
1172
  msgstr "Autenticación exitosa"
1173
 
 
 
 
1174
  msgid "Authentication error"
1175
  msgstr "Error de autenticación"
1176
 
 
1177
  msgid "Unlink successful."
1178
  msgstr "Desenlace exitoso."
1179
 
 
1180
  msgid "Unlink is not allowed!"
1181
  msgstr ""
1182
 
 
 
1183
  msgid "The test was successful"
1184
  msgstr "La prueba fue exitosa"
1185
 
 
1186
  msgid "Authentication failed"
1187
  msgstr "Error de autenticación"
1188
 
 
1189
  msgid "Identifier"
1190
  msgstr ""
1191
 
 
1192
  msgid "Profile Picture"
1193
  msgstr ""
1194
 
 
1195
  #, php-format
1196
  msgid ""
1197
  "Your %1$s account is successfully linked with your account. Now you can sign "
1200
  "Tu cuenta %1$s está vinculada con éxito a tu cuenta. Ahora puedes iniciar "
1201
  "sesión con %2$s fácilmente."
1202
 
 
1203
  #, fuzzy, php-format
1204
  #| msgid ""
1205
  #| "You have already linked a(n) %s account. Please unlink the current and "
1211
  "Ya has vinculado una %s cuenta. Desvincula la cuenta actual y después "
1212
  "podrías vincular otra cuenta de %s."
1213
 
 
1214
  #, fuzzy, php-format
1215
  #| msgid "This %s account is already linked to other user."
1216
  msgid "This %s account is already linked to another user."
1217
  msgstr "Esta cuenta %s ya está vinculada a otro usuario."
1218
 
 
1219
  msgid "User registration is currently not allowed."
1220
  msgstr ""
1221
 
 
1222
  #, php-format
1223
  msgid ""
1224
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
1226
  "linked %1$s account or log in with your password!"
1227
  msgstr ""
1228
 
 
1229
  #, fuzzy
1230
  #| msgid "Register For This Site!"
1231
  msgid "Register For This Site"
1232
  msgstr "¡Registrarse Para Este Sitio!"
1233
 
 
1234
  #, fuzzy
1235
  #| msgid "Register"
1236
  msgctxt "Register form submit button label"
1237
  msgid "Register"
1238
  msgstr "Registrarse"
1239
 
 
1240
  #, php-format
1241
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1242
  msgstr "%1$s requiere la versión PHP %2$s+, el plugin NO ESTÁ ACTIVO."
1243
 
 
1244
  #, php-format
1245
  msgid ""
1246
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1249
  "%1$s requiere la versión de WordPress %2$s+. Desde estás utilizando una "
1250
  "versión anterior, el plugin NO ESTÁ ACTIVO."
1251
 
 
 
1252
  #, php-format
1253
  msgid "Please update %1$s to version %2$s or newer."
1254
  msgstr "Por favor, actualiza %1$s a la versión %2$s o más reciente."
1255
 
 
 
1256
  msgid "Update now!"
1257
  msgstr "¡Actualizar ahora!"
1258
 
 
 
1259
  msgid "Social Login"
1260
  msgstr "Social Login"
1261
 
 
1262
  msgid "Social Accounts"
1263
  msgstr "Cuentas Sociales"
1264
 
 
 
 
1265
  #, fuzzy
1266
  #| msgid "Buttons"
1267
  msgid "Button skin"
1268
  msgstr "Botones"
1269
 
 
 
 
1270
  msgid "Dark"
1271
  msgstr ""
1272
 
 
 
 
1273
  msgid "Light"
1274
  msgstr ""
1275
 
 
1276
  msgid "Black"
1277
  msgstr ""
1278
 
 
1279
  msgid "White"
1280
  msgstr ""
1281
 
 
 
 
 
 
1282
  #, fuzzy, php-format
1283
  #| msgid "Navigate to %s"
1284
  msgid "Navigate to <b>%s</b>"
1285
  msgstr "Navegar a %s"
1286
 
 
 
 
 
 
 
 
 
 
 
1287
  #, php-format
1288
  msgid "Log in with your %s credentials if you are not logged in"
1289
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
1290
 
 
1291
  #, fuzzy, php-format
1292
  #| msgid "Click on the App with App ID: %s"
1293
  msgid "Click on the App with App ID: <b>%s</b>"
1294
  msgstr "Haz clic en la App con la App ID: %s"
1295
 
 
1296
  #, fuzzy
1297
  #| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1298
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1299
  msgstr "En la barra lateral izquierda, haz clic en \"Facebook Login/Ajustes\""
1300
 
 
 
1301
  #, fuzzy
1302
  #| msgid ""
1303
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1307
  msgstr ""
1308
  "Agrega la siguiente URL al campo \"Valid OAuth redirect URIs\": <b>%s</b>"
1309
 
 
1310
  #, fuzzy
1311
  #| msgid "Click on \"Save Changes\""
1312
  msgid "Click on \"<b>Save Changes</b>\""
1313
  msgstr "Haz clic en \"Guardar Cambios\""
1314
 
 
 
 
 
1315
  #, php-format
1316
  msgid ""
1317
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1320
  "%1$s solo permite redireccionamientos HTTPS OAuth. Debes mover tu sitio a "
1321
  "HTTPS para permitir el inicio de sesión con %1$s."
1322
 
 
 
 
 
1323
  msgid "How to get SSL for my WordPress site?"
1324
  msgstr "¿Cómo puedo obtener SSL para mi sitio de WordPress?"
1325
 
 
 
 
 
 
 
1326
  #, php-format
1327
  msgid ""
1328
  "To allow your visitors to log in with their %1$s account, first you must "
1337
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
1338
  "dados según tu aplicación %1$s."
1339
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1340
  #, php-format
1341
  msgctxt "App creation"
1342
  msgid "Create %s"
1343
  msgstr "Crear %s"
1344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1345
  #, php-format
1346
  msgid "Navigate to %s"
1347
  msgstr "Navegar a %s"
1348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1349
  #, php-format
1350
  msgid "Log in with your %s credentials if you are not logged in."
1351
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
1352
 
 
1353
  #, fuzzy
1354
  #| msgid "Click on the \"Create New App\" button"
1355
  msgid ""
1357
  "\"<b>Consumer</b>\" App type!"
1358
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
1359
 
 
1360
  msgid ""
1361
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1362
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1363
  "finally verify your account."
1364
  msgstr ""
1365
 
 
1366
  #, php-format
1367
  msgid ""
1368
  "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1369
  "specified \"App Display Name\" will appear on your %s!"
1370
  msgstr ""
1371
 
 
1372
  msgid ""
1373
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1374
  "if you have any."
1375
  msgstr ""
1376
 
 
1377
  #, fuzzy
1378
  #| msgid "Click on the \"Create New App\" button"
1379
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
1380
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
1381
 
 
1382
  #, php-format
1383
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
1384
  msgstr ""
1385
 
 
1386
  #, fuzzy, php-format
1387
  #| msgid ""
1388
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
1393
  msgstr ""
1394
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
1395
 
 
1396
  #, fuzzy
1397
  #| msgid "Click on \"Save Changes\""
1398
  msgid "Press “<b>Save</b>”."
1399
  msgstr "Haz clic en \"Guardar Cambios\""
1400
 
 
1401
  #, php-format
1402
  msgid ""
1403
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1404
  "%2$s</b> - <b>%3$s</b>”"
1405
  msgstr ""
1406
 
 
1407
  #, fuzzy
1408
  #| msgid "Click on \"Save Changes\""
1409
  msgid "Click on “<b>Save Changes</b>”."
1410
  msgstr "Haz clic en \"Guardar Cambios\""
1411
 
 
 
1412
  #, php-format
1413
  msgid ""
1414
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1415
  "%2$s</b>”."
1416
  msgstr ""
1417
 
 
1418
  #, fuzzy, php-format
1419
  #| msgid "Enter your domain name to the App Domains"
1420
  msgid ""
1422
  "b>"
1423
  msgstr "Ingresa tu nombre de dominio a los App Domains"
1424
 
 
1425
  #, fuzzy
1426
  #| msgid ""
1427
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
1436
  "accesible al público y de fácil acceso que explique cuales datos estás "
1437
  "recopilando y cómo utilizarás esos datos."
1438
 
 
1439
  msgid ""
1440
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1441
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1442
  "instructions on how users can delete their accounts on your site."
1443
  msgstr ""
1444
 
 
1445
  msgid ""
1446
  "To comply with GDPR, you should already offer possibility to delete accounts "
1447
  "on your site, either by the user or by the admin:"
1448
  msgstr ""
1449
 
 
1450
  msgid ""
1451
  "<u>If each user has an option to delete the account</u>: the URL should "
1452
  "point to a guide showing the way users can delete their accounts."
1453
  msgstr ""
1454
 
 
1455
  msgid ""
1456
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
1457
  "section - usually in the Privacy Policy - with the contact details, where "
1459
  "point to this section of the document."
1460
  msgstr ""
1461
 
 
1462
  msgid ""
1463
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1464
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1465
  "Changes</b>\"."
1466
  msgstr ""
1467
 
 
1468
  #, fuzzy
1469
  #| msgid ""
1470
  #| "Your application is currently private, which means that only you can log "
1479
  "En la barra lateral izquierda, elige \"App Review\" y haz que tu aplicación "
1480
  "sea pública"
1481
 
 
1482
  #, php-format
1483
  msgid ""
1484
  "By default, your application only has Standard access for the permissions, "
1488
  "should click on the <strong>%6$s</strong> buttons next to them. "
1489
  msgstr ""
1490
 
 
1491
  #, fuzzy, php-format
1492
  #| msgid ""
1493
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
1502
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
1503
  "plugin."
1504
 
 
1505
  #, php-format
1506
  msgid ""
1507
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1512
  "the Facebook App, then please check our %2$sdocumentation%3$s."
1513
  msgstr ""
1514
 
 
1515
  msgid "Maintaining the Facebook App:"
1516
  msgstr ""
1517
 
 
1518
  #, php-format
1519
  msgid ""
1520
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1525
  "that we need."
1526
  msgstr ""
1527
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1528
  #, php-format
1529
  msgid "I am done setting up my %s"
1530
  msgstr "He terminado de configurar mi %s"
1531
 
 
 
1532
  msgid "App ID"
1533
  msgstr "App ID"
1534
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1535
  msgid "Required"
1536
  msgstr "Obligatorio"
1537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1538
  #, php-format
1539
  msgid ""
1540
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1543
  "Si no estás seguro de cuál es tu %1$s, dirígete a <a href=\"%2$s\">Getting "
1544
  "Started</a>"
1545
 
 
1546
  msgid "App Secret"
1547
  msgstr "App Secret"
1548
 
 
 
1549
  #, php-format
1550
  msgid ""
1551
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
1552
  "longer be able to login with %1$s."
1553
  msgstr ""
1554
 
 
 
1555
  msgid "Find out why?"
1556
  msgstr ""
1557
 
 
1558
  msgid "Continue with <b>Facebook</b>"
1559
  msgstr "Sigue con <b>Facebook</b>"
1560
 
 
1561
  #, fuzzy
1562
  #| msgid "Continue with <b>Facebook</b>"
1563
  msgid "Sign up with <b>Facebook</b>"
1564
  msgstr "Sigue con <b>Facebook</b>"
1565
 
 
1566
  msgid "Link account with <b>Facebook</b>"
1567
  msgstr "Enlazar cuenta con <b>Facebook</b>"
1568
 
 
1569
  msgid "Unlink account from <b>Facebook</b>"
1570
  msgstr "Desenlazar cuenta de <b>Facebook</b>"
1571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1572
  #, php-format
1573
  msgid ""
1574
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1575
  msgstr ""
1576
  "El %1$s ingresado no parece ser válido. Por favor ingresa un %2$s válido."
1577
 
 
 
1578
  #, php-format
1579
  msgid "Required scope: %1$s"
1580
  msgstr "Alcance requerido: %1$s"
1581
 
 
1582
  msgid "Uniform - Legacy"
1583
  msgstr ""
1584
 
 
1585
  #, fuzzy
1586
  #| msgid "Click on the \"Credentials\" in the left hand menu"
1587
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
1588
  msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
1589
 
 
1590
  #, php-format
1591
  msgid ""
1592
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
1593
  "%s</b>"
1594
  msgstr ""
1595
 
 
 
1596
  #, fuzzy, php-format
1597
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1598
  msgid ""
1600
  "following URL:"
1601
  msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s"
1602
 
 
 
 
 
1603
  #, fuzzy
1604
  #| msgid "Click on \"Save\""
1605
  msgid "Click on \"<b>Save</b>\""
1606
  msgstr "Haz clic en \"Guardar Cambios\""
1607
 
 
1608
  #, fuzzy, php-format
1609
  #| msgid ""
1610
  #| "If you don't have a project yet, you'll need to create one. You can do "
1618
  "Si aún no tienes un proyecto, deberás crear uno. Puedes hacer esto haciendo "
1619
  "clic en el botón azul \"Create project\" en el lado derecho"
1620
 
 
1621
  #, fuzzy, php-format
1622
  #| msgid "Name your project and then click on the Create button"
1623
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
1624
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
1625
 
 
1626
  msgid ""
1627
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
1628
  "have already had a Project, then make sure you select the created project in "
1629
  "the top bar! )"
1630
  msgstr ""
1631
 
 
1632
  #, fuzzy, php-format
1633
  #| msgid "Click on the \"Credentials\" in the left hand menu"
1634
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
1635
  msgstr "Haz clic en \"Credentials\" en el menú de la izquierda"
1636
 
 
1637
  #, php-format
1638
  msgid ""
1639
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
1641
  "account, then pick the \"%4$s\" option!"
1642
  msgstr ""
1643
 
 
1644
  #, php-format
1645
  msgid ""
1646
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
1648
  "%1$s!"
1649
  msgstr ""
1650
 
 
1651
  #, php-format
1652
  msgid ""
1653
  "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
1654
  "the name of the app asking for consent."
1655
  msgstr ""
1656
 
 
1657
  #, php-format
1658
  msgid ""
1659
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
1660
  "contact you with questions about their consent."
1661
  msgstr ""
1662
 
 
1663
  #, fuzzy, php-format
1664
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
1665
  msgid ""
1668
  msgstr ""
1669
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
1670
 
 
1671
  #, php-format
1672
  msgid ""
1673
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
1674
  "notify you about any changes to your project."
1675
  msgstr ""
1676
 
 
1677
  #, php-format
1678
  msgid ""
1679
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
1680
  "too!"
1681
  msgstr ""
1682
 
 
1683
  #, php-format
1684
  msgid ""
1685
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
1686
  "\"<b>%2$s</b>\" button in the top bar."
1687
  msgstr ""
1688
 
 
1689
  #, fuzzy, php-format
1690
  #| msgid "Click on the Create button"
1691
  msgid "Choose the \"<b>%1$s</b>\" option."
1692
  msgstr "Haz clic en el botón Create"
1693
 
 
1694
  #, fuzzy, php-format
1695
  #| msgid "Click on the \"Create New App\" button"
1696
  msgid "Select the \"<b>%1$s</b>\" under Application type."
1697
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
1698
 
 
1699
  #, php-format
1700
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
1701
  msgstr ""
1702
 
 
1703
  #, fuzzy, php-format
1704
  #| msgid "Click on the Create button"
1705
  msgid "Click on the \"<b>%1$s</b>\" button"
1706
  msgstr "Haz clic en el botón Create"
1707
 
 
1708
  #, fuzzy, php-format
1709
  #| msgid ""
1710
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
1722
  "clic en su nombre y podrías copiar y pegar desde ahí la Client ID y el "
1723
  "Client Secret."
1724
 
 
 
 
 
 
 
 
 
1725
  msgid "Client ID"
1726
  msgstr "Client ID"
1727
 
 
 
 
 
 
 
 
1728
  msgid "Client Secret"
1729
  msgstr "Client Secret"
1730
 
 
1731
  msgid "Select account on each login"
1732
  msgstr ""
1733
 
 
1734
  msgid ""
1735
  "Disable, when you don't want to see the account select prompt on each login."
1736
  msgstr ""
1737
 
 
1738
  msgid "Continue with <b>Google</b>"
1739
  msgstr "Sigue con <b>Google</b>"
1740
 
 
1741
  #, fuzzy
1742
  #| msgid "Continue with <b>Google</b>"
1743
  msgid "Sign up with <b>Google</b>"
1744
  msgstr "Sigue con <b>Google</b>"
1745
 
 
1746
  msgid "Link account with <b>Google</b>"
1747
  msgstr "Enlazar cuenta con <b>Google</b>"
1748
 
 
1749
  msgid "Unlink account from <b>Google</b>"
1750
  msgstr "Desenlazar cuenta de <b>Google</b>"
1751
 
 
1752
  #, fuzzy, php-format
1753
  #| msgid "Required scope: %1$s"
1754
  msgid "Required API: %1$s"
1755
  msgstr "Alcance requerido: %1$s"
1756
 
 
1757
  #, fuzzy
1758
  #| msgid "Name your project and then click on the Create button"
1759
  msgid ""
1761
  "like a gear.)"
1762
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
1763
 
 
1764
  #, fuzzy
1765
  #| msgid "Click on the \"Create New App\" button"
1766
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1767
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
1768
 
 
 
1769
  #, fuzzy, php-format
1770
  #| msgid ""
1771
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1772
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1773
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
1774
 
 
1775
  #, fuzzy, php-format
1776
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1777
  msgid ""
1778
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1779
  msgstr "Asegúrate que el campo \"%1$s\" tiene %2$s"
1780
 
 
1781
  msgid ""
1782
  "If you don't have a developer account yet, please apply one by filling all "
1783
  "the required details! This is required for the next steps!"
1784
  msgstr ""
1785
 
 
1786
  #, php-format
1787
  msgid ""
1788
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
1789
  "aren't already there!"
1790
  msgstr ""
1791
 
 
1792
  #, fuzzy, php-format
1793
  #| msgid "Click on \"Save\""
1794
  msgid "Click on \"<b>%s</b>\"!"
1795
  msgstr "Haz clic en \"Guardar Cambios\""
1796
 
 
1797
  msgid ""
1798
  "Name your project, and go through the basic setup. You’ll need to select "
1799
  "your use case, give a description and enter a name for the App as well."
1800
  msgstr ""
1801
 
 
1802
  #, fuzzy, php-format
1803
  #| msgid "Click \"Edit\"."
1804
  msgid "Click \"<b>%s</b>\"!"
1805
  msgstr "Haz clic en \"Edit\"."
1806
 
 
1807
  #, php-format
1808
  msgid ""
1809
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
1811
  "press \"<b>Save Changes</b>\"."
1812
  msgstr ""
1813
 
 
1814
  #, php-format
1815
  msgid ""
1816
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
1817
  "\" section click on the name of your App."
1818
  msgstr ""
1819
 
 
1820
  #, fuzzy, php-format
1821
  #| msgid "Name your project and then click on the Create button"
1822
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1823
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
1824
 
 
1825
  #, fuzzy, php-format
1826
  #| msgid "Click on the Create button"
1827
  msgid "Switch on the \"<b>%s</b>\" option."
1828
  msgstr "Haz clic en el botón Create"
1829
 
 
1830
  #, fuzzy, php-format
1831
  #| msgid ""
1832
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1833
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
1834
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
1835
 
 
1836
  #, php-format
1837
  msgid ""
1838
  "If you want to get the email address as well, then don’t forget to enable "
1840
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1841
  msgstr ""
1842
 
 
1843
  #, fuzzy, php-format
1844
  #| msgid "Click on \"Save\""
1845
  msgid "Click on \"<b>%s</b>\"."
1846
  msgstr "Haz clic en \"Guardar Cambios\""
1847
 
 
1848
  #, php-format
1849
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
1850
  msgstr ""
1851
 
 
 
1852
  msgid "API Key"
1853
  msgstr ""
1854
 
 
1855
  #, fuzzy
1856
  #| msgid "Secure key"
1857
  msgid "API secret key"
1858
  msgstr "Secure key"
1859
 
 
1860
  msgid "Profile image size"
1861
  msgstr ""
1862
 
 
1863
  msgid "Original"
1864
  msgstr ""
1865
 
 
1866
  msgid "Continue with <b>Twitter</b>"
1867
  msgstr "Sigue con <b>Twitter</b>"
1868
 
 
1869
  #, fuzzy
1870
  #| msgid "Continue with <b>Twitter</b>"
1871
  msgid "Sign up with <b>Twitter</b>"
1872
  msgstr "Sigue con <b>Twitter</b>"
1873
 
 
1874
  msgid "Link account with <b>Twitter</b>"
1875
  msgstr "Enlazar cuenta con <b>Twitter</b>"
1876
 
 
1877
  msgid "Unlink account from <b>Twitter</b>"
1878
  msgstr "Desenlazar cuenta de <b>Twitter</b>"
1879
 
 
1880
  #, php-format
1881
  msgid "%s Buttons"
1882
  msgstr "%s Botones"
1883
 
 
1884
  msgid "Title:"
1885
  msgstr "Titulo:"
1886
 
 
1887
  msgid "Button style:"
1888
  msgstr "Estilo de Botón:"
1889
 
 
1890
  #, fuzzy
1891
  #| msgid "Buttons"
1892
  msgid "Button align:"
1893
  msgstr "Botones"
1894
 
 
1895
  msgid "Show link buttons"
1896
  msgstr "Mostrar botones de enlazar"
1897
 
 
1898
  msgid "Show unlink buttons"
1899
  msgstr "Mostrar botones de desenlazar"
1900
 
 
1901
  msgid "Social login is not allowed with this role!"
1902
  msgstr "¡Social login no esta permitido con este rol!"
1903
 
 
1904
  msgid "Please enter a username."
1905
  msgstr "Por favor introduce un usuario."
1906
 
 
1907
  msgid ""
1908
  "This username is invalid because it uses illegal characters. Please enter a "
1909
  "valid username."
1911
  "Este usuario no es válido porque usa caracteres ilegales. Por favor ingresa "
1912
  "un usuario válido."
1913
 
 
1914
  #, fuzzy
1915
  #| msgid "This username is already registered. Please choose another one."
1916
  msgid ""
1918
  "another one."
1919
  msgstr "Este nombre de usuario ya está registrado. Por favor escoge otro."
1920
 
 
1921
  #, fuzzy
1922
  #| msgid "Sorry, that username is not allowed."
1923
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
1924
  msgstr "Lo sentimos, ese usuario no está permitido."
1925
 
 
1926
  msgid "Username"
1927
  msgstr "Usuario"
1928
 
 
1929
  #, fuzzy
1930
  #| msgid "<strong>ERROR</strong>: Please enter a password."
1931
  msgid "<strong>Error</strong>: Please enter an email address."
1932
  msgstr "<strong>ERROR</strong>: Por favor introduce una contraseña."
1933
 
 
1934
  #, fuzzy
1935
  #| msgid "The email address isn&#8217;t correct."
1936
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
1937
  msgstr "El email no es correcto."
1938
 
 
1939
  #, fuzzy
1940
  #| msgid "This email is already registered, please choose another one."
1941
  msgid ""
1943
  "another one."
1944
  msgstr "Este email ya esta registrado, por favor escoge otro."
1945
 
 
1946
  msgid "Registration confirmation will be emailed to you."
1947
  msgstr "La confirmación de registro será enviada por email."
1948
 
 
1949
  #, fuzzy
1950
  #| msgid "<strong>ERROR</strong>: Please enter a password."
1951
  msgid "<strong>Error</strong>: Please enter a password."
1952
  msgstr "<strong>ERROR</strong>: Por favor introduce una contraseña."
1953
 
 
1954
  #, fuzzy
1955
  #| msgid ""
1956
  #| "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1958
  msgstr ""
1959
  "<strong>ERROR</strong>: Contraseñas no pueden contener el caracter \"\\\"."
1960
 
 
1961
  #, fuzzy
1962
  #| msgid ""
1963
  #| "<strong>ERROR</strong>: Please enter the same password in both password "
1969
  "<strong>ERROR</strong>: Por favor introduce la misma contraseña en los dos "
1970
  "campos de contraseña."
1971
 
 
1972
  msgid "Password"
1973
  msgstr "Contraseña"
1974
 
 
1975
  msgid "Strength indicator"
1976
  msgstr "Indicador de dificultad"
1977
 
 
1978
  msgid "Confirm use of weak password"
1979
  msgstr "Confirmar el uso de contraseña débil"
1980
 
 
1981
  msgid "Confirm password"
1982
  msgstr "Confirmar contraseña"
1983
 
 
1984
  #, php-format
1985
  msgid ""
1986
  "This email is already registered, please login in to your account to link "
1989
  "Este email ya está registrado, por favor inicia sesión en tu cuenta para "
1990
  "vincularlo con %1$s."
1991
 
 
1992
  #, php-format
1993
  msgid "Please install and activate %1$s to use the %2$s"
1994
  msgstr "Por favor instala y activa %1$s para usar el %2$s"
1995
 
 
1996
  msgid "Network Activate"
1997
  msgstr "Activar Red"
1998
 
 
1999
  msgid "Install now!"
2000
  msgstr "¡Instalar ahora!"
2001
 
 
2002
  #, fuzzy
2003
  #| msgid "Providers"
2004
  msgid "Social Providers"
2005
  msgstr "Proveedores"
2006
 
 
2007
  #, php-format
2008
  msgid ""
2009
  "The Facebook Sync data needs an approved %1$s and your App must use the "
2010
  "latest %2$s version!"
2011
  msgstr ""
2012
 
 
2013
  #, php-format
2014
  msgid ""
2015
  "Most of these information can only be retrieved, when the field is marked as "
2016
  "Public on the user's %s page!"
2017
  msgstr ""
2018
 
 
 
2019
  #, php-format
2020
  msgid "Visit %s"
2021
  msgstr "Visita %s"
2022
 
 
 
2023
  #, fuzzy
2024
  #| msgid ""
2025
  #| "On the right side, under \"Manage\", hover over the gear icon and select "
2031
  "En el lado derecho, en \"Manage\", desplaza el cursor sobre el ícono de "
2032
  "ajustes y selecciona la opción \"Web Settings\"."
2033
 
 
 
2034
  #, fuzzy
2035
  #| msgid "Click \"Edit\"."
2036
  msgid "Click \"<b>Edit</b>\"."
2037
  msgstr "Haz clic en \"Edit\"."
2038
 
 
 
2039
  #, fuzzy
2040
  #| msgid ""
2041
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2042
  msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2043
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2044
 
 
 
 
 
 
 
 
2045
  #, php-format
2046
  msgid ""
2047
  "To allow your visitors to log in with their %1$s account, first you must "
2056
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
2057
  "dados según tu aplicación %1$s."
2058
 
 
2059
  #, fuzzy
2060
  #| msgid ""
2061
  #| "If you don't have a Security Profile yet, you'll need to create one. You "
2070
  "haciendo clic en el botón naranja \"Create a New Security Profile\" en el "
2071
  "lado izquierdo."
2072
 
 
2073
  #, fuzzy
2074
  #| msgid ""
2075
  #| "Fill \"Security Profile Name\", \"Security Profile Description\" and "
2081
  "Llena \"Security Profile Name\", \"Security Profile Description\" y "
2082
  "\"Consent Privacy Notice URL\"."
2083
 
 
2084
  #, fuzzy
2085
  #| msgid "Once you filled all the required fields, click \"Save\"."
2086
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
2088
  "Una vez que hayas completado todos los campos requeridos, haz clic en "
2089
  "\"Guardar\"."
2090
 
 
2091
  #, fuzzy, php-format
2092
  #| msgid ""
2093
  #| "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</"
2099
  "Llena \"Allowed Origins\" con la url de tu página principal, probablemente: "
2100
  "<b>%s</b>"
2101
 
 
 
2102
  #, fuzzy
2103
  #| msgid "When all fields are filled, click \"Save\"."
2104
  msgid "When all fields are filled, click \"<b>Save</b>\"."
2105
  msgstr ""
2106
  "Una vez que hayas completado todos los campos, haz clic en \"Guardar\"."
2107
 
 
2108
  #, fuzzy
2109
  #| msgid ""
2110
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2114
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2115
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
2116
 
 
2117
  msgid "Continue with <b>Amazon</b>"
2118
  msgstr "Sigue con <b>Amazon</b>"
2119
 
 
2120
  #, fuzzy
2121
  #| msgid "Continue with <b>Amazon</b>"
2122
  msgid "Sign up with <b>Amazon</b>"
2123
  msgstr "Sigue con <b>Amazon</b>"
2124
 
 
2125
  msgid "Link account with <b>Amazon</b>"
2126
  msgstr "Enlazar cuenta con <b>Amazon</b>"
2127
 
 
2128
  msgid "Unlink account from <b>Amazon</b>"
2129
  msgstr "Desenlazar cuenta de <b>Amazon</b>"
2130
 
 
2131
  #, fuzzy
2132
  #| msgid "Click on the Manage button at the App"
2133
  msgid "Click on the name of your service."
2134
  msgstr "Haz clic en el botón Manage en la App"
2135
 
 
2136
  msgid ""
2137
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
2138
  msgstr ""
2139
 
 
 
2140
  #, php-format
2141
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
2142
  msgstr ""
2143
 
 
 
2144
  #, fuzzy, php-format
2145
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2146
  msgid ""
2149
  msgstr ""
2150
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2151
 
 
 
2152
  #, fuzzy
2153
  #| msgid ""
2154
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2155
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2156
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2157
 
 
2158
  msgid ""
2159
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2160
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2161
  msgstr ""
2162
 
 
2163
  #, fuzzy, php-format
2164
  #| msgid ""
2165
  #| "To allow your visitors to log in with their %1$s account, first you must "
2180
  "aplicación %1$s, dirígete a \"Ajustes\" y configura los \"%2$s\" y \"%3$s\" "
2181
  "dados según tu aplicación %1$s."
2182
 
 
2183
  msgid ""
2184
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
2185
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
2187
  "App!"
2188
  msgstr ""
2189
 
 
2190
  msgid ""
2191
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
2192
  "b>!"
2193
  msgstr ""
2194
 
 
2195
  msgid "1.) Create the associated App:"
2196
  msgstr ""
2197
 
 
2198
  #, php-format
2199
  msgid ""
2200
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
2201
  "option and click the \"Continue\" button."
2202
  msgstr ""
2203
 
 
2204
  #, php-format
2205
  msgid ""
2206
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
2207
  "\"<b>Continue</b>\" button."
2208
  msgstr ""
2209
 
 
2210
  msgid "Enter a \"<b>Description</b>\""
2211
  msgstr ""
2212
 
 
2213
  #, php-format
2214
  msgid ""
2215
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
2217
  "app at its end: <b>%s.nslapp</b>"
2218
  msgstr ""
2219
 
 
2220
  msgid ""
2221
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
2222
  "b>\" option."
2223
  msgstr ""
2224
 
 
2225
  msgid ""
2226
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
2227
  "\"<b>Register</b>\" button."
2228
  msgstr ""
2229
 
 
2230
  msgid "2.) Create the Key:"
2231
  msgstr ""
2232
 
 
2233
  #, php-format
2234
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
2235
  msgstr ""
2236
 
 
2237
  #, fuzzy
2238
  #| msgid "Enter the title of your app and select \"Websie\"."
2239
  msgid "Enter a name in the <b>Key Name</b> field."
2240
  msgstr "Ingresa el título de tu app y selecciona \"Websie\"."
2241
 
 
2242
  msgid ""
2243
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
2244
  "b>\"."
2245
  msgstr ""
2246
 
 
2247
  msgid ""
2248
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
2249
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
2250
  "\"."
2251
  msgstr ""
2252
 
 
2253
  msgid ""
2254
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
2255
  "\" button."
2256
  msgstr ""
2257
 
 
2258
  msgid "<b>Don't download the key yet!</b>"
2259
  msgstr ""
2260
 
 
2261
  msgid "3.) Create the Service:"
2262
  msgstr ""
2263
 
 
2264
  #, php-format
2265
  msgid ""
2266
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
2267
  "tab."
2268
  msgstr ""
2269
 
 
2270
  #, php-format
2271
  msgid ""
2272
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
2273
  "option and click the \"<b>Continue</b>\" button."
2274
  msgstr ""
2275
 
 
2276
  msgid "Enter a \"<b>Description</b>\"."
2277
  msgstr ""
2278
 
 
2279
  #, php-format
2280
  msgid ""
2281
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
2282
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
2283
  msgstr ""
2284
 
 
2285
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
2286
  msgstr ""
2287
 
 
2288
  msgid ""
2289
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
2290
  msgstr ""
2291
 
 
2292
  #, php-format
2293
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
2294
  msgstr ""
2295
 
 
2296
  msgid ""
2297
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
2298
  "b>\" button next to it."
2299
  msgstr ""
2300
 
 
2301
  msgid ""
2302
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
2303
  "App what you just created."
2304
  msgstr ""
2305
 
 
2306
  #, fuzzy
2307
  #| msgid "Click on the \"Create New App\" button"
2308
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
2309
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2310
 
 
2311
  msgid ""
2312
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
2313
  "button."
2314
  msgstr ""
2315
 
 
2316
  msgid "4.) Configure Nextend Social Login with your credentials:"
2317
  msgstr ""
2318
 
 
2319
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
2320
  msgstr ""
2321
 
 
2322
  msgid "<strong><u>Private Key ID:</u></strong>"
2323
  msgstr ""
2324
 
 
 
2325
  #, fuzzy, php-format
2326
  #| msgid "Navigate to %s"
2327
  msgid "Navigate to: <b>%s</b>"
2328
  msgstr "Navegar a %s"
2329
 
 
2330
  #, fuzzy
2331
  #| msgid "Click on the Manage button at the App"
2332
  msgid "Click on the <b>name of your Key</b>."
2333
  msgstr "Haz clic en el botón Manage en la App"
2334
 
 
2335
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
2336
  msgstr ""
2337
 
 
2338
  msgid "<strong><u>Private Key:</u></strong>"
2339
  msgstr ""
2340
 
 
2341
  msgid ""
2342
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
2343
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
2344
  "this file safe</b>!</u> "
2345
  msgstr ""
2346
 
 
2347
  msgid ""
2348
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
2349
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
2350
  "\" field of Nextend Social Login."
2351
  msgstr ""
2352
 
 
2353
  msgid "<strong><u>Team Identifier:</u></strong>"
2354
  msgstr ""
2355
 
 
2356
  msgid ""
2357
  "A 10 character long identifier, what you can find on the <b>top-right "
2358
  "corner, just under your name</b>."
2359
  msgstr ""
2360
 
 
2361
  msgid "<strong><u>Service Identifier:</u></strong>"
2362
  msgstr ""
2363
 
 
2364
  #, php-format
2365
  msgid ""
2366
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
2368
  "e.g.: <b>%s.nslclient</b>"
2369
  msgstr ""
2370
 
 
2371
  #, fuzzy
2372
  #| msgid "Once you filled all the required fields, click \"Save\"."
2373
  msgid ""
2377
  "Una vez que hayas completado todos los campos requeridos, haz clic en "
2378
  "\"Guardar\"."
2379
 
 
2380
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
2381
  msgstr ""
2382
 
 
2383
  msgid ""
2384
  "When you need to change your credentials for some reason, then you must "
2385
  "delete the token, copy the new credentials and generate a new token!"
2386
  msgstr ""
2387
 
 
2388
  msgid "Delete credentials"
2389
  msgstr ""
2390
 
 
2391
  msgid "Private Key ID"
2392
  msgstr ""
2393
 
 
2394
  msgid "Private Key"
2395
  msgstr ""
2396
 
 
2397
  msgid "Team Identifier"
2398
  msgstr ""
2399
 
 
2400
  msgid "Service Identifier"
2401
  msgstr ""
2402
 
 
2403
  msgid "Generate Token"
2404
  msgstr ""
2405
 
 
2406
  msgid "Continue with <b>Apple</b>"
2407
  msgstr "Sigue con <b>Apple</b>"
2408
 
 
2409
  #, fuzzy
2410
  msgid "Sign up with <b>Apple</b>"
2411
  msgstr "Sigue con <b>Apple</b>"
2412
 
 
2413
  #, fuzzy
2414
  msgid "Link account with <b>Apple</b>"
2415
  msgstr "Enlazar cuenta con <b>Apple</b>"
2416
 
 
2417
  #, fuzzy
2418
  msgid "Unlink account from <b>Apple</b>"
2419
  msgstr "Desenlazar cuenta de <b>Apple</b>"
2420
 
 
2421
  #, php-format
2422
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2423
  msgstr ""
2424
 
 
 
 
 
2425
  #, php-format
2426
  msgid "Token generation failed: %1$s"
2427
  msgstr ""
2428
 
 
2429
  msgid "Please check your credentials!"
2430
  msgstr ""
2431
 
 
2432
  msgid "Private key format is not valid!"
2433
  msgstr ""
2434
 
 
2435
  #, php-format
2436
  msgid ""
2437
  "%s detected that your Apple credentials have expired. Please delete the "
2438
  "current credentials and generate new one!"
2439
  msgstr ""
2440
 
 
2441
  msgid "Apple Credentials"
2442
  msgstr ""
2443
 
 
 
2444
  #, fuzzy, php-format
2445
  #| msgid "Click on the Manage button at the App"
2446
  msgid "Click on the name of your %s App."
2447
  msgstr "Haz clic en el botón Manage en la App"
2448
 
 
2449
  #, fuzzy
2450
  #| msgid "Find the necessary Authentication Keys under the Authentication menu"
2451
  msgid ""
2453
  "section!"
2454
  msgstr "Busca las Authentication Keys abajo del menú Authentication"
2455
 
 
 
 
2456
  #, fuzzy
2457
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2458
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2459
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2460
 
 
2461
  #, fuzzy
2462
  #| msgid "Click on \"Save Changes\""
2463
  msgid "Click on the \"<b>Save Changes</b>\" button."
2464
  msgstr "Haz clic en \"Guardar Cambios\""
2465
 
 
2466
  #, fuzzy
2467
  #| msgid "Click on the \"Create New App\" button"
2468
  msgid ""
2470
  "Applications tab."
2471
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2472
 
 
2473
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
2474
  msgstr ""
2475
 
 
2476
  #, fuzzy, php-format
2477
  #| msgid ""
2478
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2482
  "Llena \"Website URL\" con la URL de tu página principal, probablemente: <b>"
2483
  "%s</b>"
2484
 
 
2485
  #, fuzzy
2486
  #| msgid "Click on the \"Create New App\" button"
2487
  msgid ""
2489
  "button."
2490
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2491
 
 
2492
  #, fuzzy, php-format
2493
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2494
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
2495
  msgstr ""
2496
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2497
 
 
2498
  #, fuzzy
2499
  #| msgid "Find the necessary Authentication Keys under the Authentication menu"
2500
  msgid ""
2502
  "section."
2503
  msgstr "Busca las Authentication Keys abajo del menú Authentication"
2504
 
 
2505
  #, fuzzy
2506
  #| msgid "Click on \"Save Changes\""
2507
  msgid "Click on the \"<b>Save Changes</b>\" button!"
2508
  msgstr "Haz clic en \"Guardar Cambios\""
2509
 
 
2510
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
2511
  msgstr ""
2512
 
 
2513
  #, fuzzy
2514
  #| msgid ""
2515
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2523
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
2524
  "plugin."
2525
 
 
2526
  #, fuzzy
2527
  #| msgid "App Secret"
2528
  msgid "API Secret"
2529
  msgstr "App Secret"
2530
 
 
2531
  msgid "Continue with <b>Disqus</b>"
2532
  msgstr "Sigue con <b>Disqus</b>"
2533
 
 
2534
  #, fuzzy
2535
  #| msgid "Continue with <b>Disqus</b>"
2536
  msgid "Sign up with <b>Disqus</b>"
2537
  msgstr "Sigue con <b>Disqus</b>"
2538
 
 
2539
  msgid "Link account with <b>Disqus</b>"
2540
  msgstr "Enlazar cuenta con <b>Disqus</b>"
2541
 
 
2542
  msgid "Unlink account from <b>Disqus</b>"
2543
  msgstr "Desenlazar cuenta de <b>Disqus</b>"
2544
 
 
2545
  #, fuzzy, php-format
2546
  #| msgid "Click on the Manage button at the App"
2547
  msgid "Click on the name of the App you configured %s with."
2548
  msgstr "Haz clic en el botón Manage en la App"
2549
 
 
2550
  #, fuzzy, php-format
2551
  #| msgid ""
2552
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2553
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2554
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
2555
 
 
 
2556
  #, fuzzy
2557
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2558
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2559
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2560
 
 
2561
  #, fuzzy
2562
  #| msgid "Hit update to save the changes"
2563
  msgid "Press the <b>Update application</b> button to save the changes."
2564
  msgstr "Haz clic en update para guardar los cambios"
2565
 
 
2566
  #, php-format
2567
  msgid ""
2568
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
2569
  "button."
2570
  msgstr ""
2571
 
 
2572
  msgid ""
2573
  "Enter a name into the <b>Application name</b> field. Users will see this "
2574
  "name, when they authorize your app at the OAuth consent screen!"
2575
  msgstr ""
2576
 
 
2577
  #, fuzzy, php-format
2578
  #| msgid ""
2579
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2583
  "Llena \"Website URL\" con la URL de tu página principal, probablemente: <b>"
2584
  "%s</b>"
2585
 
 
2586
  msgid ""
2587
  "In the <b>Description</b> field you should explain what this App will be "
2588
  "used for."
2589
  msgstr ""
2590
 
 
2591
  #, fuzzy
2592
  #| msgid "Click on the \"Create New App\" button"
2593
  msgid "Click the <b>Register application</b> button."
2594
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2595
 
 
2596
  #, fuzzy
2597
  #| msgid ""
2598
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2602
  "of the page. These will be needed in the plugin's settings!"
2603
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
2604
 
 
2605
  #, php-format
2606
  msgid ""
2607
  "<b>Important note:</b> The email address is only retrievable, if there is a "
2608
  "public email address set at the %1$s profile page%2$s!"
2609
  msgstr ""
2610
 
 
2611
  msgid "Continue with <b>GitHub</b>"
2612
  msgstr "Sigue con <b>GitHub</b>"
2613
 
 
2614
  #, fuzzy
2615
  msgid "Sign up with <b>GitHub</b>"
2616
  msgstr "Sigue con <b>GitHub</b>"
2617
 
 
2618
  msgid "Link account with <b>GitHub</b>"
2619
  msgstr "Enlazar cuenta con <b>GitHub</b>"
2620
 
 
2621
  msgid "Unlink account from <b>GitHub</b>"
2622
  msgstr "Desenlazar cuenta de <b>GitHub</b>"
2623
 
 
2624
  #, fuzzy, php-format
2625
  #| msgid "Navigate to %s"
2626
  msgid "Navigate to your %s"
2627
  msgstr "Navegar a %s"
2628
 
 
2629
  #, php-format
2630
  msgid "Select your %s App and click on the LINE Login section."
2631
  msgstr ""
2632
 
 
2633
  #, fuzzy
2634
  #| msgid "Add the following URL to the \"Callback URL\" field: <b>%s</b>"
2635
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2636
  msgstr "Agrega la siguiente URL al campo de \"Callback URL\": <b>%s</b>"
2637
 
 
2638
  #, php-format
2639
  msgid ""
2640
  "Editing Live Apps are only possible with a %s. So please make sure you own "
2641
  "one!"
2642
  msgstr ""
2643
 
 
2644
  #, fuzzy
2645
  #| msgid "Click on the \"Create New App\" button"
2646
  msgid "Click the \"<b>Create a new provider</b>\" button."
2647
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2648
 
 
2649
  #, fuzzy
2650
  #| msgid "Name your project and then click on the Create button"
2651
  msgid ""
2653
  "button."
2654
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2655
 
 
2656
  msgid ""
2657
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
2658
  "channel</b>\" option."
2659
  msgstr ""
2660
 
 
2661
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
2662
  msgstr ""
2663
 
 
2664
  msgid ""
2665
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
2666
  "created."
2667
  msgstr ""
2668
 
 
2669
  #, fuzzy
2670
  #| msgid "Click on \"Save\""
2671
  msgid "Select your \"<b>Region</b>\"."
2672
  msgstr "Haz clic en \"Guardar Cambios\""
2673
 
 
2674
  msgid ""
2675
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
2676
  "description</b>\". These will appear on your Consent Screen!"
2677
  msgstr ""
2678
 
 
2679
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
2680
  msgstr ""
2681
 
 
2682
  #, fuzzy
2683
  #| msgid "Name your project and then click on the Create button"
2684
  msgid ""
2686
  "\"<b>Create</b>\" button."
2687
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2688
 
 
2689
  msgid ""
2690
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
2691
  "near the \"<b>Email address permission</b>\" label."
2692
  msgstr ""
2693
 
 
2694
  #, fuzzy
2695
  #| msgid "Click on the \"Create New App\" button"
2696
  msgid "Fill out the form, then click the \"<b>Submit</b>\" button."
2697
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2698
 
 
2699
  msgid ""
2700
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
2701
  "section."
2702
  msgstr ""
2703
 
 
2704
  msgid ""
2705
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
2706
  "Channel!"
2707
  msgstr ""
2708
 
 
2709
  #, fuzzy
2710
  #| msgid ""
2711
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2720
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
2721
  "plugin."
2722
 
 
2723
  msgid "Channel ID"
2724
  msgstr ""
2725
 
 
2726
  #, fuzzy
2727
  #| msgid "Consumer Secret"
2728
  msgid "Channel Secret"
2729
  msgstr "Consumer Secret"
2730
 
 
2731
  #, fuzzy
2732
  #| msgid "Continue with <b>LinkedIn</b>"
2733
  msgid "Continue with <b>Line</b>"
2734
  msgstr "Sigue con <b>LinkedIn</b>"
2735
 
 
2736
  #, fuzzy
2737
  #| msgid "Continue with <b>LinkedIn</b>"
2738
  msgid "Sign up with <b>Line</b>"
2739
  msgstr "Sigue con <b>LinkedIn</b>"
2740
 
 
2741
  #, fuzzy
2742
  #| msgid "Link account with <b>LinkedIn</b>"
2743
  msgid "Link account with <b>Line</b>"
2744
  msgstr "Enlazar cuenta con <b>LinkedIn</b>"
2745
 
 
2746
  #, fuzzy
2747
  #| msgid "Unlink account from <b>LinkedIn</b>"
2748
  msgid "Unlink account from <b>Line</b>"
2749
  msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
2750
 
 
2751
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2752
  msgstr ""
2753
 
 
 
 
2754
  #, fuzzy
2755
  #| msgid ""
2756
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2759
  msgstr ""
2760
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2761
 
 
 
 
 
 
2762
  #, fuzzy
2763
  #| msgid "Hit update to save the changes"
2764
  msgid "Click on \"<b>Update</b>\" to save the changes"
2765
  msgstr "Haz clic en update para guardar los cambios"
2766
 
 
2767
  #, fuzzy
2768
  #| msgid "Locate the blue \"Create application\" button and click on it."
2769
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
2770
  msgstr "Busca el botón azul \"Create application\" y haz click en el."
2771
 
 
2772
  #, fuzzy
2773
  #| msgid "Enter the title of your app and select \"Websie\"."
2774
  msgid "Enter the name of your App to the \"App name\" field."
2775
  msgstr "Ingresa el título de tu app y selecciona \"Websie\"."
2776
 
 
2777
  #, php-format
2778
  msgid ""
2779
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
2780
  "one yet, create new one at: %s"
2781
  msgstr ""
2782
 
 
2783
  msgid ""
2784
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
2785
  msgstr ""
2786
 
 
2787
  #, fuzzy
2788
  #| msgid "Name your project and then click on the Create button"
2789
  msgid ""
2791
  "App</b>\" button!"
2792
  msgstr "Denomina tu proyecto y luego haz clic en el botón Create"
2793
 
 
2794
  msgid ""
2795
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
2796
  "tab."
2797
  msgstr ""
2798
 
 
2799
  #, php-format
2800
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
2801
  msgstr ""
2802
 
 
2803
  msgid ""
2804
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
2805
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
2806
  "button."
2807
  msgstr ""
2808
 
 
2809
  #, fuzzy
2810
  #| msgid "Click on the Create button"
2811
  msgid "Click on the \"<b>Auth</b>\" tab."
2812
  msgstr "Haz clic en el botón Create"
2813
 
 
2814
  #, fuzzy
2815
  #| msgid ""
2816
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2821
  msgstr ""
2822
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2823
 
 
2824
  #, fuzzy
2825
  #| msgid ""
2826
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2830
  "the Application credentials section, on the <b>Auth</b> tab."
2831
  msgstr "Busca la \"Client ID\" y \"Client Secret\" en el medio de la página."
2832
 
 
2833
  msgid "Continue with <b>LinkedIn</b>"
2834
  msgstr "Sigue con <b>LinkedIn</b>"
2835
 
 
2836
  #, fuzzy
2837
  #| msgid "Continue with <b>LinkedIn</b>"
2838
  msgid "Sign up with <b>LinkedIn</b>"
2839
  msgstr "Sigue con <b>LinkedIn</b>"
2840
 
 
2841
  msgid "Link account with <b>LinkedIn</b>"
2842
  msgstr "Enlazar cuenta con <b>LinkedIn</b>"
2843
 
 
2844
  msgid "Unlink account from <b>LinkedIn</b>"
2845
  msgstr "Desenlazar cuenta de <b>LinkedIn</b>"
2846
 
 
2847
  #, fuzzy, php-format
2848
  #| msgid "Log in with your %s credentials if you are not logged in"
2849
  msgid "Log in with your %s credentials if you are not logged in yet."
2850
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
2851
 
 
 
2852
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
2853
  msgstr ""
2854
 
 
2855
  #, fuzzy, php-format
2856
  #| msgid "Click on the App with App ID: %s"
2857
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
2858
  msgstr "Haz clic en la App con la App ID: %s"
2859
 
 
2860
  #, fuzzy
2861
  #| msgid ""
2862
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2865
  msgstr ""
2866
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2867
 
 
2868
  #, fuzzy
2869
  #| msgid ""
2870
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2873
  msgstr ""
2874
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2875
 
 
2876
  #, fuzzy, php-format
2877
  #| msgid "Log in with your %s credentials if you are not logged in"
2878
  msgid ""
2880
  "account."
2881
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión"
2882
 
 
2883
  #, fuzzy
2884
  #| msgid "Click on \"Save\""
2885
  msgid "Click on \"<b>New registration</b>\"."
2886
  msgstr "Haz clic en \"Guardar Cambios\""
2887
 
 
2888
  #, fuzzy
2889
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2890
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2891
  msgstr ""
2892
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
2893
 
 
2894
  msgid ""
2895
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2896
  "account types."
2897
  msgstr ""
2898
 
 
2899
  #, fuzzy
2900
  #| msgid ""
2901
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2904
  msgstr ""
2905
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2906
 
 
2907
  #, fuzzy
2908
  #| msgid "Click on the \"Create New App\" button"
2909
  msgid "Create your App with the \"<b>Register</b>\" button."
2910
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
2911
 
 
2912
  #, fuzzy
2913
  #| msgid "Click on the Create button"
2914
  msgid "You land on the \"<b>Overview</b>\" page."
2915
  msgstr "Haz clic en el botón Create"
2916
 
 
2917
  msgid ""
2918
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
2919
  "(client) ID</b> in the plugin settings."
2920
  msgstr ""
2921
 
 
2922
  msgid ""
2923
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
2924
  "Client credentials label."
2925
  msgstr ""
2926
 
 
2927
  #, fuzzy
2928
  #| msgid "Click on \"Save\""
2929
  msgid "Click on \"<b>New client secret</b>\"."
2930
  msgstr "Haz clic en \"Guardar Cambios\""
2931
 
 
2932
  msgid "Fill the \"<b>Description</b>\" field."
2933
  msgstr ""
2934
 
 
2935
  #, fuzzy
2936
  #| msgid ""
2937
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
2940
  msgstr ""
2941
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
2942
 
 
2943
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
2944
  msgstr ""
2945
 
 
2946
  #, fuzzy
2947
  #| msgid ""
2948
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
2956
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
2957
  "plugin."
2958
 
 
2959
  #, fuzzy
2960
  #| msgid "Application ID"
2961
  msgid "Application (client) ID"
2962
  msgstr "Application ID"
2963
 
 
2964
  #, fuzzy
2965
  #| msgid "Client Secret"
2966
  msgid "Client secret"
2967
  msgstr "Client Secret"
2968
 
 
2969
  #, fuzzy
2970
  #| msgid "Continue with <b>Yahoo</b>"
2971
  msgid "Continue with <b>Microsoft</b>"
2972
  msgstr "Sigue con <b>Yahoo</b>"
2973
 
 
2974
  #, fuzzy
2975
  msgid "Sign up with <b>Microsoft</b>"
2976
  msgstr "Sigue con <b>Yahoo</b>"
2977
 
 
2978
  #, fuzzy
2979
  #| msgid "Link account with <b>Yahoo</b>"
2980
  msgid "Link account with <b>Microsoft</b>"
2981
  msgstr "Enlazar cuenta con <b>Yahoo</b>"
2982
 
 
2983
  #, fuzzy
2984
  #| msgid "Unlink account from <b>Yahoo</b>"
2985
  msgid "Unlink account from <b>Microsoft</b>"
2986
  msgstr "Desenlazar cuenta de <b>Yahoo</b>"
2987
 
 
 
2988
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
2989
  msgstr ""
2990
 
 
2991
  #, fuzzy, php-format
2992
  #| msgid "Click on the Manage button at the App"
2993
  msgid "Click on the name of your %s App, under the REST API apps section."
2994
  msgstr "Haz clic en el botón Manage en la App"
2995
 
 
2996
  msgid ""
2997
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
2998
  "b>\" heading and click \"<b>Show</b>\"."
2999
  msgstr ""
3000
 
 
 
3001
  #, fuzzy
3002
  #| msgid ""
3003
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3004
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3005
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
3006
 
 
3007
  msgid "Click on \"Save\""
3008
  msgstr "Haz clic en \"Guardar Cambios\""
3009
 
 
3010
  #, php-format
3011
  msgid ""
3012
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
3013
  "step, if not click on the link!"
3014
  msgstr ""
3015
 
 
3016
  msgid "Click on Registration and create a Business account."
3017
  msgstr ""
3018
 
 
3019
  msgid "If you are done, follow the guide from the 5. step."
3020
  msgstr ""
3021
 
 
3022
  #, fuzzy, php-format
3023
  #| msgid "Log in with your %s credentials if you are not logged in."
3024
  msgid "Log in with your %s credentials."
3025
  msgstr "Inicia sesión con tus %s credenciales si no has iniciado sesión."
3026
 
 
3027
  #, fuzzy
3028
  #| msgid "Click on the \"Create New App\" button"
3029
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
3030
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3031
 
 
3032
  msgid ""
3033
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
3034
  msgstr ""
3035
 
 
3036
  msgid ""
3037
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3038
  "b>\" heading then click \"<b>Show</b>\"."
3039
  msgstr ""
3040
 
 
3041
  msgid ""
3042
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
3043
  "with PayPal</b>\"."
3044
  msgstr ""
3045
 
 
3046
  msgid ""
3047
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
3048
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
3049
  msgstr ""
3050
 
 
3051
  #, fuzzy
3052
  #| msgid "Please enter an email address."
3053
  msgid "Tick \"<b>Full name</b>\"."
3054
  msgstr "Por favor introduce un email."
3055
 
 
3056
  msgid ""
3057
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
3058
  "email address as well, <b>please submit your App for a review</b> after your "
3061
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
3062
  msgstr ""
3063
 
 
3064
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
3065
  msgstr ""
3066
 
 
3067
  msgid ""
3068
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
3069
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
3070
  "\"<b>Live</b>\" mode and not \"Sandbox\". )"
3071
  msgstr ""
3072
 
 
3073
  #, fuzzy
3074
  #| msgid "App Secret"
3075
  msgid "Secret"
3076
  msgstr "App Secret"
3077
 
 
3078
  #, fuzzy
3079
  #| msgid "Email"
3080
  msgid "Email scope"
3081
  msgstr "Email"
3082
 
 
3083
  msgid "Disable, when you have no rights for email address."
3084
  msgstr ""
3085
 
 
3086
  msgid "Continue with <b>PayPal</b>"
3087
  msgstr "Sigue con <b>PayPal</b>"
3088
 
 
3089
  #, fuzzy
3090
  #| msgid "Continue with <b>PayPal</b>"
3091
  msgid "Sign up with <b>PayPal</b>"
3092
  msgstr "Sigue con <b>PayPal</b>"
3093
 
 
3094
  msgid "Link account with <b>PayPal</b>"
3095
  msgstr "Enlazar cuenta con <b>PayPal</b>"
3096
 
 
3097
  msgid "Unlink account from <b>PayPal</b>"
3098
  msgstr "Desenlazar cuenta de <b>PayPal</b>"
3099
 
 
3100
  #, fuzzy
3101
  #| msgid "Click on the Manage button at the App"
3102
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3103
  msgstr "Haz clic en el botón Manage en la App"
3104
 
 
3105
  #, fuzzy
3106
  #| msgid "Go to the Settings menu"
3107
  msgid "Go to the \"<b>Settings</b>\" menu"
3108
  msgstr "Ve al menú de Ajustes"
3109
 
 
 
3110
  #, fuzzy
3111
  #| msgid ""
3112
  #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
3114
  msgstr ""
3115
  "Agrega la siguiente URL al campo \"Authorized redirect URI\": <b>%s</b>"
3116
 
 
3117
  #, fuzzy
3118
  #| msgid "Locate the blue \"Create application\" button and click on it."
3119
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3120
  msgstr "Busca el botón azul \"Create application\" y haz click en el."
3121
 
 
3122
  #, fuzzy
3123
  #| msgid "Enter the title of your app and select \"Websie\"."
3124
  msgid ""
3126
  "platform."
3127
  msgstr "Ingresa el título de tu app y selecciona \"Websie\"."
3128
 
 
3129
  #, fuzzy, php-format
3130
  #| msgid ""
3131
  #| "Fill \"Site address\" with the url of your homepage, probably: <b>%s</b>"
3136
  "Llena \"Site address\" con la url de tu página principal, probablemente: <b>"
3137
  "%s</b>"
3138
 
 
3139
  #, fuzzy, php-format
3140
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
3141
  msgid ""
3143
  msgstr ""
3144
  "Llena el campo \"Base domain\" con tu dominio, probablemente: <b>%s</b>"
3145
 
 
3146
  #, fuzzy
3147
  #| msgid "When all fields are filled, click \"Save\"."
3148
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
3149
  msgstr ""
3150
  "Una vez que hayas completado todos los campos, haz clic en \"Guardar\"."
3151
 
 
3152
  #, fuzzy
3153
  #| msgid "Fill the form for your app and upload an app icon then hit Save."
3154
  msgid ""
3158
  "Llena el formulario de tu app y carga un ícono de la app, luego haz clic en "
3159
  "Guardar."
3160
 
 
3161
  #, fuzzy
3162
  #| msgid "Pick Settings at the left-hand menu "
3163
  msgid "Pick <b>Settings</b> at the left-hand menu "
3164
  msgstr "Escoge Ajustes en el menú de la izquierda"
3165
 
 
3166
  #, fuzzy
3167
  #| msgid "Save your app"
3168
  msgid "<b>Save</b> your app"
3169
  msgstr "Guarda tu app"
3170
 
 
3171
  #, fuzzy
3172
  #| msgid ""
3173
  #| "Find the necessary Application ID and Secure key at the top of the "
3179
  "Busca la Application ID y Secure key en la parte superior de la página "
3180
  "Ajustes dónde acabas de hacer clic en el botón de guardar."
3181
 
 
3182
  msgid "Secure key"
3183
  msgstr "Secure key"
3184
 
 
3185
  msgid "Continue with <b>VK</b>"
3186
  msgstr "Sigue con <b>VK</b>"
3187
 
 
3188
  #, fuzzy
3189
  #| msgid "Continue with <b>VK</b>"
3190
  msgid "Sign up with <b>VK</b>"
3191
  msgstr "Sigue con <b>VK</b>"
3192
 
 
3193
  msgid "Link account with <b>VK</b>"
3194
  msgstr "Enlazar cuenta con <b>VK</b>"
3195
 
 
3196
  msgid "Unlink account from <b>VK</b>"
3197
  msgstr "Desenlazar cuenta de <b>VK</b>"
3198
 
 
3199
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
3200
  msgstr ""
3201
 
 
3202
  #, fuzzy
3203
  #| msgid "Click on the \"Create New App\" button"
3204
  msgid "Click on the \"<b>Create New Application</b>\" button."
3205
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3206
 
 
3207
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
3208
  msgstr ""
3209
 
 
3210
  #, fuzzy, php-format
3211
  #| msgid ""
3212
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
3217
  "Llena \"Website URL\" con la URL de tu página principal, probablemente: <b>"
3218
  "%s</b>"
3219
 
 
3220
  msgid "You can leave the \"Javascript Origins\" field blank!"
3221
  msgstr ""
3222
 
 
3223
  msgid "Complete the human verification test."
3224
  msgstr ""
3225
 
 
3226
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
3227
  msgstr ""
3228
 
 
3229
  #, fuzzy
3230
  #| msgid "Click on the \"Create New App\" button"
3231
  msgid "Click the \"<b>Create</b>\" button!"
3232
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3233
 
 
3234
  msgid ""
3235
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
3236
  "next to Editing!"
3237
  msgstr ""
3238
 
 
3239
  #, fuzzy
3240
  #| msgid ""
3241
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
3249
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
3250
  "plugin."
3251
 
 
3252
  msgid "Continue with <b>WordPress.com</b>"
3253
  msgstr "Sigue con <b>WordPress.com</b>"
3254
 
 
3255
  #, fuzzy
3256
  #| msgid "Continue with <b>WordPress.com</b>"
3257
  msgid "Sign up with <b>WordPress.com</b>"
3258
  msgstr "Sigue con <b>WordPress.com</b>"
3259
 
 
3260
  msgid "Link account with <b>WordPress.com</b>"
3261
  msgstr "Enlazar cuenta con <b>WordPress.com</b>"
3262
 
 
3263
  msgid "Unlink account from <b>WordPress.com</b>"
3264
  msgstr "Desenlazar cuenta de <b>WordPress.com</b>"
3265
 
 
3266
  msgid "Click on the App which has its credentials associated with the plugin."
3267
  msgstr ""
3268
 
 
 
3269
  #, fuzzy
3270
  #| msgid ""
3271
  #| "Add the following URL to the \"Authorized Redirect URLs:\" field: <b>%s</"
3274
  msgstr ""
3275
  "Agrega la siguiente URL al campo \"Authorized Redirect URLs\": <b>%s</b>"
3276
 
 
3277
  #, fuzzy
3278
  #| msgid "Click on the \"Create New App\" button"
3279
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3280
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3281
 
 
3282
  msgid ""
3283
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
3284
  "at \"<b>Application Type</b>\"."
3285
  msgstr ""
3286
 
 
3287
  msgid "Enter a \"<b>Description</b>\" for your app!"
3288
  msgstr ""
3289
 
 
3290
  #, fuzzy, php-format
3291
  #| msgid ""
3292
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
3294
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
3295
  msgstr "Agrega la siguiente URL al campo \"Allowed Return URLs\" <b>%s</b> "
3296
 
 
3297
  msgid ""
3298
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3299
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3300
  msgstr ""
3301
 
 
3302
  #, fuzzy
3303
  #| msgid "Click on the \"Create New App\" button"
3304
  msgid "Click \"<b>Create App</b>\"."
3305
  msgstr "Haz clic en el botón de \"Create New App\" por favor"
3306
 
 
3307
  #, fuzzy
3308
  #| msgid ""
3309
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
3317
  "en el botón \"Mostrar\". Estos serán necesarios en la configuración del "
3318
  "plugin."
3319
 
 
3320
  msgid "Continue with <b>Yahoo</b>"
3321
  msgstr "Sigue con <b>Yahoo</b>"
3322
 
 
3323
  #, fuzzy
3324
  msgid "Sign up with <b>Yahoo</b>"
3325
  msgstr "Sigue con <b>Yahoo</b>"
3326
 
 
3327
  msgid "Link account with <b>Yahoo</b>"
3328
  msgstr "Enlazar cuenta con <b>Yahoo</b>"
3329
 
 
3330
  msgid "Unlink account from <b>Yahoo</b>"
3331
  msgstr "Desenlazar cuenta de <b>Yahoo</b>"
3332
 
 
3333
  #, fuzzy, php-format
3334
  #| msgid "Required scope: %1$s"
3335
  msgid "Required permission: %1$s"
3336
  msgstr "Alcance requerido: %1$s"
3337
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3338
  msgid "OR"
3339
  msgstr "O"
3340
 
 
 
 
 
3341
  msgid "Social accounts"
3342
  msgstr "Cuentas sociales"
3343
 
languages/nextend-facebook-connect-fr_FR.mo CHANGED
Binary file
languages/nextend-facebook-connect-fr_FR.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 2021-09-08 13:29+0200\n"
5
- "PO-Revision-Date: 2021-09-08 13:29+0200\n"
6
  "Last-Translator: \n"
7
- "Language-Team: \n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -17,6 +17,7 @@ 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\n"
21
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
22
  "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
@@ -26,11 +27,9 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
- #: nextend-facebook-connect/NSL/GDPR.php:34
30
  msgid "What personal data we collect and why we collect it"
31
  msgstr ""
32
 
33
- #: nextend-facebook-connect/NSL/GDPR.php:35
34
  #, php-format
35
  msgid ""
36
  "%1$s collects data when a visitor register, login or link the account with "
@@ -40,11 +39,9 @@ msgid ""
40
  "feature."
41
  msgstr ""
42
 
43
- #: nextend-facebook-connect/NSL/GDPR.php:37
44
  msgid "Who we share your data with"
45
  msgstr ""
46
 
47
- #: nextend-facebook-connect/NSL/GDPR.php:38
48
  #, php-format
49
  msgid ""
50
  "%1$s stores the personal data on your site and does not share it with anyone "
@@ -52,44 +49,36 @@ msgid ""
52
  "the social providers."
53
  msgstr ""
54
 
55
- #: nextend-facebook-connect/NSL/GDPR.php:40
56
  msgid "Does the plugin share personal data with third parties"
57
  msgstr ""
58
 
59
- #: nextend-facebook-connect/NSL/GDPR.php:41
60
  #, php-format
61
  msgid ""
62
  "%1$s use the access token what the social provider gave to communicate with "
63
  "the providers to verify account and securely access personal data."
64
  msgstr ""
65
 
66
- #: nextend-facebook-connect/NSL/GDPR.php:43
67
  msgid "How long we retain your data"
68
  msgstr ""
69
 
70
- #: nextend-facebook-connect/NSL/GDPR.php:44
71
  #, php-format
72
  msgid ""
73
  "%1$s removes the collected personal data when the user deleted from "
74
  "WordPress."
75
  msgstr ""
76
 
77
- #: nextend-facebook-connect/NSL/GDPR.php:46
78
  msgid "Does the plugin use personal data collected by others?"
79
  msgstr ""
80
 
81
- #: nextend-facebook-connect/NSL/GDPR.php:47
82
  #, php-format
83
  msgid ""
84
  "%1$s use the personal data collected by the social providers to create "
85
  "account on your site when the visitor authorize it."
86
  msgstr ""
87
 
88
- #: nextend-facebook-connect/NSL/GDPR.php:49
89
  msgid "Does the plugin store things in the browser?"
90
  msgstr ""
91
 
92
- #: nextend-facebook-connect/NSL/GDPR.php:50
93
  #, php-format
94
  msgid ""
95
  "Yes, %1$s must create a cookie for visitors who use the social login "
@@ -97,100 +86,67 @@ msgid ""
97
  "communication and to redirect the user back to the last location."
98
  msgstr ""
99
 
100
- #: nextend-facebook-connect/NSL/GDPR.php:52
101
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
102
  msgstr ""
103
 
104
- #: nextend-facebook-connect/NSL/GDPR.php:53
105
- #: nextend-facebook-connect/NSL/GDPR.php:56
106
  msgid "No"
107
  msgstr ""
108
 
109
- #: nextend-facebook-connect/NSL/GDPR.php:55
110
  msgid ""
111
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
112
  "third party?"
113
  msgstr ""
114
 
115
- #: nextend-facebook-connect/NSL/GDPR.php:99
116
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57
117
  msgid "User"
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/admin/admin.php:206
121
  #, php-format
122
  msgid "%s needs json_decode function."
123
  msgstr ""
124
 
125
- #: nextend-facebook-connect/admin/admin.php:206
126
  msgid "Please contact your server administrator and ask for solution!"
127
  msgstr ""
128
 
129
- #: nextend-facebook-connect/admin/admin.php:250
130
- #: nextend-facebook-connect/admin/admin.php:280
131
  msgid "Settings saved."
132
  msgstr ""
133
 
134
- #: nextend-facebook-connect/admin/admin.php:259
135
  msgid "The activation was successful"
136
  msgstr ""
137
 
138
- #: nextend-facebook-connect/admin/admin.php:270
139
  msgid "Deactivate completed."
140
  msgstr ""
141
 
142
- #: nextend-facebook-connect/admin/admin.php:449
143
- #: nextend-facebook-connect/admin/templates-provider/menu.php:15
144
- #: nextend-facebook-connect/admin/templates/providers.php:89
145
- #: nextend-facebook-connect/admin/templates/providers.php:101
146
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
147
  msgid "Settings"
148
  msgstr ""
149
 
150
- #: nextend-facebook-connect/admin/admin.php:532
151
- #: nextend-facebook-connect/includes/oauth2.php:143
152
- #: nextend-facebook-connect/includes/oauth2.php:288
153
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
154
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
155
- #: nextend-social-login-pro/providers/apple/apple-client.php:87
156
- #: nextend-social-login-pro/providers/github/github-client.php:87
157
  #, php-format
158
  msgid "Unexpected response: %s"
159
  msgstr ""
160
 
161
- #: nextend-facebook-connect/admin/admin.php:593
162
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
163
  #, php-format
164
  msgid ""
165
  "%s detected that your login url changed. You must update the Oauth redirect "
166
  "URIs in the related social applications."
167
  msgstr ""
168
 
169
- #: nextend-facebook-connect/admin/admin.php:594
170
- #: nextend-social-login-pro/providers/apple/apple.php:294
171
  msgid "Fix Error"
172
  msgstr ""
173
 
174
- #: nextend-facebook-connect/admin/admin.php:594
175
  msgid "Oauth Redirect URI"
176
  msgstr ""
177
 
178
- #: nextend-facebook-connect/admin/admin.php:611
179
  #, php-format
180
  msgid ""
181
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
182
  "display Social Login buttons in %2$s login form!"
183
  msgstr ""
184
 
185
- #: nextend-facebook-connect/admin/admin.php:612
186
  msgid "Dismiss and check Pro Addon"
187
  msgstr ""
188
 
189
- #: nextend-facebook-connect/admin/admin.php:612
190
  msgid "Dismiss"
191
  msgstr ""
192
 
193
- #: nextend-facebook-connect/admin/admin.php:618
194
  #, php-format
195
  msgid ""
196
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -198,39 +154,30 @@ msgid ""
198
  "work properly."
199
  msgstr ""
200
 
201
- #: nextend-facebook-connect/admin/admin.php:619
202
  msgid "Fix now"
203
  msgstr ""
204
 
205
- #: nextend-facebook-connect/admin/admin.php:643
206
  msgid "Activate your Pro Addon"
207
  msgstr ""
208
 
209
- #: nextend-facebook-connect/admin/admin.php:644
210
  msgid ""
211
  "To be able to use the Pro features, you need to activate Nextend Social "
212
  "Login Pro Addon. You can do this by clicking on the Activate button below "
213
  "then select the related purchase."
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:649
217
- #: nextend-social-login-pro/nextend-social-login-pro.php:110
218
  msgid "Activate"
219
  msgstr ""
220
 
221
- #: nextend-facebook-connect/admin/admin.php:747
222
  msgid "License key"
223
  msgstr ""
224
 
225
- #: nextend-facebook-connect/admin/admin.php:770
226
  msgid "OAuth proxy page"
227
  msgstr ""
228
 
229
- #: nextend-facebook-connect/admin/admin.php:773
230
  msgid "Register flow page"
231
  msgstr ""
232
 
233
- #: nextend-facebook-connect/admin/admin.php:780
234
  #, php-format
235
  msgid ""
236
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
@@ -238,470 +185,285 @@ msgid ""
238
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
239
  msgstr ""
240
 
241
- #: nextend-facebook-connect/admin/interim.php:12
242
- #: nextend-facebook-connect/admin/interim.php:23
243
  msgid "You have logged in successfully."
244
  msgstr ""
245
 
246
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
247
  msgid "Login label"
248
  msgstr ""
249
 
250
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
251
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
252
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
253
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
254
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
255
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
256
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
257
  msgid "Reset to default"
258
  msgstr ""
259
 
260
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
261
  msgid "Register label"
262
  msgstr ""
263
 
264
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
265
  msgid "Link label"
266
  msgstr ""
267
 
268
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
269
  msgid "Unlink label"
270
  msgstr ""
271
 
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
273
  msgid "Default button"
274
  msgstr ""
275
 
276
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
277
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
278
  msgid "Use custom button"
279
  msgstr ""
280
 
281
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
282
  #, php-format
283
  msgid "Use the %s in your custom button's code to make the label show up."
284
  msgstr ""
285
 
286
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
287
  msgid "Icon button"
288
  msgstr ""
289
 
290
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
291
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
292
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
293
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:220
294
- #: nextend-facebook-connect/admin/templates/settings/comment.php:79
295
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8
296
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:127
297
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8
298
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:167
299
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:198
300
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
301
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:198
302
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:179
303
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:347
304
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
305
- #: nextend-facebook-connect/providers/google/admin/settings.php:62
306
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
307
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
308
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
309
- #: nextend-social-login-pro/providers/github/admin/settings.php:48
310
- #: nextend-social-login-pro/providers/line/admin/settings.php:47
311
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:57
312
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:48
313
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:60
314
- #: nextend-social-login-pro/providers/vk/admin/settings.php:48
315
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
316
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47
317
  msgid "Save Changes"
318
  msgstr ""
319
 
320
- #: nextend-facebook-connect/admin/templates-provider/menu.php:13
321
- #: nextend-facebook-connect/admin/templates/providers.php:69
322
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
323
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
324
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
325
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
326
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28
327
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
328
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:8
329
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:8
330
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
331
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:8
332
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
333
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
334
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
335
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8
336
  msgid "Getting Started"
337
  msgstr ""
338
 
339
- #: nextend-facebook-connect/admin/templates-provider/menu.php:17
340
  msgid "Buttons"
341
  msgstr ""
342
 
343
- #: nextend-facebook-connect/admin/templates-provider/menu.php:21
344
  msgid "Sync data"
345
  msgstr ""
346
 
347
- #: nextend-facebook-connect/admin/templates-provider/menu.php:24
348
  msgid "Usage"
349
  msgstr ""
350
 
351
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11
352
  msgid "Other settings"
353
  msgstr ""
354
 
355
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16
356
  msgid "Username prefix on register"
357
  msgstr ""
358
 
359
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
360
  msgid "Fallback username prefix on register"
361
  msgstr ""
362
 
363
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27
364
  msgid "Used when username is invalid or not stored"
365
  msgstr ""
366
 
367
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32
368
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
369
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
370
  msgid "Terms and conditions"
371
  msgstr ""
372
 
373
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
374
  #, php-format
375
  msgid "Override global \"%1$s\""
376
  msgstr ""
377
 
378
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
379
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12
380
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12
381
  msgid "PRO settings"
382
  msgstr ""
383
 
384
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28
385
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32
386
  msgid "Ask E-mail on registration"
387
  msgstr ""
388
 
389
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35
390
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69
391
  msgid "Never"
392
  msgstr ""
393
 
394
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38
395
  msgid "When email is not provided or empty"
396
  msgstr ""
397
 
398
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41
399
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
400
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72
401
  msgid "Always"
402
  msgstr ""
403
 
404
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46
405
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50
406
  msgid "Ask Username on registration"
407
  msgstr ""
408
 
409
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53
410
  msgid "Never, generate automatically"
411
  msgstr ""
412
 
413
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
414
  msgid "When username is empty or invalid"
415
  msgstr ""
416
 
417
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
418
  msgid "Ask Password on registration"
419
  msgstr ""
420
 
421
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
422
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
423
  msgid "Automatically connect the existing account upon registration"
424
  msgstr ""
425
 
426
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
427
- #: nextend-facebook-connect/admin/templates/providers.php:47
428
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:86
429
- #: nextend-facebook-connect/admin/templates/settings/general.php:48
430
- #: nextend-facebook-connect/admin/templates/settings/general.php:213
431
- #: nextend-facebook-connect/admin/templates/settings/general.php:228
432
- #: nextend-facebook-connect/admin/templates/settings/general.php:246
433
- #: nextend-facebook-connect/admin/templates/settings/general.php:261
434
- #: nextend-facebook-connect/includes/provider-admin.php:218
435
  msgid "Disabled"
436
  msgstr ""
437
 
438
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88
439
  msgid "Automatic, based on email address"
440
  msgstr ""
441
 
442
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93
443
  msgid "Disable login for the selected roles"
444
  msgstr ""
445
 
446
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113
447
  msgid "Default roles for user who registered with this provider"
448
  msgstr ""
449
 
450
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
451
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50
452
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:76
453
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:143
454
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:168
455
- #: nextend-facebook-connect/admin/templates/settings/comment.php:39
456
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35
457
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97
458
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:39
459
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:111
460
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
461
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
462
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
463
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
464
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
465
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
466
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
467
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:199
468
- #: nextend-facebook-connect/widget.php:42
469
  msgid "Default"
470
  msgstr ""
471
 
472
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
473
  msgid "Register"
474
  msgstr ""
475
 
476
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58
477
  msgid "Login"
478
  msgstr ""
479
 
480
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66
481
  msgid "Link"
482
  msgstr ""
483
 
484
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84
485
  msgid "Store in meta key"
486
  msgstr ""
487
 
488
- #: nextend-facebook-connect/admin/templates-provider/usage.php:9
489
  msgid "Shortcode"
490
  msgstr ""
491
 
492
- #: nextend-facebook-connect/admin/templates-provider/usage.php:12
493
  msgid "Important!"
494
  msgstr ""
495
 
496
- #: nextend-facebook-connect/admin/templates-provider/usage.php:13
497
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
498
  msgstr ""
499
 
500
- #: nextend-facebook-connect/admin/templates-provider/usage.php:14
501
  msgid "See the full list of shortcode parameters."
502
  msgstr ""
503
 
504
- #: nextend-facebook-connect/admin/templates-provider/usage.php:31
505
  msgid "Simple link"
506
  msgstr ""
507
 
508
- #: nextend-facebook-connect/admin/templates-provider/usage.php:34
509
  msgid "Click here to login or register"
510
  msgstr ""
511
 
512
- #: nextend-facebook-connect/admin/templates-provider/usage.php:39
513
  msgid "Image button"
514
  msgstr ""
515
 
516
- #: nextend-facebook-connect/admin/templates-provider/usage.php:42
517
  msgid "Image url"
518
  msgstr ""
519
 
520
- #: nextend-facebook-connect/admin/templates/debug.php:7
521
- #: nextend-facebook-connect/admin/templates/header.php:20
522
  msgid "Debug"
523
  msgstr ""
524
 
525
- #: nextend-facebook-connect/admin/templates/debug.php:41
526
  msgid "Test network connection with providers"
527
  msgstr ""
528
 
529
- #: nextend-facebook-connect/admin/templates/debug.php:48
530
  msgid "You don't have cURL support, please enable it in php.ini!"
531
  msgstr ""
532
 
533
- #: nextend-facebook-connect/admin/templates/debug.php:58
534
  #, php-format
535
  msgid "Test %1$s connection"
536
  msgstr ""
537
 
538
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
539
  msgid "Fix Oauth Redirect URIs"
540
  msgstr ""
541
 
542
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13
543
  msgid "Every Oauth Redirect URI seems fine"
544
  msgstr ""
545
 
546
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32
547
  msgid "Got it"
548
  msgstr ""
549
 
550
- #: nextend-facebook-connect/admin/templates/global-settings.php:28
551
- #: nextend-facebook-connect/admin/templates/menu.php:8
552
  msgid "Global Settings"
553
  msgstr ""
554
 
555
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
556
  msgid "General"
557
  msgstr ""
558
 
559
- #: nextend-facebook-connect/admin/templates/global-settings.php:33
560
  msgid "Privacy"
561
  msgstr ""
562
 
563
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
564
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
565
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
566
  msgid "Login Form"
567
  msgstr ""
568
 
569
- #: nextend-facebook-connect/admin/templates/global-settings.php:39
570
  msgid "Comment"
571
  msgstr ""
572
 
573
- #: nextend-facebook-connect/admin/templates/header.php:14
574
  msgid "Docs"
575
  msgstr ""
576
 
577
- #: nextend-facebook-connect/admin/templates/header.php:17
578
  msgid "Support"
579
  msgstr ""
580
 
581
- #: nextend-facebook-connect/admin/templates/header.php:23
582
- #: nextend-facebook-connect/admin/templates/menu.php:12
583
  msgid "Pro Addon"
584
  msgstr ""
585
 
586
- #: nextend-facebook-connect/admin/templates/menu.php:6
587
  msgid "Providers"
588
  msgstr ""
589
 
590
- #: nextend-facebook-connect/admin/templates/pro-addon.php:13
591
- #: nextend-social-login-pro/class-provider-extension.php:213
592
- #: nextend-social-login-pro/class-provider-extension.php:216
593
  msgid "Error"
594
  msgstr ""
595
 
596
- #: nextend-facebook-connect/admin/templates/pro-addon.php:14
597
  msgid ""
598
  "You don’t have sufficient permissions to install and activate plugins. "
599
  "Please contact your site’s administrator!"
600
  msgstr ""
601
 
602
- #: nextend-facebook-connect/admin/templates/pro-addon.php:22
603
- #: nextend-facebook-connect/admin/templates/pro-addon.php:32
604
- #: nextend-facebook-connect/admin/templates/pro.php:34
605
  msgid "Activate Pro Addon"
606
  msgstr ""
607
 
608
- #: nextend-facebook-connect/admin/templates/pro-addon.php:23
609
  msgid ""
610
  "Pro Addon is installed but not activated. To be able to use the Pro "
611
  "features, you need to activate it."
612
  msgstr ""
613
 
614
- #: nextend-facebook-connect/admin/templates/pro-addon.php:37
615
- #: nextend-facebook-connect/admin/templates/pro-addon.php:142
616
  msgid "Deactivate Pro Addon"
617
  msgstr ""
618
 
619
- #: nextend-facebook-connect/admin/templates/pro-addon.php:48
620
- #: nextend-facebook-connect/admin/templates/pro.php:43
621
  msgid "Pro Addon is not installed"
622
  msgstr ""
623
 
624
- #: nextend-facebook-connect/admin/templates/pro-addon.php:50
625
  msgid ""
626
  "To access the Pro features, you need to install and activate the Pro Addon."
627
  msgstr ""
628
 
629
- #: nextend-facebook-connect/admin/templates/pro-addon.php:59
630
  #, php-format
631
  msgid "Install %s now"
632
  msgstr ""
633
 
634
- #: nextend-facebook-connect/admin/templates/pro-addon.php:60
635
- #: nextend-facebook-connect/admin/templates/pro.php:47
636
  msgid "Install Pro Addon"
637
  msgstr ""
638
 
639
- #: nextend-facebook-connect/admin/templates/pro-addon.php:94
640
  msgid "Activating..."
641
  msgstr ""
642
 
643
- #: nextend-facebook-connect/admin/templates/pro-addon.php:118
644
  msgid "Not compatible!"
645
  msgstr ""
646
 
647
- #: nextend-facebook-connect/admin/templates/pro-addon.php:119
648
  #, php-format
649
  msgid ""
650
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
651
  "newer."
652
  msgstr ""
653
 
654
- #: nextend-facebook-connect/admin/templates/pro-addon.php:123
655
  msgid "Update Pro Addon"
656
  msgstr ""
657
 
658
- #: nextend-facebook-connect/admin/templates/pro-addon.php:133
659
  msgid "Pro Addon is installed and activated"
660
  msgstr ""
661
 
662
- #: nextend-facebook-connect/admin/templates/pro-addon.php:135
663
  msgid ""
664
  "You installed and activated the Pro Addon. If you don’t want to use it "
665
  "anymore, you can deactivate using the button below."
666
  msgstr ""
667
 
668
- #: nextend-facebook-connect/admin/templates/pro.php:8
669
  msgid "Get Pro Addon to unlock more features"
670
  msgstr ""
671
 
672
- #: nextend-facebook-connect/admin/templates/pro.php:9
673
  #, php-format
674
  msgid ""
675
  "The features below are available in %s Pro Addon. Get it today and tweak the "
676
  "awesome settings."
677
  msgstr ""
678
 
679
- #: nextend-facebook-connect/admin/templates/pro.php:10
680
  msgid ""
681
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
682
  "you can purchase it using the button below."
683
  msgstr ""
684
 
685
- #: nextend-facebook-connect/admin/templates/pro.php:14
686
  msgid "Buy Pro Addon"
687
  msgstr ""
688
 
689
- #: nextend-facebook-connect/admin/templates/pro.php:16
690
  msgid "Authorize Pro Addon"
691
  msgstr ""
692
 
693
- #: nextend-facebook-connect/admin/templates/pro.php:25
694
  msgid "Pro Addon is not activated"
695
  msgstr ""
696
 
697
- #: nextend-facebook-connect/admin/templates/pro.php:26
698
- #: nextend-facebook-connect/admin/templates/pro.php:44
699
  msgid ""
700
  "To be able to use the Pro features, you need to install and activate the "
701
  "Nextend Social Login Pro Addon."
702
  msgstr ""
703
 
704
- #: nextend-facebook-connect/admin/templates/providers.php:8
705
  #, php-format
706
  msgid ""
707
  "%1$s detected that you have providers configured but none of them are "
@@ -709,603 +471,346 @@ msgid ""
709
  "one provider enabled!"
710
  msgstr ""
711
 
712
- #: nextend-facebook-connect/admin/templates/providers.php:38
713
  msgid "Not Available"
714
  msgstr ""
715
 
716
- #: nextend-facebook-connect/admin/templates/providers.php:41
717
  msgid "Not Configured"
718
  msgstr ""
719
 
720
- #: nextend-facebook-connect/admin/templates/providers.php:44
721
  msgid "Not Verified"
722
  msgstr ""
723
 
724
- #: nextend-facebook-connect/admin/templates/providers.php:50
725
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:89
726
- #: nextend-facebook-connect/admin/templates/settings/general.php:51
727
- #: nextend-facebook-connect/admin/templates/settings/general.php:216
728
- #: nextend-facebook-connect/admin/templates/settings/general.php:231
729
- #: nextend-facebook-connect/admin/templates/settings/general.php:249
730
- #: nextend-facebook-connect/admin/templates/settings/general.php:264
731
- #: nextend-facebook-connect/includes/provider-admin.php:221
732
- #: nextend-facebook-connect/providers/google/admin/settings.php:53
733
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
734
  msgid "Enabled"
735
  msgstr ""
736
 
737
- #: nextend-facebook-connect/admin/templates/providers.php:62
738
  msgid "Upgrade Now"
739
  msgstr ""
740
 
741
- #: nextend-facebook-connect/admin/templates/providers.php:77
742
- #: nextend-facebook-connect/includes/provider-admin.php:205
743
  msgid "Verify Settings"
744
  msgstr ""
745
 
746
- #: nextend-facebook-connect/admin/templates/providers.php:85
747
- #: nextend-facebook-connect/includes/provider-admin.php:250
748
  msgid "Enable"
749
  msgstr ""
750
 
751
- #: nextend-facebook-connect/admin/templates/providers.php:97
752
- #: nextend-facebook-connect/includes/provider-admin.php:258
753
  msgid "Disable"
754
  msgstr ""
755
 
756
- #: nextend-facebook-connect/admin/templates/providers.php:122
757
  msgid "Stay Updated"
758
  msgstr ""
759
 
760
- #: nextend-facebook-connect/admin/templates/providers.php:123
761
  msgid ""
762
  "Receive info on the latest plugin updates and social provider related "
763
  "changes."
764
  msgstr ""
765
 
766
- #: nextend-facebook-connect/admin/templates/providers.php:124
767
  msgid "Enter your email address"
768
  msgstr ""
769
 
770
- #: nextend-facebook-connect/admin/templates/providers.php:128
771
  msgid "Subscribe"
772
  msgstr ""
773
 
774
- #: nextend-facebook-connect/admin/templates/providers.php:144
775
  msgid "Saving..."
776
  msgstr ""
777
 
778
- #: nextend-facebook-connect/admin/templates/providers.php:145
779
  msgid "Saving failed"
780
  msgstr ""
781
 
782
- #: nextend-facebook-connect/admin/templates/providers.php:146
783
  msgid "Order Saved"
784
  msgstr ""
785
 
786
- #: nextend-facebook-connect/admin/templates/providers.php:215
787
  msgid "Successfully subscribed!"
788
  msgstr ""
789
 
790
- #: nextend-facebook-connect/admin/templates/providers.php:215
791
  msgid ""
792
  "We'll be bringing you all the latest news and updates about Social Login - "
793
  "right to your inbox."
794
  msgstr ""
795
 
796
- #: nextend-facebook-connect/admin/templates/providers.php:222
797
  msgid "The entered email address is invalid!"
798
  msgstr ""
799
 
800
- #: nextend-facebook-connect/admin/templates/review.php:14
801
  msgid "Rate your experience!"
802
  msgstr ""
803
 
804
- #: nextend-facebook-connect/admin/templates/review.php:15
805
  msgid "Hated it"
806
  msgstr ""
807
 
808
- #: nextend-facebook-connect/admin/templates/review.php:16
809
  msgid "Disliked it"
810
  msgstr ""
811
 
812
- #: nextend-facebook-connect/admin/templates/review.php:17
813
  msgid "It was ok"
814
  msgstr ""
815
 
816
- #: nextend-facebook-connect/admin/templates/review.php:18
817
  msgid "Liked it"
818
  msgstr ""
819
 
820
- #: nextend-facebook-connect/admin/templates/review.php:19
821
  msgid "Loved it"
822
  msgstr ""
823
 
824
- #: nextend-facebook-connect/admin/templates/review.php:31
825
  msgid "Please Leave a Review"
826
  msgstr ""
827
 
828
- #: nextend-facebook-connect/admin/templates/review.php:32
829
  msgid ""
830
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
831
  "please leave us a review. It will be a tremendous help for us!"
832
  msgstr ""
833
 
834
- #: nextend-facebook-connect/admin/templates/review.php:34
835
  msgid "Ok, you deserve it"
836
  msgstr ""
837
 
838
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
839
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:90
840
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:102
841
  msgid "Register form"
842
  msgstr ""
843
 
844
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
845
  msgid "No Connect button"
846
  msgstr ""
847
 
848
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
849
  msgid "Connect button before register"
850
  msgstr ""
851
 
852
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
853
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
854
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
855
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:27
856
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:99
857
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171
858
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
859
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
860
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171
861
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
862
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
863
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:111
864
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
865
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:169
866
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
867
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
868
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
869
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:248
870
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:299
871
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:304
872
  msgid "Action:"
873
  msgstr ""
874
 
875
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
876
  msgid "Connect button before account details"
877
  msgstr ""
878
 
879
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
880
  msgid "Connect button after register"
881
  msgstr ""
882
 
883
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44
884
  msgid "Register button style"
885
  msgstr ""
886
 
887
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56
888
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:149
889
- #: nextend-facebook-connect/admin/templates/settings/comment.php:45
890
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41
891
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:103
892
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:45
893
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:117
894
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
895
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:117
896
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
897
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:114
898
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
899
  msgid "Fullwidth"
900
  msgstr ""
901
 
902
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:62
903
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155
904
- #: nextend-facebook-connect/admin/templates/settings/comment.php:51
905
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:47
906
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:109
907
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:51
908
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:123
909
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:51
910
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:123
911
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:63
912
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:120
913
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:36
914
- #: nextend-facebook-connect/widget.php:47
915
  msgid "Icon"
916
  msgstr ""
917
 
918
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:70
919
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
920
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
921
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
922
  msgid "Register layout"
923
  msgstr ""
924
 
925
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:82
926
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:174
927
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60
928
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122
929
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:64
930
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:136
931
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
932
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
933
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
934
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
935
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
936
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
937
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:211
938
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:261
939
  msgid "Below"
940
  msgstr ""
941
 
942
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88
943
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:180
944
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66
945
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128
946
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:70
947
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:142
948
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
949
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
950
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
951
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
952
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
953
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
954
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
955
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:267
956
  msgid "Below with separator"
957
  msgstr ""
958
 
959
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:94
960
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:186
961
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78
962
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:134
963
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
964
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:148
965
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
966
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:148
967
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
968
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:145
969
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
970
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
971
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
972
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:273
973
  msgid "Above"
974
  msgstr ""
975
 
976
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:100
977
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:192
978
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:84
979
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140
980
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:82
981
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:154
982
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:82
983
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:154
984
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:94
985
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:151
986
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
987
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:152
988
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:229
989
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:279
990
  msgid "Above with separator"
991
  msgstr ""
992
 
993
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:108
994
  msgid "Sidebar Login form"
995
  msgstr ""
996
 
997
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:113
998
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:129
999
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
1000
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
1001
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
1002
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:26
1003
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:39
1004
  msgid "Hide login buttons"
1005
  msgstr ""
1006
 
1007
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:116
1008
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:132
1009
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
1010
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
1011
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
1012
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:23
1013
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:36
1014
- #: nextend-facebook-connect/widget.php:76
1015
  msgid "Show login buttons"
1016
  msgstr ""
1017
 
1018
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:117
1019
  msgid ""
1020
  "Some themes that use BuddyPress, display the social buttons twice in the "
1021
  "same login form. This option can disable the one for: "
1022
  "<b>bp_sidebar_login_form action</b>. "
1023
  msgstr ""
1024
 
1025
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124
1026
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1027
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1028
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
1029
  msgid "Login form"
1030
  msgstr ""
1031
 
1032
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:137
1033
  msgid "Login button style"
1034
  msgstr ""
1035
 
1036
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162
1037
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54
1038
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:58
1039
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1040
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1041
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
1042
  msgid "Login layout"
1043
  msgstr ""
1044
 
1045
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:200
1046
- #: nextend-facebook-connect/admin/templates/settings/comment.php:59
1047
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:53
1048
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:178
1049
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178
1050
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:159
1051
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:311
1052
  msgid "Button alignment"
1053
  msgstr ""
1054
 
1055
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:205
1056
- #: nextend-facebook-connect/admin/templates/settings/comment.php:64
1057
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:152
1058
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:58
1059
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:183
1060
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:183
1061
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:164
1062
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:316
1063
- #: nextend-facebook-connect/widget.php:57
1064
  msgid "Left"
1065
  msgstr ""
1066
 
1067
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:208
1068
- #: nextend-facebook-connect/admin/templates/settings/comment.php:67
1069
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155
1070
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:61
1071
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:186
1072
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
1073
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
1074
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:319
1075
- #: nextend-facebook-connect/widget.php:62
1076
  msgid "Center"
1077
  msgstr ""
1078
 
1079
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:212
1080
- #: nextend-facebook-connect/admin/templates/settings/comment.php:71
1081
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:159
1082
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:65
1083
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:190
1084
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:190
1085
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:171
1086
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1087
- #: nextend-facebook-connect/widget.php:67
1088
  msgid "Right"
1089
  msgstr ""
1090
 
1091
- #: nextend-facebook-connect/admin/templates/settings/comment.php:18
1092
  msgid "Login button"
1093
  msgstr ""
1094
 
1095
- #: nextend-facebook-connect/admin/templates/settings/comment.php:23
1096
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
1097
  msgid "Show"
1098
  msgstr ""
1099
 
1100
- #: nextend-facebook-connect/admin/templates/settings/comment.php:26
1101
  msgid "Hide"
1102
  msgstr ""
1103
 
1104
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1105
  #, php-format
1106
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
1107
  msgstr ""
1108
 
1109
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1110
  msgid "Discussion"
1111
  msgstr ""
1112
 
1113
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1114
  msgid "Users must be registered and logged in to comment"
1115
  msgstr ""
1116
 
1117
- #: nextend-facebook-connect/admin/templates/settings/comment.php:33
1118
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
1119
  msgid "Button style"
1120
  msgstr ""
1121
 
1122
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1123
  msgid "Target window"
1124
  msgstr ""
1125
 
1126
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34
1127
  msgid "Prefer popup"
1128
  msgstr ""
1129
 
1130
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37
1131
  msgid "Prefer new tab"
1132
  msgstr ""
1133
 
1134
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40
1135
  msgid "Prefer same window"
1136
  msgstr ""
1137
 
1138
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46
1139
  msgid "Registration notification sent to"
1140
  msgstr ""
1141
 
1142
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51
1143
- #: nextend-facebook-connect/admin/templates/settings/general.php:243
1144
  msgid "WordPress default"
1145
  msgstr ""
1146
 
1147
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
1148
  msgid "Nobody"
1149
  msgstr ""
1150
 
1151
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60
1152
  msgid "Admin"
1153
  msgstr ""
1154
 
1155
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63
1156
  msgid "User and Admin"
1157
  msgstr ""
1158
 
1159
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69
1160
  msgid "Unlink"
1161
  msgstr ""
1162
 
1163
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75
1164
  msgid "Allow Social account unlink"
1165
  msgstr ""
1166
 
1167
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
1168
  msgid "Show linked providers"
1169
  msgstr ""
1170
 
1171
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1172
  #, php-format
1173
  msgid "Providers linked to the account will appear in the %1$s."
1174
  msgstr ""
1175
 
1176
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1177
  msgid "Users table"
1178
  msgstr ""
1179
 
1180
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:96
1181
  msgid "Disable Admin bar for roles"
1182
  msgstr ""
1183
 
1184
- #: nextend-facebook-connect/admin/templates/settings/general.php:43
1185
  msgid "Debug mode"
1186
  msgstr ""
1187
 
1188
- #: nextend-facebook-connect/admin/templates/settings/general.php:57
1189
  msgid "Page for register flow"
1190
  msgstr ""
1191
 
1192
- #: nextend-facebook-connect/admin/templates/settings/general.php:67
1193
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
1194
  msgid "None"
1195
  msgstr ""
1196
 
1197
- #: nextend-facebook-connect/admin/templates/settings/general.php:75
1198
  msgid ""
1199
  "This setting is used when you request additional data from the users (such "
1200
  "as email address) and to display the Terms and conditions."
1201
  msgstr ""
1202
 
1203
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1204
  #, php-format
1205
  msgid ""
1206
  "%2$s First create a new page and insert the following shortcode: %1$s then "
1207
  "select this page above"
1208
  msgstr ""
1209
 
1210
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1211
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1212
  msgid "Usage:"
1213
  msgstr ""
1214
 
1215
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1216
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1217
  #, php-format
1218
  msgid ""
1219
  "%1$s You won't be able to reach the selected page unless a social login/"
1220
  "registration happens."
1221
  msgstr ""
1222
 
1223
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1224
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1225
  msgid "Important:"
1226
  msgstr ""
1227
 
1228
- #: nextend-facebook-connect/admin/templates/settings/general.php:81
1229
  msgid "OAuth redirect uri proxy page"
1230
  msgstr ""
1231
 
1232
- #: nextend-facebook-connect/admin/templates/settings/general.php:101
1233
  msgid ""
1234
  "You can use this setting when wp-login.php page is not available to handle "
1235
  "the OAuth flow."
1236
  msgstr ""
1237
 
1238
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1239
  #, php-format
1240
  msgid "%1$s First create a new page then select this page above."
1241
  msgstr ""
1242
 
1243
- #: nextend-facebook-connect/admin/templates/settings/general.php:109
1244
  msgid "Prevent external redirect overrides"
1245
  msgstr ""
1246
 
1247
- #: nextend-facebook-connect/admin/templates/settings/general.php:115
1248
  msgid "Disable external redirects"
1249
  msgstr ""
1250
 
1251
- #: nextend-facebook-connect/admin/templates/settings/general.php:122
1252
  msgid "Default redirect url"
1253
  msgstr ""
1254
 
1255
- #: nextend-facebook-connect/admin/templates/settings/general.php:135
1256
- #: nextend-facebook-connect/admin/templates/settings/general.php:173
1257
  msgid "for Login"
1258
  msgstr ""
1259
 
1260
- #: nextend-facebook-connect/admin/templates/settings/general.php:150
1261
- #: nextend-facebook-connect/admin/templates/settings/general.php:188
1262
  msgid "for Register"
1263
  msgstr ""
1264
 
1265
- #: nextend-facebook-connect/admin/templates/settings/general.php:160
1266
  msgid "Fixed redirect url"
1267
  msgstr ""
1268
 
1269
- #: nextend-facebook-connect/admin/templates/settings/general.php:197
1270
  msgid "Blacklisted redirects"
1271
  msgstr ""
1272
 
1273
- #: nextend-facebook-connect/admin/templates/settings/general.php:203
1274
  msgid "If you want to blacklist redirect url params. One pattern per line."
1275
  msgstr ""
1276
 
1277
- #: nextend-facebook-connect/admin/templates/settings/general.php:208
1278
  msgid "Support login restrictions"
1279
  msgstr ""
1280
 
1281
- #: nextend-facebook-connect/admin/templates/settings/general.php:218
1282
  #, php-format
1283
  msgid "Please visit to our %1$s to check what plugins are supported!"
1284
  msgstr ""
1285
 
1286
- #: nextend-facebook-connect/admin/templates/settings/general.php:223
1287
  msgid "Display avatars in \"All media items\""
1288
  msgstr ""
1289
 
1290
- #: nextend-facebook-connect/admin/templates/settings/general.php:233
1291
  msgid ""
1292
  "Enabling this option can speed up loading images in Media Library - Grid "
1293
  "view!"
1294
  msgstr ""
1295
 
1296
- #: nextend-facebook-connect/admin/templates/settings/general.php:238
1297
  msgid "Membership"
1298
  msgstr ""
1299
 
1300
- #: nextend-facebook-connect/admin/templates/settings/general.php:251
1301
  msgid "Allow registration with Social login."
1302
  msgstr ""
1303
 
1304
- #: nextend-facebook-connect/admin/templates/settings/general.php:256
1305
  msgid "Custom label for register buttons"
1306
  msgstr ""
1307
 
1308
- #: nextend-facebook-connect/admin/templates/settings/general.php:266
1309
  #, php-format
1310
  msgid ""
1311
  "Set a custom label for the social buttons in registration forms and for "
@@ -1313,265 +818,168 @@ msgid ""
1313
  "can be modified at the Buttons tab of each provider."
1314
  msgstr ""
1315
 
1316
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1317
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1318
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1319
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1320
- msgid "Login form button style"
1321
- msgstr ""
1322
-
1323
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72
1324
  msgid "Below and floating"
1325
  msgstr ""
1326
 
1327
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91
1328
  msgid "Embedded Login form button style"
1329
  msgstr ""
1330
 
1331
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116
1332
  msgid "Embedded Login layout"
1333
  msgstr ""
1334
 
1335
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147
1336
  msgid "Embedded login form button alignment"
1337
  msgstr ""
1338
 
1339
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1340
- #: nextend-facebook-connect/includes/userData.php:152
1341
  msgid "Registration Form"
1342
  msgstr ""
1343
 
1344
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
1345
  msgid "Embedded login form"
1346
  msgstr ""
1347
 
1348
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:23
1349
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1350
- msgid "No Connect button in Login form"
1351
- msgstr ""
1352
-
1353
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:26
1354
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:98
1355
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1356
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:98
1357
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
1358
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:57
1359
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
1360
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
1361
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
1362
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:173
1363
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:179
1364
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:185
1365
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:247
1366
- msgid "Connect button on"
1367
- msgstr ""
1368
-
1369
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
1370
  msgid "Sign Up form"
1371
  msgstr ""
1372
 
1373
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:95
1374
  msgid "No Connect button in Sign Up form"
1375
  msgstr ""
1376
 
1377
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:105
1378
  msgid "Sign Up form button style"
1379
  msgstr ""
1380
 
1381
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:130
1382
  msgid "Sign Up layout"
1383
  msgstr ""
1384
 
1385
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:162
1386
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:162
1387
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:290
1388
  msgid "Account details"
1389
  msgstr ""
1390
 
1391
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:167
1392
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:167
1393
  msgid "No link buttons"
1394
  msgstr ""
1395
 
1396
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:170
1397
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:170
1398
  msgid "Link buttons after account details"
1399
  msgstr ""
1400
 
1401
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1402
- #: nextend-facebook-connect/nextend-social-login.php:152
1403
  msgid ""
1404
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1405
  "\"_blank\">Privacy Policy</a>"
1406
  msgstr ""
1407
 
1408
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1409
  msgid "Store"
1410
  msgstr ""
1411
 
1412
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1413
  msgid "First and last name"
1414
  msgstr ""
1415
 
1416
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1417
  msgid "When not enabled, username will be randomly generated."
1418
  msgstr ""
1419
 
1420
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1421
- #: nextend-social-login-pro/class-provider-extension.php:322
1422
  msgid "Email"
1423
  msgstr ""
1424
 
1425
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1426
  msgid "When not enabled, email will be empty."
1427
  msgstr ""
1428
 
1429
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1430
- #: nextend-facebook-connect/includes/avatar.php:49
1431
  msgid "Avatar"
1432
  msgstr ""
1433
 
1434
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1435
- #: nextend-facebook-connect/includes/provider.php:1108
1436
  msgid "Access token"
1437
  msgstr ""
1438
 
1439
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:95
1440
- msgid "No Connect button in Register form"
1441
- msgstr ""
1442
-
1443
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
1444
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
1445
- msgid "Register form button style"
1446
- msgstr ""
1447
-
1448
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1449
  msgid "Register Form"
1450
  msgstr ""
1451
 
1452
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:49
1453
  msgid "No Connect button in login form"
1454
  msgstr ""
1455
 
1456
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:107
1457
  msgid "No Connect button in register form"
1458
  msgstr ""
1459
 
1460
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:160
1461
  msgid "Billing form"
1462
  msgstr ""
1463
 
1464
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:165
1465
  msgid "No Connect button in billing form"
1466
  msgstr ""
1467
 
1468
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:193
1469
  msgid "Billing layout"
1470
  msgstr ""
1471
 
1472
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:205
1473
  msgid "Default with separator"
1474
  msgstr ""
1475
 
1476
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:239
1477
  msgid "Checkout for WooCommerce"
1478
  msgstr ""
1479
 
1480
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:244
1481
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1482
  msgstr ""
1483
 
1484
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:255
1485
  msgid "Checkout for WooCommerce layout"
1486
  msgstr ""
1487
 
1488
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:295
1489
  msgid "No Connect buttons in account details form"
1490
  msgstr ""
1491
 
1492
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:298
1493
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:303
1494
  msgid "Link buttons on"
1495
  msgstr ""
1496
 
1497
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:329
1498
  msgid "Email template for registration"
1499
  msgstr ""
1500
 
1501
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:334
1502
  msgid "WordPress default notification"
1503
  msgstr ""
1504
 
1505
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:337
1506
  msgid "WooCommerce registration notification"
1507
  msgstr ""
1508
 
1509
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:339
1510
  #, php-format
1511
  msgid ""
1512
  "Defines whether the registration with %1$s will send the same registration "
1513
  "notification that %2$s does, instead of the %3$s default one."
1514
  msgstr ""
1515
 
1516
- #: nextend-facebook-connect/admin/templates/test-connection.php:42
1517
  #, php-format
1518
  msgid "Network connection successful: %1$s"
1519
  msgstr ""
1520
 
1521
- #: nextend-facebook-connect/admin/templates/test-connection.php:49
1522
  #, php-format
1523
  msgid "Network connection failed: %1$s"
1524
  msgstr ""
1525
 
1526
- #: nextend-facebook-connect/admin/templates/test-connection.php:52
1527
  msgid ""
1528
  "Please contact with your hosting provider to resolve the network issue "
1529
  "between your server and the provider."
1530
  msgstr ""
1531
 
1532
- #: nextend-facebook-connect/includes/avatar.php:50
1533
  msgid "Manage Avatar"
1534
  msgstr ""
1535
 
1536
- #: nextend-facebook-connect/includes/avatar.php:51
1537
  #, php-format
1538
  msgid "Avatar <span class=\"count\">(%s)</span>"
1539
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1540
  msgstr[0] ""
1541
  msgstr[1] ""
1542
 
1543
- #: nextend-facebook-connect/includes/avatar.php:399
1544
  msgid "Invalid URL Provided."
1545
  msgstr ""
1546
 
1547
- #: nextend-facebook-connect/includes/avatar.php:404
1548
  msgid "Could not create Temporary file."
1549
  msgstr ""
1550
 
1551
- #: nextend-facebook-connect/includes/compat-wp-login.php:63
1552
  #, php-format
1553
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1554
  msgstr ""
1555
 
1556
- #: nextend-facebook-connect/includes/compat-wp-login.php:129
1557
  msgid "https://wordpress.org/"
1558
  msgstr ""
1559
 
1560
- #: nextend-facebook-connect/includes/compat-wp-login.php:130
1561
  msgid "Powered by WordPress"
1562
  msgstr ""
1563
 
1564
- #: nextend-facebook-connect/includes/compat-wp-login.php:284
1565
  #, php-format
1566
  msgctxt "site"
1567
  msgid "&larr; Back to %s"
1568
  msgstr ""
1569
 
1570
- #: nextend-facebook-connect/includes/provider-admin.php:199
1571
  msgid "Your configuration needs to be verified"
1572
  msgstr ""
1573
 
1574
- #: nextend-facebook-connect/includes/provider-admin.php:200
1575
  msgid ""
1576
  "Before you can start letting your users register with your app it needs to "
1577
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1580,104 +988,79 @@ msgid ""
1580
  "are fine."
1581
  msgstr ""
1582
 
1583
- #: nextend-facebook-connect/includes/provider-admin.php:206
1584
  msgid "Please save your changes to verify settings."
1585
  msgstr ""
1586
 
1587
- #: nextend-facebook-connect/includes/provider-admin.php:214
1588
  msgid "Works Fine"
1589
  msgstr ""
1590
 
1591
- #: nextend-facebook-connect/includes/provider-admin.php:228
1592
  #, php-format
1593
  msgid ""
1594
  "This provider is currently disabled, which means that users can’t register "
1595
  "or login via their %s account."
1596
  msgstr ""
1597
 
1598
- #: nextend-facebook-connect/includes/provider-admin.php:231
1599
  #, php-format
1600
  msgid ""
1601
  "This provider works fine, but you can test it again. If you don’t want to "
1602
  "let users register or login with %s anymore you can disable it."
1603
  msgstr ""
1604
 
1605
- #: nextend-facebook-connect/includes/provider-admin.php:234
1606
  #, php-format
1607
  msgid ""
1608
  "This provider is currently enabled, which means that users can register or "
1609
  "login via their %s account."
1610
  msgstr ""
1611
 
1612
- #: nextend-facebook-connect/includes/provider-admin.php:242
1613
  msgid "Verify Settings Again"
1614
  msgstr ""
1615
 
1616
- #: nextend-facebook-connect/includes/provider-admin.php:243
1617
  msgid "Please save your changes before verifying settings."
1618
  msgstr ""
1619
 
1620
- #: nextend-facebook-connect/includes/provider.php:364
1621
- #: nextend-facebook-connect/includes/provider.php:725
1622
- #: nextend-facebook-connect/includes/provider.php:733
1623
  msgid "Authentication successful"
1624
  msgstr ""
1625
 
1626
- #: nextend-facebook-connect/includes/provider.php:662
1627
- #: nextend-facebook-connect/includes/user.php:170
1628
- #: nextend-facebook-connect/includes/user.php:606
1629
  msgid "Authentication error"
1630
  msgstr ""
1631
 
1632
- #: nextend-facebook-connect/includes/provider.php:677
1633
  msgid "Unlink successful."
1634
  msgstr ""
1635
 
1636
- #: nextend-facebook-connect/includes/provider.php:679
1637
  msgid "Unlink is not allowed!"
1638
  msgstr ""
1639
 
1640
- #: nextend-facebook-connect/includes/provider.php:894
1641
- #: nextend-facebook-connect/includes/provider.php:901
1642
  msgid "The test was successful"
1643
  msgstr ""
1644
 
1645
- #: nextend-facebook-connect/includes/provider.php:947
1646
  msgid "Authentication failed"
1647
  msgstr ""
1648
 
1649
- #: nextend-facebook-connect/includes/provider.php:1100
1650
  msgid "Identifier"
1651
  msgstr ""
1652
 
1653
- #: nextend-facebook-connect/includes/provider.php:1116
1654
  msgid "Profile Picture"
1655
  msgstr ""
1656
 
1657
- #: nextend-facebook-connect/includes/user.php:76
1658
  #, php-format
1659
  msgid ""
1660
  "Your %1$s account is successfully linked with your account. Now you can sign "
1661
  "in with %2$s easily."
1662
  msgstr ""
1663
 
1664
- #: nextend-facebook-connect/includes/user.php:79
1665
  #, php-format
1666
  msgid ""
1667
  "You have already linked a(n) %s account. Please unlink the current and then "
1668
  "you can link another %s account."
1669
  msgstr ""
1670
 
1671
- #: nextend-facebook-connect/includes/user.php:84
1672
  #, php-format
1673
  msgid "This %s account is already linked to another user."
1674
  msgstr ""
1675
 
1676
- #: nextend-facebook-connect/includes/user.php:130
1677
  msgid "User registration is currently not allowed."
1678
  msgstr ""
1679
 
1680
- #: nextend-facebook-connect/includes/user.php:681
1681
  #, php-format
1682
  msgid ""
1683
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
@@ -1685,138 +1068,82 @@ msgid ""
1685
  "linked %1$s account or log in with your password!"
1686
  msgstr ""
1687
 
1688
- #: nextend-facebook-connect/includes/userData.php:152
1689
  msgid "Register For This Site"
1690
  msgstr ""
1691
 
1692
- #: nextend-facebook-connect/includes/userData.php:204
1693
  msgctxt "Register form submit button label"
1694
  msgid "Register"
1695
  msgstr ""
1696
 
1697
- #: nextend-facebook-connect/nextend-facebook-connect.php:37
1698
  #, php-format
1699
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1700
  msgstr ""
1701
 
1702
- #: nextend-facebook-connect/nextend-facebook-connect.php:44
1703
  #, php-format
1704
  msgid ""
1705
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1706
  "version, the plugin is currently NOT ACTIVE."
1707
  msgstr ""
1708
 
1709
- #: nextend-facebook-connect/nextend-social-login.php:56
1710
- #: nextend-facebook-connect/nextend-social-login.php:63
1711
  #, php-format
1712
  msgid "Please update %1$s to version %2$s or newer."
1713
  msgstr ""
1714
 
1715
- #: nextend-facebook-connect/nextend-social-login.php:56
1716
- #: nextend-facebook-connect/nextend-social-login.php:63
1717
  msgid "Update now!"
1718
  msgstr ""
1719
 
1720
- #: nextend-facebook-connect/nextend-social-login.php:846
1721
- #: nextend-facebook-connect/nextend-social-login.php:1225
1722
  msgid "Social Login"
1723
  msgstr ""
1724
 
1725
- #: nextend-facebook-connect/nextend-social-login.php:1206
1726
  msgid "Social Accounts"
1727
  msgstr ""
1728
 
1729
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:2
1730
- #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1731
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:2
1732
  msgid "Button skin"
1733
  msgstr ""
1734
 
1735
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:8
1736
- #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1737
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:14
1738
  msgid "Dark"
1739
  msgstr ""
1740
 
1741
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:14
1742
- #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1743
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:8
1744
  msgid "Light"
1745
  msgstr ""
1746
 
1747
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:20
1748
  msgid "Black"
1749
  msgstr ""
1750
 
1751
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:26
1752
  msgid "White"
1753
  msgstr ""
1754
 
1755
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1756
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1757
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1758
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1759
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8
1760
  #, php-format
1761
  msgid "Navigate to <b>%s</b>"
1762
  msgstr ""
1763
 
1764
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1765
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1766
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1767
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1768
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1769
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:9
1770
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1771
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18
1772
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9
1773
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9
1774
  #, php-format
1775
  msgid "Log in with your %s credentials if you are not logged in"
1776
  msgstr ""
1777
 
1778
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
1779
  #, php-format
1780
  msgid "Click on the App with App ID: <b>%s</b>"
1781
  msgstr ""
1782
 
1783
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
1784
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1785
  msgstr ""
1786
 
1787
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:14
1788
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1789
  msgid ""
1790
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1791
  msgstr ""
1792
 
1793
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:22
1794
  msgid "Click on \"<b>Save Changes</b>\""
1795
  msgstr ""
1796
 
1797
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11
1798
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:13
1799
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11
1800
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22
1801
  #, php-format
1802
  msgid ""
1803
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1804
  "order to allow login with %1$s."
1805
  msgstr ""
1806
 
1807
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
1808
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:15
1809
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13
1810
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24
1811
  msgid "How to get SSL for my WordPress site?"
1812
  msgstr ""
1813
 
1814
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1815
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1816
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1817
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:10
1818
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1819
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10
1820
  #, php-format
1821
  msgid ""
1822
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -1826,168 +1153,100 @@ msgid ""
1826
  "%1$s App."
1827
  msgstr ""
1828
 
1829
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1830
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
1831
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
1832
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1833
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:34
1834
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:14
1835
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:14
1836
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:14
1837
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
1838
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:14
1839
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:14
1840
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:14
1841
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:14
1842
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:15
1843
  #, php-format
1844
  msgctxt "App creation"
1845
  msgid "Create %s"
1846
  msgstr ""
1847
 
1848
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1849
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1850
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1851
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1852
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19
1853
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:39
1854
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
1855
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
1856
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:8
1857
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:17
1858
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1859
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
1860
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:8
1861
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:17
1862
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
1863
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
1864
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1865
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
1866
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
1867
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
1868
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18
1869
  #, php-format
1870
  msgid "Navigate to %s"
1871
  msgstr ""
1872
 
1873
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
1874
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
1875
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
1876
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
1877
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:40
1878
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
1879
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
1880
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:18
1881
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:9
1882
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:18
1883
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
1884
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
1885
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
1886
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
1887
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19
1888
  #, php-format
1889
  msgid "Log in with your %s credentials if you are not logged in."
1890
  msgstr ""
1891
 
1892
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
1893
  msgid ""
1894
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1895
  "\"<b>Consumer</b>\" App type!"
1896
  msgstr ""
1897
 
1898
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
1899
  msgid ""
1900
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1901
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1902
  "finally verify your account."
1903
  msgstr ""
1904
 
1905
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
1906
  #, php-format
1907
  msgid ""
1908
  "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1909
  "specified \"App Display Name\" will appear on your %s!"
1910
  msgstr ""
1911
 
1912
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
1913
  msgid ""
1914
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1915
  "if you have any."
1916
  msgstr ""
1917
 
1918
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
1919
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
1920
  msgstr ""
1921
 
1922
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
1923
  #, php-format
1924
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
1925
  msgstr ""
1926
 
1927
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
1928
  #, php-format
1929
  msgid ""
1930
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1931
  "field: <b>%s</b>"
1932
  msgstr ""
1933
 
1934
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
1935
  msgid "Press “<b>Save</b>”."
1936
  msgstr ""
1937
 
1938
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
1939
  #, php-format
1940
  msgid ""
1941
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1942
  "%2$s</b> - <b>%3$s</b>”"
1943
  msgstr ""
1944
 
1945
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:47
1946
  msgid "Click on “<b>Save Changes</b>”."
1947
  msgstr ""
1948
 
1949
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:48
1950
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:65
1951
  #, php-format
1952
  msgid ""
1953
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1954
  "%2$s</b>”."
1955
  msgstr ""
1956
 
1957
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:49
1958
  #, php-format
1959
  msgid ""
1960
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1961
  "b>"
1962
  msgstr ""
1963
 
1964
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:50
1965
  msgid ""
1966
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1967
  "available and easily accessible privacy policy that explains what data you "
1968
  "are collecting and how you will use that data."
1969
  msgstr ""
1970
 
1971
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
1972
  msgid ""
1973
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1974
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1975
  "instructions on how users can delete their accounts on your site."
1976
  msgstr ""
1977
 
1978
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
1979
  msgid ""
1980
  "To comply with GDPR, you should already offer possibility to delete accounts "
1981
  "on your site, either by the user or by the admin:"
1982
  msgstr ""
1983
 
1984
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
1985
  msgid ""
1986
  "<u>If each user has an option to delete the account</u>: the URL should "
1987
  "point to a guide showing the way users can delete their accounts."
1988
  msgstr ""
1989
 
1990
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:57
1991
  msgid ""
1992
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
1993
  "section - usually in the Privacy Policy - with the contact details, where "
@@ -1995,21 +1254,18 @@ msgid ""
1995
  "point to this section of the document."
1996
  msgstr ""
1997
 
1998
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:62
1999
  msgid ""
2000
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2001
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2002
  "Changes</b>\"."
2003
  msgstr ""
2004
 
2005
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2006
  msgid ""
2007
  "Your application is currently private, which means that only you can log in "
2008
  "with it. In the top bar switch the \"<b>App Mode</b>\" from "
2009
  "\"<b>Development</b>\" to \"<b>Live</b>\"."
2010
  msgstr ""
2011
 
2012
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:64
2013
  #, php-format
2014
  msgid ""
2015
  "By default, your application only has Standard access for the permissions, "
@@ -2019,7 +1275,6 @@ msgid ""
2019
  "should click on the <strong>%6$s</strong> buttons next to them. "
2020
  msgstr ""
2021
 
2022
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:66
2023
  #, php-format
2024
  msgid ""
2025
  "At the top of the page you can find your \"<b>%1$s</b>\" and you can see "
@@ -2027,7 +1282,6 @@ msgid ""
2027
  "needed in plugin’s settings."
2028
  msgstr ""
2029
 
2030
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:69
2031
  #, php-format
2032
  msgid ""
2033
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
@@ -2038,11 +1292,9 @@ msgid ""
2038
  "the Facebook App, then please check our %2$sdocumentation%3$s."
2039
  msgstr ""
2040
 
2041
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:73
2042
  msgid "Maintaining the Facebook App:"
2043
  msgstr ""
2044
 
2045
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:74
2046
  #, php-format
2047
  msgid ""
2048
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
@@ -2053,172 +1305,76 @@ msgid ""
2053
  "that we need."
2054
  msgstr ""
2055
 
2056
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:78
2057
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:53
2058
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:46
2059
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:50
2060
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:134
2061
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:41
2062
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:40
2063
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:46
2064
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:43
2065
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:45
2066
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:46
2067
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:41
2068
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:41
2069
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:40
2070
  #, php-format
2071
  msgid "I am done setting up my %s"
2072
  msgstr ""
2073
 
2074
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:35
2075
- #: nextend-social-login-pro/providers/vk/admin/settings.php:27
2076
  msgid "App ID"
2077
  msgstr ""
2078
 
2079
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:36
2080
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
2081
- #: nextend-facebook-connect/providers/google/admin/settings.php:28
2082
- #: nextend-facebook-connect/providers/google/admin/settings.php:41
2083
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
2084
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
2085
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
2086
- #: nextend-social-login-pro/providers/apple/admin/settings.php:79
2087
- #: nextend-social-login-pro/providers/apple/admin/settings.php:90
2088
- #: nextend-social-login-pro/providers/apple/admin/settings.php:99
2089
- #: nextend-social-login-pro/providers/apple/admin/settings.php:107
2090
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
2091
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
2092
- #: nextend-social-login-pro/providers/github/admin/settings.php:28
2093
- #: nextend-social-login-pro/providers/github/admin/settings.php:40
2094
- #: nextend-social-login-pro/providers/line/admin/settings.php:27
2095
- #: nextend-social-login-pro/providers/line/admin/settings.php:39
2096
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
2097
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
2098
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:27
2099
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:39
2100
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
2101
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
2102
- #: nextend-social-login-pro/providers/vk/admin/settings.php:28
2103
- #: nextend-social-login-pro/providers/vk/admin/settings.php:40
2104
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
2105
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
2106
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27
2107
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39
2108
  msgid "Required"
2109
  msgstr ""
2110
 
2111
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:41
2112
- #: nextend-facebook-connect/providers/google/admin/settings.php:35
2113
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
2114
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
2115
- #: nextend-social-login-pro/providers/apple/admin/settings.php:34
2116
- #: nextend-social-login-pro/providers/apple/admin/settings.php:85
2117
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
2118
- #: nextend-social-login-pro/providers/github/admin/settings.php:34
2119
- #: nextend-social-login-pro/providers/line/admin/settings.php:33
2120
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
2121
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:33
2122
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
2123
- #: nextend-social-login-pro/providers/vk/admin/settings.php:34
2124
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
2125
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33
2126
  #, php-format
2127
  msgid ""
2128
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
2129
  "\">Getting Started</a>"
2130
  msgstr ""
2131
 
2132
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:47
2133
  msgid "App Secret"
2134
  msgstr ""
2135
 
2136
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2137
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:49
2138
  #, php-format
2139
  msgid ""
2140
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2141
  "longer be able to login with %1$s."
2142
  msgstr ""
2143
 
2144
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2145
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:51
2146
  msgid "Find out why?"
2147
  msgstr ""
2148
 
2149
- #: nextend-facebook-connect/providers/facebook/facebook.php:90
2150
  msgid "Continue with <b>Facebook</b>"
2151
  msgstr ""
2152
 
2153
- #: nextend-facebook-connect/providers/facebook/facebook.php:91
2154
  msgid "Sign up with <b>Facebook</b>"
2155
  msgstr ""
2156
 
2157
- #: nextend-facebook-connect/providers/facebook/facebook.php:92
2158
  msgid "Link account with <b>Facebook</b>"
2159
  msgstr ""
2160
 
2161
- #: nextend-facebook-connect/providers/facebook/facebook.php:93
2162
  msgid "Unlink account from <b>Facebook</b>"
2163
  msgstr ""
2164
 
2165
- #: nextend-facebook-connect/providers/facebook/facebook.php:193
2166
- #: nextend-facebook-connect/providers/google/google.php:168
2167
- #: nextend-facebook-connect/providers/twitter/twitter.php:97
2168
- #: nextend-social-login-pro/providers/amazon/amazon.php:67
2169
- #: nextend-social-login-pro/providers/apple/apple.php:115
2170
- #: nextend-social-login-pro/providers/apple/apple.php:122
2171
- #: nextend-social-login-pro/providers/disqus/disqus.php:114
2172
- #: nextend-social-login-pro/providers/github/github.php:152
2173
- #: nextend-social-login-pro/providers/line/line.php:63
2174
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2175
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:65
2176
- #: nextend-social-login-pro/providers/paypal/paypal.php:92
2177
- #: nextend-social-login-pro/providers/vk/vk.php:63
2178
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2179
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2180
  #, php-format
2181
  msgid ""
2182
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2183
  msgstr ""
2184
 
2185
- #: nextend-facebook-connect/providers/facebook/facebook.php:314
2186
- #: nextend-social-login-pro/providers/paypal/paypal.php:172
2187
  #, php-format
2188
  msgid "Required scope: %1$s"
2189
  msgstr ""
2190
 
2191
- #: nextend-facebook-connect/providers/google/admin/buttons.php:20
2192
  msgid "Uniform - Legacy"
2193
  msgstr ""
2194
 
2195
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
2196
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
2197
  msgstr ""
2198
 
2199
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
2200
  #, php-format
2201
  msgid ""
2202
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
2203
  "%s</b>"
2204
  msgstr ""
2205
 
2206
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:14
2207
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2208
  #, php-format
2209
  msgid ""
2210
  "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
2211
  "following URL:"
2212
  msgstr ""
2213
 
2214
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:22
2215
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:23
2216
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:23
2217
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:23
2218
  msgid "Click on \"<b>Save</b>\""
2219
  msgstr ""
2220
 
2221
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2222
  #, php-format
2223
  msgid ""
2224
  "If you don't have a project yet, you'll need to create one. You can do this "
@@ -2227,24 +1383,20 @@ msgid ""
2227
  "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
2228
  msgstr ""
2229
 
2230
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2231
  #, php-format
2232
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2233
  msgstr ""
2234
 
2235
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2236
  msgid ""
2237
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2238
  "have already had a Project, then make sure you select the created project in "
2239
  "the top bar! )"
2240
  msgstr ""
2241
 
2242
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2243
  #, php-format
2244
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
2245
  msgstr ""
2246
 
2247
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2248
  #, php-format
2249
  msgid ""
2250
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
@@ -2252,7 +1404,6 @@ msgid ""
2252
  "account, then pick the \"%4$s\" option!"
2253
  msgstr ""
2254
 
2255
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2256
  #, php-format
2257
  msgid ""
2258
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
@@ -2260,69 +1411,58 @@ msgid ""
2260
  "%1$s!"
2261
  msgstr ""
2262
 
2263
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2264
  #, php-format
2265
  msgid ""
2266
  "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2267
  "the name of the app asking for consent."
2268
  msgstr ""
2269
 
2270
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2271
  #, php-format
2272
  msgid ""
2273
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2274
  "contact you with questions about their consent."
2275
  msgstr ""
2276
 
2277
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2278
  #, php-format
2279
  msgid ""
2280
  "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
2281
  "enter your domain name, probably: <b>%3$s</b> without subdomains!"
2282
  msgstr ""
2283
 
2284
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2285
  #, php-format
2286
  msgid ""
2287
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2288
  "notify you about any changes to your project."
2289
  msgstr ""
2290
 
2291
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2292
  #, php-format
2293
  msgid ""
2294
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2295
  "too!"
2296
  msgstr ""
2297
 
2298
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2299
  #, php-format
2300
  msgid ""
2301
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2302
  "\"<b>%2$s</b>\" button in the top bar."
2303
  msgstr ""
2304
 
2305
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2306
  #, php-format
2307
  msgid "Choose the \"<b>%1$s</b>\" option."
2308
  msgstr ""
2309
 
2310
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2311
  #, php-format
2312
  msgid "Select the \"<b>%1$s</b>\" under Application type."
2313
  msgstr ""
2314
 
2315
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2316
  #, php-format
2317
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2318
  msgstr ""
2319
 
2320
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:48
2321
  #, php-format
2322
  msgid "Click on the \"<b>%1$s</b>\" button"
2323
  msgstr ""
2324
 
2325
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:49
2326
  #, php-format
2327
  msgid ""
2328
  "A modal should pop up with your credentials. If that doesn't happen, go to "
@@ -2331,109 +1471,76 @@ msgid ""
2331
  "from there."
2332
  msgstr ""
2333
 
2334
- #: nextend-facebook-connect/providers/google/admin/settings.php:27
2335
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2336
- #: nextend-social-login-pro/providers/apple/admin/settings.php:28
2337
- #: nextend-social-login-pro/providers/github/admin/settings.php:27
2338
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2339
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2340
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2341
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26
2342
  msgid "Client ID"
2343
  msgstr ""
2344
 
2345
- #: nextend-facebook-connect/providers/google/admin/settings.php:40
2346
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2347
- #: nextend-social-login-pro/providers/apple/admin/settings.php:39
2348
- #: nextend-social-login-pro/providers/github/admin/settings.php:39
2349
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2350
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2351
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38
2352
  msgid "Client Secret"
2353
  msgstr ""
2354
 
2355
- #: nextend-facebook-connect/providers/google/admin/settings.php:47
2356
  msgid "Select account on each login"
2357
  msgstr ""
2358
 
2359
- #: nextend-facebook-connect/providers/google/admin/settings.php:56
2360
  msgid ""
2361
  "Disable, when you don't want to see the account select prompt on each login."
2362
  msgstr ""
2363
 
2364
- #: nextend-facebook-connect/providers/google/google.php:99
2365
  msgid "Continue with <b>Google</b>"
2366
  msgstr ""
2367
 
2368
- #: nextend-facebook-connect/providers/google/google.php:100
2369
  msgid "Sign up with <b>Google</b>"
2370
  msgstr ""
2371
 
2372
- #: nextend-facebook-connect/providers/google/google.php:101
2373
  msgid "Link account with <b>Google</b>"
2374
  msgstr ""
2375
 
2376
- #: nextend-facebook-connect/providers/google/google.php:102
2377
  msgid "Unlink account from <b>Google</b>"
2378
  msgstr ""
2379
 
2380
- #: nextend-facebook-connect/providers/google/google.php:295
2381
  #, php-format
2382
  msgid "Required API: %1$s"
2383
  msgstr ""
2384
 
2385
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2386
  msgid ""
2387
  "Find your App and click on the <b>App settings</b> icon. (The one that looks "
2388
  "like a gear.)"
2389
  msgstr ""
2390
 
2391
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2392
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2393
  msgstr ""
2394
 
2395
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2396
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2397
  #, php-format
2398
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
2399
  msgstr ""
2400
 
2401
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:22
2402
  #, php-format
2403
  msgid ""
2404
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2405
  msgstr ""
2406
 
2407
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2408
  msgid ""
2409
  "If you don't have a developer account yet, please apply one by filling all "
2410
  "the required details! This is required for the next steps!"
2411
  msgstr ""
2412
 
2413
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2414
  #, php-format
2415
  msgid ""
2416
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
2417
  "aren't already there!"
2418
  msgstr ""
2419
 
2420
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2421
  #, php-format
2422
  msgid "Click on \"<b>%s</b>\"!"
2423
  msgstr ""
2424
 
2425
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2426
  msgid ""
2427
  "Name your project, and go through the basic setup. You’ll need to select "
2428
  "your use case, give a description and enter a name for the App as well."
2429
  msgstr ""
2430
 
2431
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2432
  #, php-format
2433
  msgid "Click \"<b>%s</b>\"!"
2434
  msgstr ""
2435
 
2436
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2437
  #, php-format
2438
  msgid ""
2439
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
@@ -2441,29 +1548,24 @@ msgid ""
2441
  "press \"<b>Save Changes</b>\"."
2442
  msgstr ""
2443
 
2444
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2445
  #, php-format
2446
  msgid ""
2447
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2448
  "\" section click on the name of your App."
2449
  msgstr ""
2450
 
2451
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2452
  #, php-format
2453
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2454
  msgstr ""
2455
 
2456
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2457
  #, php-format
2458
  msgid "Switch on the \"<b>%s</b>\" option."
2459
  msgstr ""
2460
 
2461
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:39
2462
  #, php-format
2463
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2464
  msgstr ""
2465
 
2466
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:40
2467
  #, php-format
2468
  msgid ""
2469
  "If you want to get the email address as well, then don’t forget to enable "
@@ -2471,218 +1573,162 @@ msgid ""
2471
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
2472
  msgstr ""
2473
 
2474
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:41
2475
  #, php-format
2476
  msgid "Click on \"<b>%s</b>\"."
2477
  msgstr ""
2478
 
2479
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:42
2480
  #, php-format
2481
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2482
  msgstr ""
2483
 
2484
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2485
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2486
  msgid "API Key"
2487
  msgstr ""
2488
 
2489
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2490
  msgid "API secret key"
2491
  msgstr ""
2492
 
2493
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2494
  msgid "Profile image size"
2495
  msgstr ""
2496
 
2497
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2498
  msgid "Original"
2499
  msgstr ""
2500
 
2501
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
2502
  msgid "Continue with <b>Twitter</b>"
2503
  msgstr ""
2504
 
2505
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2506
  msgid "Sign up with <b>Twitter</b>"
2507
  msgstr ""
2508
 
2509
- #: nextend-facebook-connect/providers/twitter/twitter.php:72
2510
  msgid "Link account with <b>Twitter</b>"
2511
  msgstr ""
2512
 
2513
- #: nextend-facebook-connect/providers/twitter/twitter.php:73
2514
  msgid "Unlink account from <b>Twitter</b>"
2515
  msgstr ""
2516
 
2517
- #: nextend-facebook-connect/widget.php:10
2518
  #, php-format
2519
  msgid "%s Buttons"
2520
  msgstr ""
2521
 
2522
- #: nextend-facebook-connect/widget.php:30
2523
  msgid "Title:"
2524
  msgstr ""
2525
 
2526
- #: nextend-facebook-connect/widget.php:38
2527
  msgid "Button style:"
2528
  msgstr ""
2529
 
2530
- #: nextend-facebook-connect/widget.php:53
2531
  msgid "Button align:"
2532
  msgstr ""
2533
 
2534
- #: nextend-facebook-connect/widget.php:85
2535
  msgid "Show link buttons"
2536
  msgstr ""
2537
 
2538
- #: nextend-facebook-connect/widget.php:94
2539
  msgid "Show unlink buttons"
2540
  msgstr ""
2541
 
2542
- #: nextend-social-login-pro/class-provider-extension.php:117
2543
  msgid "Social login is not allowed with this role!"
2544
  msgstr ""
2545
 
2546
- #: nextend-social-login-pro/class-provider-extension.php:213
2547
  msgid "Please enter a username."
2548
  msgstr ""
2549
 
2550
- #: nextend-social-login-pro/class-provider-extension.php:216
2551
  msgid ""
2552
  "This username is invalid because it uses illegal characters. Please enter a "
2553
  "valid username."
2554
  msgstr ""
2555
 
2556
- #: nextend-social-login-pro/class-provider-extension.php:222
2557
  msgid ""
2558
  "<strong>Error</strong>: This username is already registered. Please choose "
2559
  "another one."
2560
  msgstr ""
2561
 
2562
- #: nextend-social-login-pro/class-provider-extension.php:229
2563
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
2564
  msgstr ""
2565
 
2566
- #: nextend-social-login-pro/class-provider-extension.php:247
2567
  msgid "Username"
2568
  msgstr ""
2569
 
2570
- #: nextend-social-login-pro/class-provider-extension.php:300
2571
  msgid "<strong>Error</strong>: Please enter an email address."
2572
  msgstr ""
2573
 
2574
- #: nextend-social-login-pro/class-provider-extension.php:303
2575
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
2576
  msgstr ""
2577
 
2578
- #: nextend-social-login-pro/class-provider-extension.php:307
2579
  msgid ""
2580
  "<strong>Error</strong>: This email is already registered. Please choose "
2581
  "another one."
2582
  msgstr ""
2583
 
2584
- #: nextend-social-login-pro/class-provider-extension.php:327
2585
  msgid "Registration confirmation will be emailed to you."
2586
  msgstr ""
2587
 
2588
- #: nextend-social-login-pro/class-provider-extension.php:386
2589
  msgid "<strong>Error</strong>: Please enter a password."
2590
  msgstr ""
2591
 
2592
- #: nextend-social-login-pro/class-provider-extension.php:392
2593
  msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
2594
  msgstr ""
2595
 
2596
- #: nextend-social-login-pro/class-provider-extension.php:398
2597
  msgid ""
2598
  "<strong>Error</strong>: Passwords don&#8217;t match. Please enter the same "
2599
  "password in both password fields."
2600
  msgstr ""
2601
 
2602
- #: nextend-social-login-pro/class-provider-extension.php:415
2603
  msgid "Password"
2604
  msgstr ""
2605
 
2606
- #: nextend-social-login-pro/class-provider-extension.php:425
2607
  msgid "Strength indicator"
2608
  msgstr ""
2609
 
2610
- #: nextend-social-login-pro/class-provider-extension.php:430
2611
  msgid "Confirm use of weak password"
2612
  msgstr ""
2613
 
2614
- #: nextend-social-login-pro/class-provider-extension.php:436
2615
  msgid "Confirm password"
2616
  msgstr ""
2617
 
2618
- #: nextend-social-login-pro/class-provider-extension.php:448
2619
  #, php-format
2620
  msgid ""
2621
  "This email is already registered, please login in to your account to link "
2622
  "with %1$s."
2623
  msgstr ""
2624
 
2625
- #: nextend-social-login-pro/nextend-social-login-pro.php:104
2626
  #, php-format
2627
  msgid "Please install and activate %1$s to use the %2$s"
2628
  msgstr ""
2629
 
2630
- #: nextend-social-login-pro/nextend-social-login-pro.php:118
2631
  msgid "Network Activate"
2632
  msgstr ""
2633
 
2634
- #: nextend-social-login-pro/nextend-social-login-pro.php:130
2635
  msgid "Install now!"
2636
  msgstr ""
2637
 
2638
- #: nextend-social-login-pro/nextend-social-login-pro.php:826
2639
  msgid "Social Providers"
2640
  msgstr ""
2641
 
2642
- #: nextend-social-login-pro/provider-extensions/facebook.php:74
2643
  #, php-format
2644
  msgid ""
2645
  "The Facebook Sync data needs an approved %1$s and your App must use the "
2646
  "latest %2$s version!"
2647
  msgstr ""
2648
 
2649
- #: nextend-social-login-pro/provider-extensions/google.php:187
2650
  #, php-format
2651
  msgid ""
2652
  "Most of these information can only be retrieved, when the field is marked as "
2653
  "Public on the user's %s page!"
2654
  msgstr ""
2655
 
2656
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2657
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2658
  #, php-format
2659
  msgid "Visit %s"
2660
  msgstr ""
2661
 
2662
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2663
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2664
  msgid ""
2665
  "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
2666
  "select \"<b>Web Settings</b>\" option."
2667
  msgstr ""
2668
 
2669
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2670
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2671
  msgid "Click \"<b>Edit</b>\"."
2672
  msgstr ""
2673
 
2674
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:15
2675
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
2676
  msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2677
  msgstr ""
2678
 
2679
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
2680
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2681
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:10
2682
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:10
2683
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2684
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2685
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10
2686
  #, php-format
2687
  msgid ""
2688
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -2692,92 +1738,71 @@ msgid ""
2692
  "%1$s App."
2693
  msgstr ""
2694
 
2695
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2696
  msgid ""
2697
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2698
  "do this by clicking on the orange \"<b>Create a New Security Profile</b>\" "
2699
  "button on the left side."
2700
  msgstr ""
2701
 
2702
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2703
  msgid ""
2704
  "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
2705
  "\" and \"<b>Consent Privacy Notice URL</b>\"."
2706
  msgstr ""
2707
 
2708
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2709
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
2710
  msgstr ""
2711
 
2712
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2713
  #, php-format
2714
  msgid ""
2715
  "Fill \"<b>Allowed Origins</b>\" with the url of your homepage, probably: <b>"
2716
  "%s</b>"
2717
  msgstr ""
2718
 
2719
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:45
2720
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:41
2721
  msgid "When all fields are filled, click \"<b>Save</b>\"."
2722
  msgstr ""
2723
 
2724
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:46
2725
  msgid ""
2726
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" at the "
2727
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2728
  msgstr ""
2729
 
2730
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
2731
  msgid "Continue with <b>Amazon</b>"
2732
  msgstr ""
2733
 
2734
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
2735
  msgid "Sign up with <b>Amazon</b>"
2736
  msgstr ""
2737
 
2738
- #: nextend-social-login-pro/providers/amazon/amazon.php:42
2739
  msgid "Link account with <b>Amazon</b>"
2740
  msgstr ""
2741
 
2742
- #: nextend-social-login-pro/providers/amazon/amazon.php:43
2743
  msgid "Unlink account from <b>Amazon</b>"
2744
  msgstr ""
2745
 
2746
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
2747
  msgid "Click on the name of your service."
2748
  msgstr ""
2749
 
2750
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22
2751
  msgid ""
2752
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
2753
  msgstr ""
2754
 
2755
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23
2756
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56
2757
  #, php-format
2758
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
2759
  msgstr ""
2760
 
2761
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24
2762
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:82
2763
  #, php-format
2764
  msgid ""
2765
  "Fill the \"<b>Domains and Subdomains</b>\" field with your domain name "
2766
  "probably: <b>%s</b>"
2767
  msgstr ""
2768
 
2769
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:27
2770
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:85
2771
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2772
  msgstr ""
2773
 
2774
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:35
2775
  msgid ""
2776
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2777
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2778
  msgstr ""
2779
 
2780
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30
2781
  #, php-format
2782
  msgid ""
2783
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -2787,7 +1812,6 @@ msgid ""
2787
  "\" according to your %1$s App."
2788
  msgstr ""
2789
 
2790
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37
2791
  msgid ""
2792
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
2793
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
@@ -2795,35 +1819,29 @@ msgid ""
2795
  "App!"
2796
  msgstr ""
2797
 
2798
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
2799
  msgid ""
2800
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
2801
  "b>!"
2802
  msgstr ""
2803
 
2804
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43
2805
  msgid "1.) Create the associated App:"
2806
  msgstr ""
2807
 
2808
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45
2809
  #, php-format
2810
  msgid ""
2811
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
2812
  "option and click the \"Continue\" button."
2813
  msgstr ""
2814
 
2815
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46
2816
  #, php-format
2817
  msgid ""
2818
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
2819
  "\"<b>Continue</b>\" button."
2820
  msgstr ""
2821
 
2822
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47
2823
  msgid "Enter a \"<b>Description</b>\""
2824
  msgstr ""
2825
 
2826
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:48
2827
  #, php-format
2828
  msgid ""
2829
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
@@ -2831,178 +1849,143 @@ msgid ""
2831
  "app at its end: <b>%s.nslapp</b>"
2832
  msgstr ""
2833
 
2834
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:49
2835
  msgid ""
2836
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
2837
  "b>\" option."
2838
  msgstr ""
2839
 
2840
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50
2841
  msgid ""
2842
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
2843
  "\"<b>Register</b>\" button."
2844
  msgstr ""
2845
 
2846
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53
2847
  msgid "2.) Create the Key:"
2848
  msgstr ""
2849
 
2850
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55
2851
  #, php-format
2852
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
2853
  msgstr ""
2854
 
2855
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57
2856
  msgid "Enter a name in the <b>Key Name</b> field."
2857
  msgstr ""
2858
 
2859
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58
2860
  msgid ""
2861
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
2862
  "b>\"."
2863
  msgstr ""
2864
 
2865
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:59
2866
  msgid ""
2867
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
2868
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
2869
  "\"."
2870
  msgstr ""
2871
 
2872
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:60
2873
  msgid ""
2874
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
2875
  "\" button."
2876
  msgstr ""
2877
 
2878
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61
2879
  msgid "<b>Don't download the key yet!</b>"
2880
  msgstr ""
2881
 
2882
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64
2883
  msgid "3.) Create the Service:"
2884
  msgstr ""
2885
 
2886
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66
2887
  #, php-format
2888
  msgid ""
2889
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
2890
  "tab."
2891
  msgstr ""
2892
 
2893
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:67
2894
  #, php-format
2895
  msgid ""
2896
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
2897
  "option and click the \"<b>Continue</b>\" button."
2898
  msgstr ""
2899
 
2900
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:68
2901
  msgid "Enter a \"<b>Description</b>\"."
2902
  msgstr ""
2903
 
2904
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69
2905
  #, php-format
2906
  msgid ""
2907
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
2908
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
2909
  msgstr ""
2910
 
2911
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72
2912
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
2913
  msgstr ""
2914
 
2915
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:75
2916
  msgid ""
2917
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
2918
  msgstr ""
2919
 
2920
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76
2921
  #, php-format
2922
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
2923
  msgstr ""
2924
 
2925
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79
2926
  msgid ""
2927
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
2928
  "b>\" button next to it."
2929
  msgstr ""
2930
 
2931
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:81
2932
  msgid ""
2933
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
2934
  "App what you just created."
2935
  msgstr ""
2936
 
2937
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:95
2938
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
2939
  msgstr ""
2940
 
2941
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:96
2942
  msgid ""
2943
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
2944
  "button."
2945
  msgstr ""
2946
 
2947
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99
2948
  msgid "4.) Configure Nextend Social Login with your credentials:"
2949
  msgstr ""
2950
 
2951
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:101
2952
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
2953
  msgstr ""
2954
 
2955
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:102
2956
  msgid "<strong><u>Private Key ID:</u></strong>"
2957
  msgstr ""
2958
 
2959
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:104
2960
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
2961
  #, php-format
2962
  msgid "Navigate to: <b>%s</b>"
2963
  msgstr ""
2964
 
2965
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105
2966
  msgid "Click on the <b>name of your Key</b>."
2967
  msgstr ""
2968
 
2969
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:106
2970
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
2971
  msgstr ""
2972
 
2973
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:109
2974
  msgid "<strong><u>Private Key:</u></strong>"
2975
  msgstr ""
2976
 
2977
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111
2978
  msgid ""
2979
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
2980
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
2981
  "this file safe</b>!</u> "
2982
  msgstr ""
2983
 
2984
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:112
2985
  msgid ""
2986
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
2987
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
2988
  "\" field of Nextend Social Login."
2989
  msgstr ""
2990
 
2991
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115
2992
  msgid "<strong><u>Team Identifier:</u></strong>"
2993
  msgstr ""
2994
 
2995
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:117
2996
  msgid ""
2997
  "A 10 character long identifier, what you can find on the <b>top-right "
2998
  "corner, just under your name</b>."
2999
  msgstr ""
3000
 
3001
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:120
3002
  msgid "<strong><u>Service Identifier:</u></strong>"
3003
  msgstr ""
3004
 
3005
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:123
3006
  #, php-format
3007
  msgid ""
3008
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
@@ -3010,665 +1993,514 @@ msgid ""
3010
  "e.g.: <b>%s.nslclient</b>"
3011
  msgstr ""
3012
 
3013
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:126
3014
  msgid ""
3015
  "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
3016
  "button."
3017
  msgstr ""
3018
 
3019
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:127
3020
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
3021
  msgstr ""
3022
 
3023
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:128
3024
  msgid ""
3025
  "When you need to change your credentials for some reason, then you must "
3026
  "delete the token, copy the new credentials and generate a new token!"
3027
  msgstr ""
3028
 
3029
- #: nextend-social-login-pro/providers/apple/admin/settings.php:48
3030
  msgid "Delete credentials"
3031
  msgstr ""
3032
 
3033
- #: nextend-social-login-pro/providers/apple/admin/settings.php:78
3034
  msgid "Private Key ID"
3035
  msgstr ""
3036
 
3037
- #: nextend-social-login-pro/providers/apple/admin/settings.php:89
3038
  msgid "Private Key"
3039
  msgstr ""
3040
 
3041
- #: nextend-social-login-pro/providers/apple/admin/settings.php:98
3042
  msgid "Team Identifier"
3043
  msgstr ""
3044
 
3045
- #: nextend-social-login-pro/providers/apple/admin/settings.php:106
3046
  msgid "Service Identifier"
3047
  msgstr ""
3048
 
3049
- #: nextend-social-login-pro/providers/apple/admin/settings.php:116
3050
  msgid "Generate Token"
3051
  msgstr ""
3052
 
3053
- #: nextend-social-login-pro/providers/apple/apple.php:67
3054
  msgid "Continue with <b>Apple</b>"
3055
  msgstr ""
3056
 
3057
- #: nextend-social-login-pro/providers/apple/apple.php:68
3058
  msgid "Sign up with <b>Apple</b>"
3059
  msgstr ""
3060
 
3061
- #: nextend-social-login-pro/providers/apple/apple.php:69
3062
  msgid "Link account with <b>Apple</b>"
3063
  msgstr ""
3064
 
3065
- #: nextend-social-login-pro/providers/apple/apple.php:70
3066
  msgid "Unlink account from <b>Apple</b>"
3067
  msgstr ""
3068
 
3069
- #: nextend-social-login-pro/providers/apple/apple.php:164
3070
  #, php-format
3071
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3072
  msgstr ""
3073
 
3074
- #: nextend-social-login-pro/providers/apple/apple.php:168
3075
- #: nextend-social-login-pro/providers/apple/apple.php:266
3076
- #: nextend-social-login-pro/providers/apple/apple.php:281
3077
- #: nextend-social-login-pro/providers/apple/apple.php:325
3078
  #, php-format
3079
  msgid "Token generation failed: %1$s"
3080
  msgstr ""
3081
 
3082
- #: nextend-social-login-pro/providers/apple/apple.php:168
3083
  msgid "Please check your credentials!"
3084
  msgstr ""
3085
 
3086
- #: nextend-social-login-pro/providers/apple/apple.php:266
3087
  msgid "Private key format is not valid!"
3088
  msgstr ""
3089
 
3090
- #: nextend-social-login-pro/providers/apple/apple.php:292
3091
  #, php-format
3092
  msgid ""
3093
  "%s detected that your Apple credentials have expired. Please delete the "
3094
  "current credentials and generate new one!"
3095
  msgstr ""
3096
 
3097
- #: nextend-social-login-pro/providers/apple/apple.php:294
3098
  msgid "Apple Credentials"
3099
  msgstr ""
3100
 
3101
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
3102
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
3103
  #, php-format
3104
  msgid "Click on the name of your %s App."
3105
  msgstr ""
3106
 
3107
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:11
3108
  msgid ""
3109
  "Select the \"<b>Settings</b>\" tab and scroll down to the Authentication "
3110
  "section!"
3111
  msgstr ""
3112
 
3113
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
3114
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:27
3115
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:33
3116
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3117
  msgstr ""
3118
 
3119
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:22
3120
  msgid "Click on the \"<b>Save Changes</b>\" button."
3121
  msgstr ""
3122
 
3123
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
3124
  msgid ""
3125
  "Click on the \"<b>Registering new application</b>\" button under the "
3126
  "Applications tab."
3127
  msgstr ""
3128
 
3129
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
3130
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
3131
  msgstr ""
3132
 
3133
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
3134
  #, php-format
3135
  msgid ""
3136
  "Fill \"<b>Website</b>\" with the url of your homepage, probably: <b>%s</b>"
3137
  msgstr ""
3138
 
3139
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
3140
  msgid ""
3141
  "Complete the Human test and click the \"<b>Register my application</b>\" "
3142
  "button."
3143
  msgstr ""
3144
 
3145
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
3146
  #, php-format
3147
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
3148
  msgstr ""
3149
 
3150
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
3151
  msgid ""
3152
  "Select \"<b>Read only</b>\" as Default Access under the Authentication "
3153
  "section."
3154
  msgstr ""
3155
 
3156
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:35
3157
  msgid "Click on the \"<b>Save Changes</b>\" button!"
3158
  msgstr ""
3159
 
3160
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:36
3161
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
3162
  msgstr ""
3163
 
3164
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:37
3165
  msgid ""
3166
  "Here you can see your \"<b>API Key</b>\" and \"<b>API Secret</b>\". These "
3167
  "will be needed in the plugin's settings."
3168
  msgstr ""
3169
 
3170
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
3171
  msgid "API Secret"
3172
  msgstr ""
3173
 
3174
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
3175
  msgid "Continue with <b>Disqus</b>"
3176
  msgstr ""
3177
 
3178
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3179
  msgid "Sign up with <b>Disqus</b>"
3180
  msgstr ""
3181
 
3182
- #: nextend-social-login-pro/providers/disqus/disqus.php:89
3183
  msgid "Link account with <b>Disqus</b>"
3184
  msgstr ""
3185
 
3186
- #: nextend-social-login-pro/providers/disqus/disqus.php:90
3187
  msgid "Unlink account from <b>Disqus</b>"
3188
  msgstr ""
3189
 
3190
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
3191
  #, php-format
3192
  msgid "Click on the name of the App you configured %s with."
3193
  msgstr ""
3194
 
3195
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:11
3196
  #, php-format
3197
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
3198
  msgstr ""
3199
 
3200
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:14
3201
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:25
3202
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
3203
  msgstr ""
3204
 
3205
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:22
3206
  msgid "Press the <b>Update application</b> button to save the changes."
3207
  msgstr ""
3208
 
3209
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:19
3210
  #, php-format
3211
  msgid ""
3212
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
3213
  "button."
3214
  msgstr ""
3215
 
3216
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:20
3217
  msgid ""
3218
  "Enter a name into the <b>Application name</b> field. Users will see this "
3219
  "name, when they authorize your app at the OAuth consent screen!"
3220
  msgstr ""
3221
 
3222
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:21
3223
  #, php-format
3224
  msgid ""
3225
  "Fill <b>Homepage URL</b> with the url of your homepage, probably: <b>%s</b>"
3226
  msgstr ""
3227
 
3228
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:22
3229
  msgid ""
3230
  "In the <b>Description</b> field you should explain what this App will be "
3231
  "used for."
3232
  msgstr ""
3233
 
3234
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:33
3235
  msgid "Click the <b>Register application</b> button."
3236
  msgstr ""
3237
 
3238
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:34
3239
  msgid ""
3240
  "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the middle "
3241
  "of the page. These will be needed in the plugin's settings!"
3242
  msgstr ""
3243
 
3244
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:37
3245
  #, php-format
3246
  msgid ""
3247
  "<b>Important note:</b> The email address is only retrievable, if there is a "
3248
  "public email address set at the %1$s profile page%2$s!"
3249
  msgstr ""
3250
 
3251
- #: nextend-social-login-pro/providers/github/github.php:125
3252
  msgid "Continue with <b>GitHub</b>"
3253
  msgstr ""
3254
 
3255
- #: nextend-social-login-pro/providers/github/github.php:126
3256
  msgid "Sign up with <b>GitHub</b>"
3257
  msgstr ""
3258
 
3259
- #: nextend-social-login-pro/providers/github/github.php:127
3260
  msgid "Link account with <b>GitHub</b>"
3261
  msgstr ""
3262
 
3263
- #: nextend-social-login-pro/providers/github/github.php:128
3264
  msgid "Unlink account from <b>GitHub</b>"
3265
  msgstr ""
3266
 
3267
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:8
3268
  #, php-format
3269
  msgid "Navigate to your %s"
3270
  msgstr ""
3271
 
3272
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:10
3273
  #, php-format
3274
  msgid "Select your %s App and click on the LINE Login section."
3275
  msgstr ""
3276
 
3277
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:13
3278
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
3279
  msgstr ""
3280
 
3281
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:17
3282
  #, php-format
3283
  msgid ""
3284
  "Editing Live Apps are only possible with a %s. So please make sure you own "
3285
  "one!"
3286
  msgstr ""
3287
 
3288
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:19
3289
  msgid "Click the \"<b>Create a new provider</b>\" button."
3290
  msgstr ""
3291
 
3292
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:20
3293
  msgid ""
3294
  "Fill the \"<b>Provider name</b>\" field and click the \"<b>Create</b>\" "
3295
  "button."
3296
  msgstr ""
3297
 
3298
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:21
3299
  msgid ""
3300
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
3301
  "channel</b>\" option."
3302
  msgstr ""
3303
 
3304
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:22
3305
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
3306
  msgstr ""
3307
 
3308
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:23
3309
  msgid ""
3310
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
3311
  "created."
3312
  msgstr ""
3313
 
3314
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:24
3315
  msgid "Select your \"<b>Region</b>\"."
3316
  msgstr ""
3317
 
3318
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:25
3319
  msgid ""
3320
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
3321
  "description</b>\". These will appear on your Consent Screen!"
3322
  msgstr ""
3323
 
3324
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:26
3325
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
3326
  msgstr ""
3327
 
3328
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:27
3329
  msgid ""
3330
  "Read and consent to the \"<b>LINE Developers Agreement</b>\", then click the "
3331
  "\"<b>Create</b>\" button."
3332
  msgstr ""
3333
 
3334
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:28
3335
  msgid ""
3336
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
3337
  "near the \"<b>Email address permission</b>\" label."
3338
  msgstr ""
3339
 
3340
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:29
3341
  msgid "Fill out the form, then click the \"<b>Submit</b>\" button."
3342
  msgstr ""
3343
 
3344
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:30
3345
  msgid ""
3346
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
3347
  "section."
3348
  msgstr ""
3349
 
3350
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:41
3351
  msgid ""
3352
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
3353
  "Channel!"
3354
  msgstr ""
3355
 
3356
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:42
3357
  msgid ""
3358
  "Go to the \"<b>Basic settings</b>\" tab and find the necessary \"<b>Channel "
3359
  "ID</b>\" and \"<b>Channel secret</b>\" values and fill these fields in the "
3360
  "plugin settings!"
3361
  msgstr ""
3362
 
3363
- #: nextend-social-login-pro/providers/line/admin/settings.php:26
3364
  msgid "Channel ID"
3365
  msgstr ""
3366
 
3367
- #: nextend-social-login-pro/providers/line/admin/settings.php:38
3368
  msgid "Channel Secret"
3369
  msgstr ""
3370
 
3371
- #: nextend-social-login-pro/providers/line/line.php:36
3372
  msgid "Continue with <b>Line</b>"
3373
  msgstr ""
3374
 
3375
- #: nextend-social-login-pro/providers/line/line.php:37
3376
  msgid "Sign up with <b>Line</b>"
3377
  msgstr ""
3378
 
3379
- #: nextend-social-login-pro/providers/line/line.php:38
3380
  msgid "Link account with <b>Line</b>"
3381
  msgstr ""
3382
 
3383
- #: nextend-social-login-pro/providers/line/line.php:39
3384
  msgid "Unlink account from <b>Line</b>"
3385
  msgstr ""
3386
 
3387
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3388
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3389
  msgstr ""
3390
 
3391
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:13
3392
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
3393
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
3394
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3395
  msgstr ""
3396
 
3397
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:21
3398
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:38
3399
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:22
3400
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:22
3401
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:21
3402
  msgid "Click on \"<b>Update</b>\" to save the changes"
3403
  msgstr ""
3404
 
3405
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
3406
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
3407
  msgstr ""
3408
 
3409
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
3410
  msgid "Enter the name of your App to the \"App name\" field."
3411
  msgstr ""
3412
 
3413
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
3414
  #, php-format
3415
  msgid ""
3416
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
3417
  "one yet, create new one at: %s"
3418
  msgstr ""
3419
 
3420
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
3421
  msgid ""
3422
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
3423
  msgstr ""
3424
 
3425
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
3426
  msgid ""
3427
  "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
3428
  "App</b>\" button!"
3429
  msgstr ""
3430
 
3431
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24
3432
  msgid ""
3433
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
3434
  "tab."
3435
  msgstr ""
3436
 
3437
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25
3438
  #, php-format
3439
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
3440
  msgstr ""
3441
 
3442
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:26
3443
  msgid ""
3444
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
3445
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
3446
  "button."
3447
  msgstr ""
3448
 
3449
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
3450
  msgid "Click on the \"<b>Auth</b>\" tab."
3451
  msgstr ""
3452
 
3453
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:30
3454
  msgid ""
3455
  "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
3456
  "\"<b>Redirect URLs</b>\" field:"
3457
  msgstr ""
3458
 
3459
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:39
3460
  msgid ""
3461
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" under "
3462
  "the Application credentials section, on the <b>Auth</b> tab."
3463
  msgstr ""
3464
 
3465
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3466
  msgid "Continue with <b>LinkedIn</b>"
3467
  msgstr ""
3468
 
3469
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3470
  msgid "Sign up with <b>LinkedIn</b>"
3471
  msgstr ""
3472
 
3473
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3474
  msgid "Link account with <b>LinkedIn</b>"
3475
  msgstr ""
3476
 
3477
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3478
  msgid "Unlink account from <b>LinkedIn</b>"
3479
  msgstr ""
3480
 
3481
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:9
3482
  #, php-format
3483
  msgid "Log in with your %s credentials if you are not logged in yet."
3484
  msgstr ""
3485
 
3486
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:10
3487
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:19
3488
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
3489
  msgstr ""
3490
 
3491
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:11
3492
  #, php-format
3493
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
3494
  msgstr ""
3495
 
3496
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:12
3497
  msgid "Click on the link next to the Redirect URIs label."
3498
  msgstr ""
3499
 
3500
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:15
3501
  msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3502
  msgstr ""
3503
 
3504
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:18
3505
  #, php-format
3506
  msgid ""
3507
  "Log in with your %s credentials if you are not logged in or create a new "
3508
  "account."
3509
  msgstr ""
3510
 
3511
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:20
3512
  msgid "Click on \"<b>New registration</b>\"."
3513
  msgstr ""
3514
 
3515
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:21
3516
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
3517
  msgstr ""
3518
 
3519
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:22
3520
  msgid ""
3521
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
3522
  "account types."
3523
  msgstr ""
3524
 
3525
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:25
3526
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3527
  msgstr ""
3528
 
3529
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:33
3530
  msgid "Create your App with the \"<b>Register</b>\" button."
3531
  msgstr ""
3532
 
3533
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:34
3534
  msgid "You land on the \"<b>Overview</b>\" page."
3535
  msgstr ""
3536
 
3537
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:35
3538
  msgid ""
3539
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
3540
  "(client) ID</b> in the plugin settings."
3541
  msgstr ""
3542
 
3543
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:36
3544
  msgid ""
3545
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
3546
  "Client credentials label."
3547
  msgstr ""
3548
 
3549
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:37
3550
  msgid "Click on \"<b>New client secret</b>\"."
3551
  msgstr ""
3552
 
3553
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:38
3554
  msgid "Fill the \"<b>Description</b>\" field."
3555
  msgstr ""
3556
 
3557
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:39
3558
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
3559
  msgstr ""
3560
 
3561
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:40
3562
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
3563
  msgstr ""
3564
 
3565
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:41
3566
  msgid ""
3567
  "Copy the \"<b>Client Secret Value</b>\", this will be the <b>Client secret</"
3568
  "b> in the plugin settings."
3569
  msgstr ""
3570
 
3571
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:26
3572
  msgid "Application (client) ID"
3573
  msgstr ""
3574
 
3575
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:38
3576
  msgid "Client secret"
3577
  msgstr ""
3578
 
3579
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:38
3580
  msgid "Continue with <b>Microsoft</b>"
3581
  msgstr ""
3582
 
3583
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:39
3584
  msgid "Sign up with <b>Microsoft</b>"
3585
  msgstr ""
3586
 
3587
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:40
3588
  msgid "Link account with <b>Microsoft</b>"
3589
  msgstr ""
3590
 
3591
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:41
3592
  msgid "Unlink account from <b>Microsoft</b>"
3593
  msgstr ""
3594
 
3595
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
3596
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
3597
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
3598
  msgstr ""
3599
 
3600
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
3601
  #, php-format
3602
  msgid "Click on the name of your %s App, under the REST API apps section."
3603
  msgstr ""
3604
 
3605
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
3606
  msgid ""
3607
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3608
  "b>\" heading and click \"<b>Show</b>\"."
3609
  msgstr ""
3610
 
3611
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
3612
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
3613
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3614
  msgstr ""
3615
 
3616
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:23
3617
  msgid "Click on \"Save\""
3618
  msgstr ""
3619
 
3620
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
3621
  #, php-format
3622
  msgid ""
3623
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
3624
  "step, if not click on the link!"
3625
  msgstr ""
3626
 
3627
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
3628
  msgid "Click on Registration and create a Business account."
3629
  msgstr ""
3630
 
3631
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
3632
  msgid "If you are done, follow the guide from the 5. step."
3633
  msgstr ""
3634
 
3635
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
3636
  #, php-format
3637
  msgid "Log in with your %s credentials."
3638
  msgstr ""
3639
 
3640
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
3641
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
3642
  msgstr ""
3643
 
3644
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
3645
  msgid ""
3646
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
3647
  msgstr ""
3648
 
3649
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
3650
  msgid ""
3651
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3652
  "b>\" heading then click \"<b>Show</b>\"."
3653
  msgstr ""
3654
 
3655
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:36
3656
  msgid ""
3657
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
3658
  "with PayPal</b>\"."
3659
  msgstr ""
3660
 
3661
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:37
3662
  msgid ""
3663
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
3664
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
3665
  msgstr ""
3666
 
3667
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:38
3668
  msgid "Tick \"<b>Full name</b>\"."
3669
  msgstr ""
3670
 
3671
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:39
3672
  msgid ""
3673
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
3674
  "email address as well, <b>please submit your App for a review</b> after your "
@@ -3677,290 +2509,200 @@ msgid ""
3677
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
3678
  msgstr ""
3679
 
3680
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:40
3681
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
3682
  msgstr ""
3683
 
3684
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:42
3685
  msgid ""
3686
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
3687
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
3688
  "\"<b>Live</b>\" mode and not \"Sandbox\". )"
3689
  msgstr ""
3690
 
3691
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
3692
  msgid "Secret"
3693
  msgstr ""
3694
 
3695
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:45
3696
  msgid "Email scope"
3697
  msgstr ""
3698
 
3699
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:54
3700
  msgid "Disable, when you have no rights for email address."
3701
  msgstr ""
3702
 
3703
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
3704
  msgid "Continue with <b>PayPal</b>"
3705
  msgstr ""
3706
 
3707
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
3708
  msgid "Sign up with <b>PayPal</b>"
3709
  msgstr ""
3710
 
3711
- #: nextend-social-login-pro/providers/paypal/paypal.php:67
3712
  msgid "Link account with <b>PayPal</b>"
3713
  msgstr ""
3714
 
3715
- #: nextend-social-login-pro/providers/paypal/paypal.php:68
3716
  msgid "Unlink account from <b>PayPal</b>"
3717
  msgstr ""
3718
 
3719
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
3720
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3721
  msgstr ""
3722
 
3723
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
3724
  msgid "Go to the \"<b>Settings</b>\" menu"
3725
  msgstr ""
3726
 
3727
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:14
3728
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:28
3729
  msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
3730
  msgstr ""
3731
 
3732
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
3733
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3734
  msgstr ""
3735
 
3736
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
3737
  msgid ""
3738
  "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
3739
  "platform."
3740
  msgstr ""
3741
 
3742
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
3743
  #, php-format
3744
  msgid ""
3745
  "Fill \"<b>Website address</b>\" with the url of your homepage, probably: <b>"
3746
  "%s</b>"
3747
  msgstr ""
3748
 
3749
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
3750
  #, php-format
3751
  msgid ""
3752
  "Fill the \"<b>Base domain</b>\" field with your domain, probably: <b>%s</b>"
3753
  msgstr ""
3754
 
3755
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
3756
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
3757
  msgstr ""
3758
 
3759
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
3760
  msgid ""
3761
  "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
3762
  "click <b>Save</b>."
3763
  msgstr ""
3764
 
3765
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
3766
  msgid "Pick <b>Settings</b> at the left-hand menu "
3767
  msgstr ""
3768
 
3769
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:36
3770
  msgid "<b>Save</b> your app"
3771
  msgstr ""
3772
 
3773
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:37
3774
  msgid ""
3775
  "Find the necessary \"<b>App ID</b>\" and \"<b>Secure key</b>\" at the top of "
3776
  "the Settings page where you just hit the save button."
3777
  msgstr ""
3778
 
3779
- #: nextend-social-login-pro/providers/vk/admin/settings.php:39
3780
  msgid "Secure key"
3781
  msgstr ""
3782
 
3783
- #: nextend-social-login-pro/providers/vk/vk.php:36
3784
  msgid "Continue with <b>VK</b>"
3785
  msgstr ""
3786
 
3787
- #: nextend-social-login-pro/providers/vk/vk.php:37
3788
  msgid "Sign up with <b>VK</b>"
3789
  msgstr ""
3790
 
3791
- #: nextend-social-login-pro/providers/vk/vk.php:38
3792
  msgid "Link account with <b>VK</b>"
3793
  msgstr ""
3794
 
3795
- #: nextend-social-login-pro/providers/vk/vk.php:39
3796
  msgid "Unlink account from <b>VK</b>"
3797
  msgstr ""
3798
 
3799
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:11
3800
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
3801
  msgstr ""
3802
 
3803
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
3804
  msgid "Click on the \"<b>Create New Application</b>\" button."
3805
  msgstr ""
3806
 
3807
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
3808
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
3809
  msgstr ""
3810
 
3811
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
3812
  #, php-format
3813
  msgid ""
3814
  "Fill \"<b>Website URL</b>\" with the url of your homepage, probably: <b>%s</"
3815
  "b>"
3816
  msgstr ""
3817
 
3818
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:32
3819
  msgid "You can leave the \"Javascript Origins\" field blank!"
3820
  msgstr ""
3821
 
3822
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:33
3823
  msgid "Complete the human verification test."
3824
  msgstr ""
3825
 
3826
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:34
3827
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
3828
  msgstr ""
3829
 
3830
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:35
3831
  msgid "Click the \"<b>Create</b>\" button!"
3832
  msgstr ""
3833
 
3834
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:36
3835
  msgid ""
3836
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
3837
  "next to Editing!"
3838
  msgstr ""
3839
 
3840
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:37
3841
  msgid ""
3842
  "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
3843
  "These will be needed in the plugin's settings."
3844
  msgstr ""
3845
 
3846
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
3847
  msgid "Continue with <b>WordPress.com</b>"
3848
  msgstr ""
3849
 
3850
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
3851
  msgid "Sign up with <b>WordPress.com</b>"
3852
  msgstr ""
3853
 
3854
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
3855
  msgid "Link account with <b>WordPress.com</b>"
3856
  msgstr ""
3857
 
3858
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
3859
  msgid "Unlink account from <b>WordPress.com</b>"
3860
  msgstr ""
3861
 
3862
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
3863
  msgid "Click on the App which has its credentials associated with the plugin."
3864
  msgstr ""
3865
 
3866
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:13
3867
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:26
3868
  msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3869
  msgstr ""
3870
 
3871
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20
3872
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3873
  msgstr ""
3874
 
3875
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21
3876
  msgid ""
3877
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
3878
  "at \"<b>Application Type</b>\"."
3879
  msgstr ""
3880
 
3881
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22
3882
  msgid "Enter a \"<b>Description</b>\" for your app!"
3883
  msgstr ""
3884
 
3885
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23
3886
  #, php-format
3887
  msgid ""
3888
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
3889
  msgstr ""
3890
 
3891
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:34
3892
  msgid ""
3893
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3894
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3895
  msgstr ""
3896
 
3897
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:35
3898
  msgid "Click \"<b>Create App</b>\"."
3899
  msgstr ""
3900
 
3901
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:36
3902
  msgid ""
3903
  "On the top of the page, you will find the necessary \"<b>Client ID</b>\" and "
3904
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3905
  msgstr ""
3906
 
3907
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
3908
  msgid "Continue with <b>Yahoo</b>"
3909
  msgstr ""
3910
 
3911
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
3912
  msgid "Sign up with <b>Yahoo</b>"
3913
  msgstr ""
3914
 
3915
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
3916
  msgid "Link account with <b>Yahoo</b>"
3917
  msgstr ""
3918
 
3919
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
3920
  msgid "Unlink account from <b>Yahoo</b>"
3921
  msgstr ""
3922
 
3923
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
3924
  #, php-format
3925
  msgid "Required permission: %1$s"
3926
  msgstr ""
3927
 
3928
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
3929
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
3930
- #: nextend-social-login-pro/template-parts/buddypress/register/above-separator.php:25
3931
- #: nextend-social-login-pro/template-parts/buddypress/register/below-separator.php:25
3932
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
3933
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
3934
- #: nextend-social-login-pro/template-parts/login/above-separator.php:25
3935
- #: nextend-social-login-pro/template-parts/login/below-separator.php:30
3936
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
3937
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
3938
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
3939
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
3940
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
3941
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
3942
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
3943
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
3944
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
3945
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
3946
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
3947
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
3948
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
3949
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
3950
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
3951
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
3952
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
3953
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
3954
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
3955
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
3956
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
3957
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
3958
  msgid "OR"
3959
  msgstr "OU"
3960
 
3961
- #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
3962
- #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2
3963
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
3964
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
3965
  msgid "Social accounts"
3966
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-09-13 20:36+0200\n"
5
+ "PO-Revision-Date: 2021-09-13 20:42+0200\n"
6
  "Last-Translator: \n"
7
+ "Language-Team: nextend-facebook-connect\n"
8
  "Language: fr\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\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-Flags-xgettext: --no-location\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
  "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
27
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
28
  "compat\n"
29
 
 
30
  msgid "What personal data we collect and why we collect it"
31
  msgstr ""
32
 
 
33
  #, php-format
34
  msgid ""
35
  "%1$s collects data when a visitor register, login or link the account with "
39
  "feature."
40
  msgstr ""
41
 
 
42
  msgid "Who we share your data with"
43
  msgstr ""
44
 
 
45
  #, php-format
46
  msgid ""
47
  "%1$s stores the personal data on your site and does not share it with anyone "
49
  "the social providers."
50
  msgstr ""
51
 
 
52
  msgid "Does the plugin share personal data with third parties"
53
  msgstr ""
54
 
 
55
  #, php-format
56
  msgid ""
57
  "%1$s use the access token what the social provider gave to communicate with "
58
  "the providers to verify account and securely access personal data."
59
  msgstr ""
60
 
 
61
  msgid "How long we retain your data"
62
  msgstr ""
63
 
 
64
  #, php-format
65
  msgid ""
66
  "%1$s removes the collected personal data when the user deleted from "
67
  "WordPress."
68
  msgstr ""
69
 
 
70
  msgid "Does the plugin use personal data collected by others?"
71
  msgstr ""
72
 
 
73
  #, php-format
74
  msgid ""
75
  "%1$s use the personal data collected by the social providers to create "
76
  "account on your site when the visitor authorize it."
77
  msgstr ""
78
 
 
79
  msgid "Does the plugin store things in the browser?"
80
  msgstr ""
81
 
 
82
  #, php-format
83
  msgid ""
84
  "Yes, %1$s must create a cookie for visitors who use the social login "
86
  "communication and to redirect the user back to the last location."
87
  msgstr ""
88
 
 
89
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
90
  msgstr ""
91
 
 
 
92
  msgid "No"
93
  msgstr ""
94
 
 
95
  msgid ""
96
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
97
  "third party?"
98
  msgstr ""
99
 
 
 
100
  msgid "User"
101
  msgstr ""
102
 
 
103
  #, php-format
104
  msgid "%s needs json_decode function."
105
  msgstr ""
106
 
 
107
  msgid "Please contact your server administrator and ask for solution!"
108
  msgstr ""
109
 
 
 
110
  msgid "Settings saved."
111
  msgstr ""
112
 
 
113
  msgid "The activation was successful"
114
  msgstr ""
115
 
 
116
  msgid "Deactivate completed."
117
  msgstr ""
118
 
 
 
 
 
 
119
  msgid "Settings"
120
  msgstr ""
121
 
 
 
 
 
 
 
 
122
  #, php-format
123
  msgid "Unexpected response: %s"
124
  msgstr ""
125
 
 
 
126
  #, php-format
127
  msgid ""
128
  "%s detected that your login url changed. You must update the Oauth redirect "
129
  "URIs in the related social applications."
130
  msgstr ""
131
 
 
 
132
  msgid "Fix Error"
133
  msgstr ""
134
 
 
135
  msgid "Oauth Redirect URI"
136
  msgstr ""
137
 
 
138
  #, php-format
139
  msgid ""
140
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
141
  "display Social Login buttons in %2$s login form!"
142
  msgstr ""
143
 
 
144
  msgid "Dismiss and check Pro Addon"
145
  msgstr ""
146
 
 
147
  msgid "Dismiss"
148
  msgstr ""
149
 
 
150
  #, php-format
151
  msgid ""
152
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
154
  "work properly."
155
  msgstr ""
156
 
 
157
  msgid "Fix now"
158
  msgstr ""
159
 
 
160
  msgid "Activate your Pro Addon"
161
  msgstr ""
162
 
 
163
  msgid ""
164
  "To be able to use the Pro features, you need to activate Nextend Social "
165
  "Login Pro Addon. You can do this by clicking on the Activate button below "
166
  "then select the related purchase."
167
  msgstr ""
168
 
 
 
169
  msgid "Activate"
170
  msgstr ""
171
 
 
172
  msgid "License key"
173
  msgstr ""
174
 
 
175
  msgid "OAuth proxy page"
176
  msgstr ""
177
 
 
178
  msgid "Register flow page"
179
  msgstr ""
180
 
 
181
  #, php-format
182
  msgid ""
183
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
185
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
186
  msgstr ""
187
 
 
 
188
  msgid "You have logged in successfully."
189
  msgstr ""
190
 
 
191
  msgid "Login label"
192
  msgstr ""
193
 
 
 
 
 
 
 
 
194
  msgid "Reset to default"
195
  msgstr ""
196
 
 
197
  msgid "Register label"
198
  msgstr ""
199
 
 
200
  msgid "Link label"
201
  msgstr ""
202
 
 
203
  msgid "Unlink label"
204
  msgstr ""
205
 
 
206
  msgid "Default button"
207
  msgstr ""
208
 
 
 
209
  msgid "Use custom button"
210
  msgstr ""
211
 
 
212
  #, php-format
213
  msgid "Use the %s in your custom button's code to make the label show up."
214
  msgstr ""
215
 
 
216
  msgid "Icon button"
217
  msgstr ""
218
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
219
  msgid "Save Changes"
220
  msgstr ""
221
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
222
  msgid "Getting Started"
223
  msgstr ""
224
 
 
225
  msgid "Buttons"
226
  msgstr ""
227
 
 
228
  msgid "Sync data"
229
  msgstr ""
230
 
 
231
  msgid "Usage"
232
  msgstr ""
233
 
 
234
  msgid "Other settings"
235
  msgstr ""
236
 
 
237
  msgid "Username prefix on register"
238
  msgstr ""
239
 
 
240
  msgid "Fallback username prefix on register"
241
  msgstr ""
242
 
 
243
  msgid "Used when username is invalid or not stored"
244
  msgstr ""
245
 
 
 
 
246
  msgid "Terms and conditions"
247
  msgstr ""
248
 
 
249
  #, php-format
250
  msgid "Override global \"%1$s\""
251
  msgstr ""
252
 
 
 
 
253
  msgid "PRO settings"
254
  msgstr ""
255
 
 
 
256
  msgid "Ask E-mail on registration"
257
  msgstr ""
258
 
 
 
259
  msgid "Never"
260
  msgstr ""
261
 
 
262
  msgid "When email is not provided or empty"
263
  msgstr ""
264
 
 
 
 
265
  msgid "Always"
266
  msgstr ""
267
 
 
 
268
  msgid "Ask Username on registration"
269
  msgstr ""
270
 
 
271
  msgid "Never, generate automatically"
272
  msgstr ""
273
 
 
274
  msgid "When username is empty or invalid"
275
  msgstr ""
276
 
 
277
  msgid "Ask Password on registration"
278
  msgstr ""
279
 
 
 
280
  msgid "Automatically connect the existing account upon registration"
281
  msgstr ""
282
 
 
 
 
 
 
 
 
 
 
283
  msgid "Disabled"
284
  msgstr ""
285
 
 
286
  msgid "Automatic, based on email address"
287
  msgstr ""
288
 
 
289
  msgid "Disable login for the selected roles"
290
  msgstr ""
291
 
 
292
  msgid "Default roles for user who registered with this provider"
293
  msgstr ""
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  msgid "Default"
296
  msgstr ""
297
 
 
298
  msgid "Register"
299
  msgstr ""
300
 
 
301
  msgid "Login"
302
  msgstr ""
303
 
 
304
  msgid "Link"
305
  msgstr ""
306
 
 
307
  msgid "Store in meta key"
308
  msgstr ""
309
 
 
310
  msgid "Shortcode"
311
  msgstr ""
312
 
 
313
  msgid "Important!"
314
  msgstr ""
315
 
 
316
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
317
  msgstr ""
318
 
 
319
  msgid "See the full list of shortcode parameters."
320
  msgstr ""
321
 
 
322
  msgid "Simple link"
323
  msgstr ""
324
 
 
325
  msgid "Click here to login or register"
326
  msgstr ""
327
 
 
328
  msgid "Image button"
329
  msgstr ""
330
 
 
331
  msgid "Image url"
332
  msgstr ""
333
 
 
 
334
  msgid "Debug"
335
  msgstr ""
336
 
 
337
  msgid "Test network connection with providers"
338
  msgstr ""
339
 
 
340
  msgid "You don't have cURL support, please enable it in php.ini!"
341
  msgstr ""
342
 
 
343
  #, php-format
344
  msgid "Test %1$s connection"
345
  msgstr ""
346
 
 
347
  msgid "Fix Oauth Redirect URIs"
348
  msgstr ""
349
 
 
350
  msgid "Every Oauth Redirect URI seems fine"
351
  msgstr ""
352
 
 
353
  msgid "Got it"
354
  msgstr ""
355
 
 
 
356
  msgid "Global Settings"
357
  msgstr ""
358
 
 
359
  msgid "General"
360
  msgstr ""
361
 
 
362
  msgid "Privacy"
363
  msgstr ""
364
 
 
 
 
365
  msgid "Login Form"
366
  msgstr ""
367
 
 
368
  msgid "Comment"
369
  msgstr ""
370
 
 
371
  msgid "Docs"
372
  msgstr ""
373
 
 
374
  msgid "Support"
375
  msgstr ""
376
 
 
 
377
  msgid "Pro Addon"
378
  msgstr ""
379
 
 
380
  msgid "Providers"
381
  msgstr ""
382
 
 
 
 
383
  msgid "Error"
384
  msgstr ""
385
 
 
386
  msgid ""
387
  "You don’t have sufficient permissions to install and activate plugins. "
388
  "Please contact your site’s administrator!"
389
  msgstr ""
390
 
 
 
 
391
  msgid "Activate Pro Addon"
392
  msgstr ""
393
 
 
394
  msgid ""
395
  "Pro Addon is installed but not activated. To be able to use the Pro "
396
  "features, you need to activate it."
397
  msgstr ""
398
 
 
 
399
  msgid "Deactivate Pro Addon"
400
  msgstr ""
401
 
 
 
402
  msgid "Pro Addon is not installed"
403
  msgstr ""
404
 
 
405
  msgid ""
406
  "To access the Pro features, you need to install and activate the Pro Addon."
407
  msgstr ""
408
 
 
409
  #, php-format
410
  msgid "Install %s now"
411
  msgstr ""
412
 
 
 
413
  msgid "Install Pro Addon"
414
  msgstr ""
415
 
 
416
  msgid "Activating..."
417
  msgstr ""
418
 
 
419
  msgid "Not compatible!"
420
  msgstr ""
421
 
 
422
  #, php-format
423
  msgid ""
424
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
425
  "newer."
426
  msgstr ""
427
 
 
428
  msgid "Update Pro Addon"
429
  msgstr ""
430
 
 
431
  msgid "Pro Addon is installed and activated"
432
  msgstr ""
433
 
 
434
  msgid ""
435
  "You installed and activated the Pro Addon. If you don’t want to use it "
436
  "anymore, you can deactivate using the button below."
437
  msgstr ""
438
 
 
439
  msgid "Get Pro Addon to unlock more features"
440
  msgstr ""
441
 
 
442
  #, php-format
443
  msgid ""
444
  "The features below are available in %s Pro Addon. Get it today and tweak the "
445
  "awesome settings."
446
  msgstr ""
447
 
 
448
  msgid ""
449
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
450
  "you can purchase it using the button below."
451
  msgstr ""
452
 
 
453
  msgid "Buy Pro Addon"
454
  msgstr ""
455
 
 
456
  msgid "Authorize Pro Addon"
457
  msgstr ""
458
 
 
459
  msgid "Pro Addon is not activated"
460
  msgstr ""
461
 
 
 
462
  msgid ""
463
  "To be able to use the Pro features, you need to install and activate the "
464
  "Nextend Social Login Pro Addon."
465
  msgstr ""
466
 
 
467
  #, php-format
468
  msgid ""
469
  "%1$s detected that you have providers configured but none of them are "
471
  "one provider enabled!"
472
  msgstr ""
473
 
 
474
  msgid "Not Available"
475
  msgstr ""
476
 
 
477
  msgid "Not Configured"
478
  msgstr ""
479
 
 
480
  msgid "Not Verified"
481
  msgstr ""
482
 
 
 
 
 
 
 
 
 
 
 
483
  msgid "Enabled"
484
  msgstr ""
485
 
 
486
  msgid "Upgrade Now"
487
  msgstr ""
488
 
 
 
489
  msgid "Verify Settings"
490
  msgstr ""
491
 
 
 
492
  msgid "Enable"
493
  msgstr ""
494
 
 
 
495
  msgid "Disable"
496
  msgstr ""
497
 
 
498
  msgid "Stay Updated"
499
  msgstr ""
500
 
 
501
  msgid ""
502
  "Receive info on the latest plugin updates and social provider related "
503
  "changes."
504
  msgstr ""
505
 
 
506
  msgid "Enter your email address"
507
  msgstr ""
508
 
 
509
  msgid "Subscribe"
510
  msgstr ""
511
 
 
512
  msgid "Saving..."
513
  msgstr ""
514
 
 
515
  msgid "Saving failed"
516
  msgstr ""
517
 
 
518
  msgid "Order Saved"
519
  msgstr ""
520
 
 
521
  msgid "Successfully subscribed!"
522
  msgstr ""
523
 
 
524
  msgid ""
525
  "We'll be bringing you all the latest news and updates about Social Login - "
526
  "right to your inbox."
527
  msgstr ""
528
 
 
529
  msgid "The entered email address is invalid!"
530
  msgstr ""
531
 
 
532
  msgid "Rate your experience!"
533
  msgstr ""
534
 
 
535
  msgid "Hated it"
536
  msgstr ""
537
 
 
538
  msgid "Disliked it"
539
  msgstr ""
540
 
 
541
  msgid "It was ok"
542
  msgstr ""
543
 
 
544
  msgid "Liked it"
545
  msgstr ""
546
 
 
547
  msgid "Loved it"
548
  msgstr ""
549
 
 
550
  msgid "Please Leave a Review"
551
  msgstr ""
552
 
 
553
  msgid ""
554
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
555
  "please leave us a review. It will be a tremendous help for us!"
556
  msgstr ""
557
 
 
558
  msgid "Ok, you deserve it"
559
  msgstr ""
560
 
 
 
 
561
  msgid "Register form"
562
  msgstr ""
563
 
 
564
  msgid "No Connect button"
565
  msgstr ""
566
 
 
567
  msgid "Connect button before register"
568
  msgstr ""
569
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
570
  msgid "Action:"
571
  msgstr ""
572
 
 
573
  msgid "Connect button before account details"
574
  msgstr ""
575
 
 
576
  msgid "Connect button after register"
577
  msgstr ""
578
 
 
579
  msgid "Register button style"
580
  msgstr ""
581
 
 
 
 
 
 
 
 
 
 
 
 
 
582
  msgid "Fullwidth"
583
  msgstr ""
584
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
  msgid "Icon"
586
  msgstr ""
587
 
 
 
 
 
588
  msgid "Register layout"
589
  msgstr ""
590
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
  msgid "Below"
592
  msgstr ""
593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
594
  msgid "Below with separator"
595
  msgstr ""
596
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
597
  msgid "Above"
598
  msgstr ""
599
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
600
  msgid "Above with separator"
601
  msgstr ""
602
 
 
603
  msgid "Sidebar Login form"
604
  msgstr ""
605
 
 
 
 
 
 
 
 
606
  msgid "Hide login buttons"
607
  msgstr ""
608
 
 
 
 
 
 
 
 
 
609
  msgid "Show login buttons"
610
  msgstr ""
611
 
 
612
  msgid ""
613
  "Some themes that use BuddyPress, display the social buttons twice in the "
614
  "same login form. This option can disable the one for: "
615
  "<b>bp_sidebar_login_form action</b>. "
616
  msgstr ""
617
 
 
 
 
 
618
  msgid "Login form"
619
  msgstr ""
620
 
 
621
  msgid "Login button style"
622
  msgstr ""
623
 
 
 
 
 
 
 
624
  msgid "Login layout"
625
  msgstr ""
626
 
 
 
 
 
 
 
 
627
  msgid "Button alignment"
628
  msgstr ""
629
 
 
 
 
 
 
 
 
 
 
630
  msgid "Left"
631
  msgstr ""
632
 
 
 
 
 
 
 
 
 
 
633
  msgid "Center"
634
  msgstr ""
635
 
 
 
 
 
 
 
 
 
 
636
  msgid "Right"
637
  msgstr ""
638
 
 
639
  msgid "Login button"
640
  msgstr ""
641
 
 
 
642
  msgid "Show"
643
  msgstr ""
644
 
 
645
  msgid "Hide"
646
  msgstr ""
647
 
 
648
  #, php-format
649
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
650
  msgstr ""
651
 
 
652
  msgid "Discussion"
653
  msgstr ""
654
 
 
655
  msgid "Users must be registered and logged in to comment"
656
  msgstr ""
657
 
 
 
658
  msgid "Button style"
659
  msgstr ""
660
 
661
+ msgid "No Connect button in Login form"
662
+ msgstr ""
663
+
664
+ msgid "Connect button on"
665
+ msgstr ""
666
+
667
+ msgid "Login form button style"
668
+ msgstr ""
669
+
670
+ msgid "No Connect button in Register form"
671
+ msgstr ""
672
+
673
+ msgid "Register form button style"
674
+ msgstr ""
675
+
676
  msgid "Target window"
677
  msgstr ""
678
 
 
679
  msgid "Prefer popup"
680
  msgstr ""
681
 
 
682
  msgid "Prefer new tab"
683
  msgstr ""
684
 
 
685
  msgid "Prefer same window"
686
  msgstr ""
687
 
 
688
  msgid "Registration notification sent to"
689
  msgstr ""
690
 
 
 
691
  msgid "WordPress default"
692
  msgstr ""
693
 
 
694
  msgid "Nobody"
695
  msgstr ""
696
 
 
697
  msgid "Admin"
698
  msgstr ""
699
 
 
700
  msgid "User and Admin"
701
  msgstr ""
702
 
 
703
  msgid "Unlink"
704
  msgstr ""
705
 
 
706
  msgid "Allow Social account unlink"
707
  msgstr ""
708
 
 
709
  msgid "Show linked providers"
710
  msgstr ""
711
 
 
712
  #, php-format
713
  msgid "Providers linked to the account will appear in the %1$s."
714
  msgstr ""
715
 
 
716
  msgid "Users table"
717
  msgstr ""
718
 
 
719
  msgid "Disable Admin bar for roles"
720
  msgstr ""
721
 
 
722
  msgid "Debug mode"
723
  msgstr ""
724
 
 
725
  msgid "Page for register flow"
726
  msgstr ""
727
 
 
 
728
  msgid "None"
729
  msgstr ""
730
 
 
731
  msgid ""
732
  "This setting is used when you request additional data from the users (such "
733
  "as email address) and to display the Terms and conditions."
734
  msgstr ""
735
 
 
736
  #, php-format
737
  msgid ""
738
  "%2$s First create a new page and insert the following shortcode: %1$s then "
739
  "select this page above"
740
  msgstr ""
741
 
 
 
742
  msgid "Usage:"
743
  msgstr ""
744
 
 
 
745
  #, php-format
746
  msgid ""
747
  "%1$s You won't be able to reach the selected page unless a social login/"
748
  "registration happens."
749
  msgstr ""
750
 
 
 
751
  msgid "Important:"
752
  msgstr ""
753
 
 
754
  msgid "OAuth redirect uri proxy page"
755
  msgstr ""
756
 
 
757
  msgid ""
758
  "You can use this setting when wp-login.php page is not available to handle "
759
  "the OAuth flow."
760
  msgstr ""
761
 
 
762
  #, php-format
763
  msgid "%1$s First create a new page then select this page above."
764
  msgstr ""
765
 
 
766
  msgid "Prevent external redirect overrides"
767
  msgstr ""
768
 
 
769
  msgid "Disable external redirects"
770
  msgstr ""
771
 
 
772
  msgid "Default redirect url"
773
  msgstr ""
774
 
 
 
775
  msgid "for Login"
776
  msgstr ""
777
 
 
 
778
  msgid "for Register"
779
  msgstr ""
780
 
 
781
  msgid "Fixed redirect url"
782
  msgstr ""
783
 
 
784
  msgid "Blacklisted redirects"
785
  msgstr ""
786
 
 
787
  msgid "If you want to blacklist redirect url params. One pattern per line."
788
  msgstr ""
789
 
 
790
  msgid "Support login restrictions"
791
  msgstr ""
792
 
 
793
  #, php-format
794
  msgid "Please visit to our %1$s to check what plugins are supported!"
795
  msgstr ""
796
 
 
797
  msgid "Display avatars in \"All media items\""
798
  msgstr ""
799
 
 
800
  msgid ""
801
  "Enabling this option can speed up loading images in Media Library - Grid "
802
  "view!"
803
  msgstr ""
804
 
 
805
  msgid "Membership"
806
  msgstr ""
807
 
 
808
  msgid "Allow registration with Social login."
809
  msgstr ""
810
 
 
811
  msgid "Custom label for register buttons"
812
  msgstr ""
813
 
 
814
  #, php-format
815
  msgid ""
816
  "Set a custom label for the social buttons in registration forms and for "
818
  "can be modified at the Buttons tab of each provider."
819
  msgstr ""
820
 
 
 
 
 
 
 
 
 
821
  msgid "Below and floating"
822
  msgstr ""
823
 
 
824
  msgid "Embedded Login form button style"
825
  msgstr ""
826
 
 
827
  msgid "Embedded Login layout"
828
  msgstr ""
829
 
 
830
  msgid "Embedded login form button alignment"
831
  msgstr ""
832
 
 
 
833
  msgid "Registration Form"
834
  msgstr ""
835
 
 
836
  msgid "Embedded login form"
837
  msgstr ""
838
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
839
  msgid "Sign Up form"
840
  msgstr ""
841
 
 
842
  msgid "No Connect button in Sign Up form"
843
  msgstr ""
844
 
 
845
  msgid "Sign Up form button style"
846
  msgstr ""
847
 
 
848
  msgid "Sign Up layout"
849
  msgstr ""
850
 
 
 
 
851
  msgid "Account details"
852
  msgstr ""
853
 
 
 
854
  msgid "No link buttons"
855
  msgstr ""
856
 
 
 
857
  msgid "Link buttons after account details"
858
  msgstr ""
859
 
 
 
860
  msgid ""
861
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
862
  "\"_blank\">Privacy Policy</a>"
863
  msgstr ""
864
 
 
865
  msgid "Store"
866
  msgstr ""
867
 
 
868
  msgid "First and last name"
869
  msgstr ""
870
 
 
871
  msgid "When not enabled, username will be randomly generated."
872
  msgstr ""
873
 
 
 
874
  msgid "Email"
875
  msgstr ""
876
 
 
877
  msgid "When not enabled, email will be empty."
878
  msgstr ""
879
 
 
 
880
  msgid "Avatar"
881
  msgstr ""
882
 
 
 
883
  msgid "Access token"
884
  msgstr ""
885
 
 
 
 
 
 
 
 
 
 
 
886
  msgid "Register Form"
887
  msgstr ""
888
 
 
889
  msgid "No Connect button in login form"
890
  msgstr ""
891
 
 
892
  msgid "No Connect button in register form"
893
  msgstr ""
894
 
 
895
  msgid "Billing form"
896
  msgstr ""
897
 
 
898
  msgid "No Connect button in billing form"
899
  msgstr ""
900
 
 
901
  msgid "Billing layout"
902
  msgstr ""
903
 
 
904
  msgid "Default with separator"
905
  msgstr ""
906
 
 
907
  msgid "Checkout for WooCommerce"
908
  msgstr ""
909
 
 
910
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
911
  msgstr ""
912
 
 
913
  msgid "Checkout for WooCommerce layout"
914
  msgstr ""
915
 
 
916
  msgid "No Connect buttons in account details form"
917
  msgstr ""
918
 
 
 
919
  msgid "Link buttons on"
920
  msgstr ""
921
 
 
922
  msgid "Email template for registration"
923
  msgstr ""
924
 
 
925
  msgid "WordPress default notification"
926
  msgstr ""
927
 
 
928
  msgid "WooCommerce registration notification"
929
  msgstr ""
930
 
 
931
  #, php-format
932
  msgid ""
933
  "Defines whether the registration with %1$s will send the same registration "
934
  "notification that %2$s does, instead of the %3$s default one."
935
  msgstr ""
936
 
 
937
  #, php-format
938
  msgid "Network connection successful: %1$s"
939
  msgstr ""
940
 
 
941
  #, php-format
942
  msgid "Network connection failed: %1$s"
943
  msgstr ""
944
 
 
945
  msgid ""
946
  "Please contact with your hosting provider to resolve the network issue "
947
  "between your server and the provider."
948
  msgstr ""
949
 
 
950
  msgid "Manage Avatar"
951
  msgstr ""
952
 
 
953
  #, php-format
954
  msgid "Avatar <span class=\"count\">(%s)</span>"
955
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
956
  msgstr[0] ""
957
  msgstr[1] ""
958
 
 
959
  msgid "Invalid URL Provided."
960
  msgstr ""
961
 
 
962
  msgid "Could not create Temporary file."
963
  msgstr ""
964
 
 
965
  #, php-format
966
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
967
  msgstr ""
968
 
 
969
  msgid "https://wordpress.org/"
970
  msgstr ""
971
 
 
972
  msgid "Powered by WordPress"
973
  msgstr ""
974
 
 
975
  #, php-format
976
  msgctxt "site"
977
  msgid "&larr; Back to %s"
978
  msgstr ""
979
 
 
980
  msgid "Your configuration needs to be verified"
981
  msgstr ""
982
 
 
983
  msgid ""
984
  "Before you can start letting your users register with your app it needs to "
985
  "be tested. This test makes sure that no users will have troubles with the "
988
  "are fine."
989
  msgstr ""
990
 
 
991
  msgid "Please save your changes to verify settings."
992
  msgstr ""
993
 
 
994
  msgid "Works Fine"
995
  msgstr ""
996
 
 
997
  #, php-format
998
  msgid ""
999
  "This provider is currently disabled, which means that users can’t register "
1000
  "or login via their %s account."
1001
  msgstr ""
1002
 
 
1003
  #, php-format
1004
  msgid ""
1005
  "This provider works fine, but you can test it again. If you don’t want to "
1006
  "let users register or login with %s anymore you can disable it."
1007
  msgstr ""
1008
 
 
1009
  #, php-format
1010
  msgid ""
1011
  "This provider is currently enabled, which means that users can register or "
1012
  "login via their %s account."
1013
  msgstr ""
1014
 
 
1015
  msgid "Verify Settings Again"
1016
  msgstr ""
1017
 
 
1018
  msgid "Please save your changes before verifying settings."
1019
  msgstr ""
1020
 
 
 
 
1021
  msgid "Authentication successful"
1022
  msgstr ""
1023
 
 
 
 
1024
  msgid "Authentication error"
1025
  msgstr ""
1026
 
 
1027
  msgid "Unlink successful."
1028
  msgstr ""
1029
 
 
1030
  msgid "Unlink is not allowed!"
1031
  msgstr ""
1032
 
 
 
1033
  msgid "The test was successful"
1034
  msgstr ""
1035
 
 
1036
  msgid "Authentication failed"
1037
  msgstr ""
1038
 
 
1039
  msgid "Identifier"
1040
  msgstr ""
1041
 
 
1042
  msgid "Profile Picture"
1043
  msgstr ""
1044
 
 
1045
  #, php-format
1046
  msgid ""
1047
  "Your %1$s account is successfully linked with your account. Now you can sign "
1048
  "in with %2$s easily."
1049
  msgstr ""
1050
 
 
1051
  #, php-format
1052
  msgid ""
1053
  "You have already linked a(n) %s account. Please unlink the current and then "
1054
  "you can link another %s account."
1055
  msgstr ""
1056
 
 
1057
  #, php-format
1058
  msgid "This %s account is already linked to another user."
1059
  msgstr ""
1060
 
 
1061
  msgid "User registration is currently not allowed."
1062
  msgstr ""
1063
 
 
1064
  #, php-format
1065
  msgid ""
1066
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
1068
  "linked %1$s account or log in with your password!"
1069
  msgstr ""
1070
 
 
1071
  msgid "Register For This Site"
1072
  msgstr ""
1073
 
 
1074
  msgctxt "Register form submit button label"
1075
  msgid "Register"
1076
  msgstr ""
1077
 
 
1078
  #, php-format
1079
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1080
  msgstr ""
1081
 
 
1082
  #, php-format
1083
  msgid ""
1084
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1085
  "version, the plugin is currently NOT ACTIVE."
1086
  msgstr ""
1087
 
 
 
1088
  #, php-format
1089
  msgid "Please update %1$s to version %2$s or newer."
1090
  msgstr ""
1091
 
 
 
1092
  msgid "Update now!"
1093
  msgstr ""
1094
 
 
 
1095
  msgid "Social Login"
1096
  msgstr ""
1097
 
 
1098
  msgid "Social Accounts"
1099
  msgstr ""
1100
 
 
 
 
1101
  msgid "Button skin"
1102
  msgstr ""
1103
 
 
 
 
1104
  msgid "Dark"
1105
  msgstr ""
1106
 
 
 
 
1107
  msgid "Light"
1108
  msgstr ""
1109
 
 
1110
  msgid "Black"
1111
  msgstr ""
1112
 
 
1113
  msgid "White"
1114
  msgstr ""
1115
 
 
 
 
 
 
1116
  #, php-format
1117
  msgid "Navigate to <b>%s</b>"
1118
  msgstr ""
1119
 
 
 
 
 
 
 
 
 
 
 
1120
  #, php-format
1121
  msgid "Log in with your %s credentials if you are not logged in"
1122
  msgstr ""
1123
 
 
1124
  #, php-format
1125
  msgid "Click on the App with App ID: <b>%s</b>"
1126
  msgstr ""
1127
 
 
1128
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1129
  msgstr ""
1130
 
 
 
1131
  msgid ""
1132
  "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field:"
1133
  msgstr ""
1134
 
 
1135
  msgid "Click on \"<b>Save Changes</b>\""
1136
  msgstr ""
1137
 
 
 
 
 
1138
  #, php-format
1139
  msgid ""
1140
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1141
  "order to allow login with %1$s."
1142
  msgstr ""
1143
 
 
 
 
 
1144
  msgid "How to get SSL for my WordPress site?"
1145
  msgstr ""
1146
 
 
 
 
 
 
 
1147
  #, php-format
1148
  msgid ""
1149
  "To allow your visitors to log in with their %1$s account, first you must "
1153
  "%1$s App."
1154
  msgstr ""
1155
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1156
  #, php-format
1157
  msgctxt "App creation"
1158
  msgid "Create %s"
1159
  msgstr ""
1160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1161
  #, php-format
1162
  msgid "Navigate to %s"
1163
  msgstr ""
1164
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  #, php-format
1166
  msgid "Log in with your %s credentials if you are not logged in."
1167
  msgstr ""
1168
 
 
1169
  msgid ""
1170
  "Click on the \"<b>Create App</b>\" button and in the Popup choose the "
1171
  "\"<b>Consumer</b>\" App type!"
1172
  msgstr ""
1173
 
 
1174
  msgid ""
1175
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1176
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1177
  "finally verify your account."
1178
  msgstr ""
1179
 
 
1180
  #, php-format
1181
  msgid ""
1182
  "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1183
  "specified \"App Display Name\" will appear on your %s!"
1184
  msgstr ""
1185
 
 
1186
  msgid ""
1187
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1188
  "if you have any."
1189
  msgstr ""
1190
 
 
1191
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
1192
  msgstr ""
1193
 
 
1194
  #, php-format
1195
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
1196
  msgstr ""
1197
 
 
1198
  #, php-format
1199
  msgid ""
1200
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1201
  "field: <b>%s</b>"
1202
  msgstr ""
1203
 
 
1204
  msgid "Press “<b>Save</b>”."
1205
  msgstr ""
1206
 
 
1207
  #, php-format
1208
  msgid ""
1209
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1210
  "%2$s</b> - <b>%3$s</b>”"
1211
  msgstr ""
1212
 
 
1213
  msgid "Click on “<b>Save Changes</b>”."
1214
  msgstr ""
1215
 
 
 
1216
  #, php-format
1217
  msgid ""
1218
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1219
  "%2$s</b>”."
1220
  msgstr ""
1221
 
 
1222
  #, php-format
1223
  msgid ""
1224
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1225
  "b>"
1226
  msgstr ""
1227
 
 
1228
  msgid ""
1229
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1230
  "available and easily accessible privacy policy that explains what data you "
1231
  "are collecting and how you will use that data."
1232
  msgstr ""
1233
 
 
1234
  msgid ""
1235
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1236
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1237
  "instructions on how users can delete their accounts on your site."
1238
  msgstr ""
1239
 
 
1240
  msgid ""
1241
  "To comply with GDPR, you should already offer possibility to delete accounts "
1242
  "on your site, either by the user or by the admin:"
1243
  msgstr ""
1244
 
 
1245
  msgid ""
1246
  "<u>If each user has an option to delete the account</u>: the URL should "
1247
  "point to a guide showing the way users can delete their accounts."
1248
  msgstr ""
1249
 
 
1250
  msgid ""
1251
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
1252
  "section - usually in the Privacy Policy - with the contact details, where "
1254
  "point to this section of the document."
1255
  msgstr ""
1256
 
 
1257
  msgid ""
1258
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1259
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1260
  "Changes</b>\"."
1261
  msgstr ""
1262
 
 
1263
  msgid ""
1264
  "Your application is currently private, which means that only you can log in "
1265
  "with it. In the top bar switch the \"<b>App Mode</b>\" from "
1266
  "\"<b>Development</b>\" to \"<b>Live</b>\"."
1267
  msgstr ""
1268
 
 
1269
  #, php-format
1270
  msgid ""
1271
  "By default, your application only has Standard access for the permissions, "
1275
  "should click on the <strong>%6$s</strong> buttons next to them. "
1276
  msgstr ""
1277
 
 
1278
  #, php-format
1279
  msgid ""
1280
  "At the top of the page you can find your \"<b>%1$s</b>\" and you can see "
1282
  "needed in plugin’s settings."
1283
  msgstr ""
1284
 
 
1285
  #, php-format
1286
  msgid ""
1287
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1292
  "the Facebook App, then please check our %2$sdocumentation%3$s."
1293
  msgstr ""
1294
 
 
1295
  msgid "Maintaining the Facebook App:"
1296
  msgstr ""
1297
 
 
1298
  #, php-format
1299
  msgid ""
1300
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1305
  "that we need."
1306
  msgstr ""
1307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1308
  #, php-format
1309
  msgid "I am done setting up my %s"
1310
  msgstr ""
1311
 
 
 
1312
  msgid "App ID"
1313
  msgstr ""
1314
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1315
  msgid "Required"
1316
  msgstr ""
1317
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1318
  #, php-format
1319
  msgid ""
1320
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1321
  "\">Getting Started</a>"
1322
  msgstr ""
1323
 
 
1324
  msgid "App Secret"
1325
  msgstr ""
1326
 
 
 
1327
  #, php-format
1328
  msgid ""
1329
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
1330
  "longer be able to login with %1$s."
1331
  msgstr ""
1332
 
 
 
1333
  msgid "Find out why?"
1334
  msgstr ""
1335
 
 
1336
  msgid "Continue with <b>Facebook</b>"
1337
  msgstr ""
1338
 
 
1339
  msgid "Sign up with <b>Facebook</b>"
1340
  msgstr ""
1341
 
 
1342
  msgid "Link account with <b>Facebook</b>"
1343
  msgstr ""
1344
 
 
1345
  msgid "Unlink account from <b>Facebook</b>"
1346
  msgstr ""
1347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1348
  #, php-format
1349
  msgid ""
1350
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1351
  msgstr ""
1352
 
 
 
1353
  #, php-format
1354
  msgid "Required scope: %1$s"
1355
  msgstr ""
1356
 
 
1357
  msgid "Uniform - Legacy"
1358
  msgstr ""
1359
 
 
1360
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
1361
  msgstr ""
1362
 
 
1363
  #, php-format
1364
  msgid ""
1365
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
1366
  "%s</b>"
1367
  msgstr ""
1368
 
 
 
1369
  #, php-format
1370
  msgid ""
1371
  "Under the \"<b>%1$s</b>\" section click \"<b>%2$s</b>\" and add the "
1372
  "following URL:"
1373
  msgstr ""
1374
 
 
 
 
 
1375
  msgid "Click on \"<b>Save</b>\""
1376
  msgstr ""
1377
 
 
1378
  #, php-format
1379
  msgid ""
1380
  "If you don't have a project yet, you'll need to create one. You can do this "
1383
  "project instead, which will bring up a modal and click <b>\"%2$s\"</b>. )"
1384
  msgstr ""
1385
 
 
1386
  #, php-format
1387
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
1388
  msgstr ""
1389
 
 
1390
  msgid ""
1391
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
1392
  "have already had a Project, then make sure you select the created project in "
1393
  "the top bar! )"
1394
  msgstr ""
1395
 
 
1396
  #, php-format
1397
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
1398
  msgstr ""
1399
 
 
1400
  #, php-format
1401
  msgid ""
1402
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
1404
  "account, then pick the \"%4$s\" option!"
1405
  msgstr ""
1406
 
 
1407
  #, php-format
1408
  msgid ""
1409
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
1411
  "%1$s!"
1412
  msgstr ""
1413
 
 
1414
  #, php-format
1415
  msgid ""
1416
  "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
1417
  "the name of the app asking for consent."
1418
  msgstr ""
1419
 
 
1420
  #, php-format
1421
  msgid ""
1422
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
1423
  "contact you with questions about their consent."
1424
  msgstr ""
1425
 
 
1426
  #, php-format
1427
  msgid ""
1428
  "Under the \"<b>%1$s</b>\" section press the \"<b>%2$s</b>\" button and "
1429
  "enter your domain name, probably: <b>%3$s</b> without subdomains!"
1430
  msgstr ""
1431
 
 
1432
  #, php-format
1433
  msgid ""
1434
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
1435
  "notify you about any changes to your project."
1436
  msgstr ""
1437
 
 
1438
  #, php-format
1439
  msgid ""
1440
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
1441
  "too!"
1442
  msgstr ""
1443
 
 
1444
  #, php-format
1445
  msgid ""
1446
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
1447
  "\"<b>%2$s</b>\" button in the top bar."
1448
  msgstr ""
1449
 
 
1450
  #, php-format
1451
  msgid "Choose the \"<b>%1$s</b>\" option."
1452
  msgstr ""
1453
 
 
1454
  #, php-format
1455
  msgid "Select the \"<b>%1$s</b>\" under Application type."
1456
  msgstr ""
1457
 
 
1458
  #, php-format
1459
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
1460
  msgstr ""
1461
 
 
1462
  #, php-format
1463
  msgid "Click on the \"<b>%1$s</b>\" button"
1464
  msgstr ""
1465
 
 
1466
  #, php-format
1467
  msgid ""
1468
  "A modal should pop up with your credentials. If that doesn't happen, go to "
1471
  "from there."
1472
  msgstr ""
1473
 
 
 
 
 
 
 
 
 
1474
  msgid "Client ID"
1475
  msgstr ""
1476
 
 
 
 
 
 
 
 
1477
  msgid "Client Secret"
1478
  msgstr ""
1479
 
 
1480
  msgid "Select account on each login"
1481
  msgstr ""
1482
 
 
1483
  msgid ""
1484
  "Disable, when you don't want to see the account select prompt on each login."
1485
  msgstr ""
1486
 
 
1487
  msgid "Continue with <b>Google</b>"
1488
  msgstr ""
1489
 
 
1490
  msgid "Sign up with <b>Google</b>"
1491
  msgstr ""
1492
 
 
1493
  msgid "Link account with <b>Google</b>"
1494
  msgstr ""
1495
 
 
1496
  msgid "Unlink account from <b>Google</b>"
1497
  msgstr ""
1498
 
 
1499
  #, php-format
1500
  msgid "Required API: %1$s"
1501
  msgstr ""
1502
 
 
1503
  msgid ""
1504
  "Find your App and click on the <b>App settings</b> icon. (The one that looks "
1505
  "like a gear.)"
1506
  msgstr ""
1507
 
 
1508
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1509
  msgstr ""
1510
 
 
 
1511
  #, php-format
1512
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1513
  msgstr ""
1514
 
 
1515
  #, php-format
1516
  msgid ""
1517
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1518
  msgstr ""
1519
 
 
1520
  msgid ""
1521
  "If you don't have a developer account yet, please apply one by filling all "
1522
  "the required details! This is required for the next steps!"
1523
  msgstr ""
1524
 
 
1525
  #, php-format
1526
  msgid ""
1527
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
1528
  "aren't already there!"
1529
  msgstr ""
1530
 
 
1531
  #, php-format
1532
  msgid "Click on \"<b>%s</b>\"!"
1533
  msgstr ""
1534
 
 
1535
  msgid ""
1536
  "Name your project, and go through the basic setup. You’ll need to select "
1537
  "your use case, give a description and enter a name for the App as well."
1538
  msgstr ""
1539
 
 
1540
  #, php-format
1541
  msgid "Click \"<b>%s</b>\"!"
1542
  msgstr ""
1543
 
 
1544
  #, php-format
1545
  msgid ""
1546
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
1548
  "press \"<b>Save Changes</b>\"."
1549
  msgstr ""
1550
 
 
1551
  #, php-format
1552
  msgid ""
1553
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
1554
  "\" section click on the name of your App."
1555
  msgstr ""
1556
 
 
1557
  #, php-format
1558
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1559
  msgstr ""
1560
 
 
1561
  #, php-format
1562
  msgid "Switch on the \"<b>%s</b>\" option."
1563
  msgstr ""
1564
 
 
1565
  #, php-format
1566
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
1567
  msgstr ""
1568
 
 
1569
  #, php-format
1570
  msgid ""
1571
  "If you want to get the email address as well, then don’t forget to enable "
1573
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1574
  msgstr ""
1575
 
 
1576
  #, php-format
1577
  msgid "Click on \"<b>%s</b>\"."
1578
  msgstr ""
1579
 
 
1580
  #, php-format
1581
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
1582
  msgstr ""
1583
 
 
 
1584
  msgid "API Key"
1585
  msgstr ""
1586
 
 
1587
  msgid "API secret key"
1588
  msgstr ""
1589
 
 
1590
  msgid "Profile image size"
1591
  msgstr ""
1592
 
 
1593
  msgid "Original"
1594
  msgstr ""
1595
 
 
1596
  msgid "Continue with <b>Twitter</b>"
1597
  msgstr ""
1598
 
 
1599
  msgid "Sign up with <b>Twitter</b>"
1600
  msgstr ""
1601
 
 
1602
  msgid "Link account with <b>Twitter</b>"
1603
  msgstr ""
1604
 
 
1605
  msgid "Unlink account from <b>Twitter</b>"
1606
  msgstr ""
1607
 
 
1608
  #, php-format
1609
  msgid "%s Buttons"
1610
  msgstr ""
1611
 
 
1612
  msgid "Title:"
1613
  msgstr ""
1614
 
 
1615
  msgid "Button style:"
1616
  msgstr ""
1617
 
 
1618
  msgid "Button align:"
1619
  msgstr ""
1620
 
 
1621
  msgid "Show link buttons"
1622
  msgstr ""
1623
 
 
1624
  msgid "Show unlink buttons"
1625
  msgstr ""
1626
 
 
1627
  msgid "Social login is not allowed with this role!"
1628
  msgstr ""
1629
 
 
1630
  msgid "Please enter a username."
1631
  msgstr ""
1632
 
 
1633
  msgid ""
1634
  "This username is invalid because it uses illegal characters. Please enter a "
1635
  "valid username."
1636
  msgstr ""
1637
 
 
1638
  msgid ""
1639
  "<strong>Error</strong>: This username is already registered. Please choose "
1640
  "another one."
1641
  msgstr ""
1642
 
 
1643
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
1644
  msgstr ""
1645
 
 
1646
  msgid "Username"
1647
  msgstr ""
1648
 
 
1649
  msgid "<strong>Error</strong>: Please enter an email address."
1650
  msgstr ""
1651
 
 
1652
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
1653
  msgstr ""
1654
 
 
1655
  msgid ""
1656
  "<strong>Error</strong>: This email is already registered. Please choose "
1657
  "another one."
1658
  msgstr ""
1659
 
 
1660
  msgid "Registration confirmation will be emailed to you."
1661
  msgstr ""
1662
 
 
1663
  msgid "<strong>Error</strong>: Please enter a password."
1664
  msgstr ""
1665
 
 
1666
  msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
1667
  msgstr ""
1668
 
 
1669
  msgid ""
1670
  "<strong>Error</strong>: Passwords don&#8217;t match. Please enter the same "
1671
  "password in both password fields."
1672
  msgstr ""
1673
 
 
1674
  msgid "Password"
1675
  msgstr ""
1676
 
 
1677
  msgid "Strength indicator"
1678
  msgstr ""
1679
 
 
1680
  msgid "Confirm use of weak password"
1681
  msgstr ""
1682
 
 
1683
  msgid "Confirm password"
1684
  msgstr ""
1685
 
 
1686
  #, php-format
1687
  msgid ""
1688
  "This email is already registered, please login in to your account to link "
1689
  "with %1$s."
1690
  msgstr ""
1691
 
 
1692
  #, php-format
1693
  msgid "Please install and activate %1$s to use the %2$s"
1694
  msgstr ""
1695
 
 
1696
  msgid "Network Activate"
1697
  msgstr ""
1698
 
 
1699
  msgid "Install now!"
1700
  msgstr ""
1701
 
 
1702
  msgid "Social Providers"
1703
  msgstr ""
1704
 
 
1705
  #, php-format
1706
  msgid ""
1707
  "The Facebook Sync data needs an approved %1$s and your App must use the "
1708
  "latest %2$s version!"
1709
  msgstr ""
1710
 
 
1711
  #, php-format
1712
  msgid ""
1713
  "Most of these information can only be retrieved, when the field is marked as "
1714
  "Public on the user's %s page!"
1715
  msgstr ""
1716
 
 
 
1717
  #, php-format
1718
  msgid "Visit %s"
1719
  msgstr ""
1720
 
 
 
1721
  msgid ""
1722
  "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
1723
  "select \"<b>Web Settings</b>\" option."
1724
  msgstr ""
1725
 
 
 
1726
  msgid "Click \"<b>Edit</b>\"."
1727
  msgstr ""
1728
 
 
 
1729
  msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
1730
  msgstr ""
1731
 
 
 
 
 
 
 
 
1732
  #, php-format
1733
  msgid ""
1734
  "To allow your visitors to log in with their %1$s account, first you must "
1738
  "%1$s App."
1739
  msgstr ""
1740
 
 
1741
  msgid ""
1742
  "If you don't have a Security Profile yet, you'll need to create one. You can "
1743
  "do this by clicking on the orange \"<b>Create a New Security Profile</b>\" "
1744
  "button on the left side."
1745
  msgstr ""
1746
 
 
1747
  msgid ""
1748
  "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
1749
  "\" and \"<b>Consent Privacy Notice URL</b>\"."
1750
  msgstr ""
1751
 
 
1752
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
1753
  msgstr ""
1754
 
 
1755
  #, php-format
1756
  msgid ""
1757
  "Fill \"<b>Allowed Origins</b>\" with the url of your homepage, probably: <b>"
1758
  "%s</b>"
1759
  msgstr ""
1760
 
 
 
1761
  msgid "When all fields are filled, click \"<b>Save</b>\"."
1762
  msgstr ""
1763
 
 
1764
  msgid ""
1765
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" at the "
1766
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
1767
  msgstr ""
1768
 
 
1769
  msgid "Continue with <b>Amazon</b>"
1770
  msgstr ""
1771
 
 
1772
  msgid "Sign up with <b>Amazon</b>"
1773
  msgstr ""
1774
 
 
1775
  msgid "Link account with <b>Amazon</b>"
1776
  msgstr ""
1777
 
 
1778
  msgid "Unlink account from <b>Amazon</b>"
1779
  msgstr ""
1780
 
 
1781
  msgid "Click on the name of your service."
1782
  msgstr ""
1783
 
 
1784
  msgid ""
1785
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
1786
  msgstr ""
1787
 
 
 
1788
  #, php-format
1789
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
1790
  msgstr ""
1791
 
 
 
1792
  #, php-format
1793
  msgid ""
1794
  "Fill the \"<b>Domains and Subdomains</b>\" field with your domain name "
1795
  "probably: <b>%s</b>"
1796
  msgstr ""
1797
 
 
 
1798
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
1799
  msgstr ""
1800
 
 
1801
  msgid ""
1802
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
1803
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
1804
  msgstr ""
1805
 
 
1806
  #, php-format
1807
  msgid ""
1808
  "To allow your visitors to log in with their %1$s account, first you must "
1812
  "\" according to your %1$s App."
1813
  msgstr ""
1814
 
 
1815
  msgid ""
1816
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
1817
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
1819
  "App!"
1820
  msgstr ""
1821
 
 
1822
  msgid ""
1823
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
1824
  "b>!"
1825
  msgstr ""
1826
 
 
1827
  msgid "1.) Create the associated App:"
1828
  msgstr ""
1829
 
 
1830
  #, php-format
1831
  msgid ""
1832
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
1833
  "option and click the \"Continue\" button."
1834
  msgstr ""
1835
 
 
1836
  #, php-format
1837
  msgid ""
1838
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
1839
  "\"<b>Continue</b>\" button."
1840
  msgstr ""
1841
 
 
1842
  msgid "Enter a \"<b>Description</b>\""
1843
  msgstr ""
1844
 
 
1845
  #, php-format
1846
  msgid ""
1847
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
1849
  "app at its end: <b>%s.nslapp</b>"
1850
  msgstr ""
1851
 
 
1852
  msgid ""
1853
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
1854
  "b>\" option."
1855
  msgstr ""
1856
 
 
1857
  msgid ""
1858
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
1859
  "\"<b>Register</b>\" button."
1860
  msgstr ""
1861
 
 
1862
  msgid "2.) Create the Key:"
1863
  msgstr ""
1864
 
 
1865
  #, php-format
1866
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
1867
  msgstr ""
1868
 
 
1869
  msgid "Enter a name in the <b>Key Name</b> field."
1870
  msgstr ""
1871
 
 
1872
  msgid ""
1873
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
1874
  "b>\"."
1875
  msgstr ""
1876
 
 
1877
  msgid ""
1878
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
1879
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
1880
  "\"."
1881
  msgstr ""
1882
 
 
1883
  msgid ""
1884
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
1885
  "\" button."
1886
  msgstr ""
1887
 
 
1888
  msgid "<b>Don't download the key yet!</b>"
1889
  msgstr ""
1890
 
 
1891
  msgid "3.) Create the Service:"
1892
  msgstr ""
1893
 
 
1894
  #, php-format
1895
  msgid ""
1896
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
1897
  "tab."
1898
  msgstr ""
1899
 
 
1900
  #, php-format
1901
  msgid ""
1902
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
1903
  "option and click the \"<b>Continue</b>\" button."
1904
  msgstr ""
1905
 
 
1906
  msgid "Enter a \"<b>Description</b>\"."
1907
  msgstr ""
1908
 
 
1909
  #, php-format
1910
  msgid ""
1911
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
1912
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
1913
  msgstr ""
1914
 
 
1915
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
1916
  msgstr ""
1917
 
 
1918
  msgid ""
1919
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
1920
  msgstr ""
1921
 
 
1922
  #, php-format
1923
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
1924
  msgstr ""
1925
 
 
1926
  msgid ""
1927
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
1928
  "b>\" button next to it."
1929
  msgstr ""
1930
 
 
1931
  msgid ""
1932
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
1933
  "App what you just created."
1934
  msgstr ""
1935
 
 
1936
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
1937
  msgstr ""
1938
 
 
1939
  msgid ""
1940
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
1941
  "button."
1942
  msgstr ""
1943
 
 
1944
  msgid "4.) Configure Nextend Social Login with your credentials:"
1945
  msgstr ""
1946
 
 
1947
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
1948
  msgstr ""
1949
 
 
1950
  msgid "<strong><u>Private Key ID:</u></strong>"
1951
  msgstr ""
1952
 
 
 
1953
  #, php-format
1954
  msgid "Navigate to: <b>%s</b>"
1955
  msgstr ""
1956
 
 
1957
  msgid "Click on the <b>name of your Key</b>."
1958
  msgstr ""
1959
 
 
1960
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
1961
  msgstr ""
1962
 
 
1963
  msgid "<strong><u>Private Key:</u></strong>"
1964
  msgstr ""
1965
 
 
1966
  msgid ""
1967
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
1968
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
1969
  "this file safe</b>!</u> "
1970
  msgstr ""
1971
 
 
1972
  msgid ""
1973
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
1974
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
1975
  "\" field of Nextend Social Login."
1976
  msgstr ""
1977
 
 
1978
  msgid "<strong><u>Team Identifier:</u></strong>"
1979
  msgstr ""
1980
 
 
1981
  msgid ""
1982
  "A 10 character long identifier, what you can find on the <b>top-right "
1983
  "corner, just under your name</b>."
1984
  msgstr ""
1985
 
 
1986
  msgid "<strong><u>Service Identifier:</u></strong>"
1987
  msgstr ""
1988
 
 
1989
  #, php-format
1990
  msgid ""
1991
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
1993
  "e.g.: <b>%s.nslclient</b>"
1994
  msgstr ""
1995
 
 
1996
  msgid ""
1997
  "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
1998
  "button."
1999
  msgstr ""
2000
 
 
2001
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
2002
  msgstr ""
2003
 
 
2004
  msgid ""
2005
  "When you need to change your credentials for some reason, then you must "
2006
  "delete the token, copy the new credentials and generate a new token!"
2007
  msgstr ""
2008
 
 
2009
  msgid "Delete credentials"
2010
  msgstr ""
2011
 
 
2012
  msgid "Private Key ID"
2013
  msgstr ""
2014
 
 
2015
  msgid "Private Key"
2016
  msgstr ""
2017
 
 
2018
  msgid "Team Identifier"
2019
  msgstr ""
2020
 
 
2021
  msgid "Service Identifier"
2022
  msgstr ""
2023
 
 
2024
  msgid "Generate Token"
2025
  msgstr ""
2026
 
 
2027
  msgid "Continue with <b>Apple</b>"
2028
  msgstr ""
2029
 
 
2030
  msgid "Sign up with <b>Apple</b>"
2031
  msgstr ""
2032
 
 
2033
  msgid "Link account with <b>Apple</b>"
2034
  msgstr ""
2035
 
 
2036
  msgid "Unlink account from <b>Apple</b>"
2037
  msgstr ""
2038
 
 
2039
  #, php-format
2040
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2041
  msgstr ""
2042
 
 
 
 
 
2043
  #, php-format
2044
  msgid "Token generation failed: %1$s"
2045
  msgstr ""
2046
 
 
2047
  msgid "Please check your credentials!"
2048
  msgstr ""
2049
 
 
2050
  msgid "Private key format is not valid!"
2051
  msgstr ""
2052
 
 
2053
  #, php-format
2054
  msgid ""
2055
  "%s detected that your Apple credentials have expired. Please delete the "
2056
  "current credentials and generate new one!"
2057
  msgstr ""
2058
 
 
2059
  msgid "Apple Credentials"
2060
  msgstr ""
2061
 
 
 
2062
  #, php-format
2063
  msgid "Click on the name of your %s App."
2064
  msgstr ""
2065
 
 
2066
  msgid ""
2067
  "Select the \"<b>Settings</b>\" tab and scroll down to the Authentication "
2068
  "section!"
2069
  msgstr ""
2070
 
 
 
 
2071
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2072
  msgstr ""
2073
 
 
2074
  msgid "Click on the \"<b>Save Changes</b>\" button."
2075
  msgstr ""
2076
 
 
2077
  msgid ""
2078
  "Click on the \"<b>Registering new application</b>\" button under the "
2079
  "Applications tab."
2080
  msgstr ""
2081
 
 
2082
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
2083
  msgstr ""
2084
 
 
2085
  #, php-format
2086
  msgid ""
2087
  "Fill \"<b>Website</b>\" with the url of your homepage, probably: <b>%s</b>"
2088
  msgstr ""
2089
 
 
2090
  msgid ""
2091
  "Complete the Human test and click the \"<b>Register my application</b>\" "
2092
  "button."
2093
  msgstr ""
2094
 
 
2095
  #, php-format
2096
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
2097
  msgstr ""
2098
 
 
2099
  msgid ""
2100
  "Select \"<b>Read only</b>\" as Default Access under the Authentication "
2101
  "section."
2102
  msgstr ""
2103
 
 
2104
  msgid "Click on the \"<b>Save Changes</b>\" button!"
2105
  msgstr ""
2106
 
 
2107
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
2108
  msgstr ""
2109
 
 
2110
  msgid ""
2111
  "Here you can see your \"<b>API Key</b>\" and \"<b>API Secret</b>\". These "
2112
  "will be needed in the plugin's settings."
2113
  msgstr ""
2114
 
 
2115
  msgid "API Secret"
2116
  msgstr ""
2117
 
 
2118
  msgid "Continue with <b>Disqus</b>"
2119
  msgstr ""
2120
 
 
2121
  msgid "Sign up with <b>Disqus</b>"
2122
  msgstr ""
2123
 
 
2124
  msgid "Link account with <b>Disqus</b>"
2125
  msgstr ""
2126
 
 
2127
  msgid "Unlink account from <b>Disqus</b>"
2128
  msgstr ""
2129
 
 
2130
  #, php-format
2131
  msgid "Click on the name of the App you configured %s with."
2132
  msgstr ""
2133
 
 
2134
  #, php-format
2135
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2136
  msgstr ""
2137
 
 
 
2138
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2139
  msgstr ""
2140
 
 
2141
  msgid "Press the <b>Update application</b> button to save the changes."
2142
  msgstr ""
2143
 
 
2144
  #, php-format
2145
  msgid ""
2146
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
2147
  "button."
2148
  msgstr ""
2149
 
 
2150
  msgid ""
2151
  "Enter a name into the <b>Application name</b> field. Users will see this "
2152
  "name, when they authorize your app at the OAuth consent screen!"
2153
  msgstr ""
2154
 
 
2155
  #, php-format
2156
  msgid ""
2157
  "Fill <b>Homepage URL</b> with the url of your homepage, probably: <b>%s</b>"
2158
  msgstr ""
2159
 
 
2160
  msgid ""
2161
  "In the <b>Description</b> field you should explain what this App will be "
2162
  "used for."
2163
  msgstr ""
2164
 
 
2165
  msgid "Click the <b>Register application</b> button."
2166
  msgstr ""
2167
 
 
2168
  msgid ""
2169
  "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the middle "
2170
  "of the page. These will be needed in the plugin's settings!"
2171
  msgstr ""
2172
 
 
2173
  #, php-format
2174
  msgid ""
2175
  "<b>Important note:</b> The email address is only retrievable, if there is a "
2176
  "public email address set at the %1$s profile page%2$s!"
2177
  msgstr ""
2178
 
 
2179
  msgid "Continue with <b>GitHub</b>"
2180
  msgstr ""
2181
 
 
2182
  msgid "Sign up with <b>GitHub</b>"
2183
  msgstr ""
2184
 
 
2185
  msgid "Link account with <b>GitHub</b>"
2186
  msgstr ""
2187
 
 
2188
  msgid "Unlink account from <b>GitHub</b>"
2189
  msgstr ""
2190
 
 
2191
  #, php-format
2192
  msgid "Navigate to your %s"
2193
  msgstr ""
2194
 
 
2195
  #, php-format
2196
  msgid "Select your %s App and click on the LINE Login section."
2197
  msgstr ""
2198
 
 
2199
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2200
  msgstr ""
2201
 
 
2202
  #, php-format
2203
  msgid ""
2204
  "Editing Live Apps are only possible with a %s. So please make sure you own "
2205
  "one!"
2206
  msgstr ""
2207
 
 
2208
  msgid "Click the \"<b>Create a new provider</b>\" button."
2209
  msgstr ""
2210
 
 
2211
  msgid ""
2212
  "Fill the \"<b>Provider name</b>\" field and click the \"<b>Create</b>\" "
2213
  "button."
2214
  msgstr ""
2215
 
 
2216
  msgid ""
2217
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
2218
  "channel</b>\" option."
2219
  msgstr ""
2220
 
 
2221
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
2222
  msgstr ""
2223
 
 
2224
  msgid ""
2225
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
2226
  "created."
2227
  msgstr ""
2228
 
 
2229
  msgid "Select your \"<b>Region</b>\"."
2230
  msgstr ""
2231
 
 
2232
  msgid ""
2233
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
2234
  "description</b>\". These will appear on your Consent Screen!"
2235
  msgstr ""
2236
 
 
2237
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
2238
  msgstr ""
2239
 
 
2240
  msgid ""
2241
  "Read and consent to the \"<b>LINE Developers Agreement</b>\", then click the "
2242
  "\"<b>Create</b>\" button."
2243
  msgstr ""
2244
 
 
2245
  msgid ""
2246
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
2247
  "near the \"<b>Email address permission</b>\" label."
2248
  msgstr ""
2249
 
 
2250
  msgid "Fill out the form, then click the \"<b>Submit</b>\" button."
2251
  msgstr ""
2252
 
 
2253
  msgid ""
2254
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
2255
  "section."
2256
  msgstr ""
2257
 
 
2258
  msgid ""
2259
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
2260
  "Channel!"
2261
  msgstr ""
2262
 
 
2263
  msgid ""
2264
  "Go to the \"<b>Basic settings</b>\" tab and find the necessary \"<b>Channel "
2265
  "ID</b>\" and \"<b>Channel secret</b>\" values and fill these fields in the "
2266
  "plugin settings!"
2267
  msgstr ""
2268
 
 
2269
  msgid "Channel ID"
2270
  msgstr ""
2271
 
 
2272
  msgid "Channel Secret"
2273
  msgstr ""
2274
 
 
2275
  msgid "Continue with <b>Line</b>"
2276
  msgstr ""
2277
 
 
2278
  msgid "Sign up with <b>Line</b>"
2279
  msgstr ""
2280
 
 
2281
  msgid "Link account with <b>Line</b>"
2282
  msgstr ""
2283
 
 
2284
  msgid "Unlink account from <b>Line</b>"
2285
  msgstr ""
2286
 
 
2287
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2288
  msgstr ""
2289
 
 
 
 
2290
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2291
  msgstr ""
2292
 
 
 
 
 
 
2293
  msgid "Click on \"<b>Update</b>\" to save the changes"
2294
  msgstr ""
2295
 
 
2296
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
2297
  msgstr ""
2298
 
 
2299
  msgid "Enter the name of your App to the \"App name\" field."
2300
  msgstr ""
2301
 
 
2302
  #, php-format
2303
  msgid ""
2304
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
2305
  "one yet, create new one at: %s"
2306
  msgstr ""
2307
 
 
2308
  msgid ""
2309
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
2310
  msgstr ""
2311
 
 
2312
  msgid ""
2313
  "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
2314
  "App</b>\" button!"
2315
  msgstr ""
2316
 
 
2317
  msgid ""
2318
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
2319
  "tab."
2320
  msgstr ""
2321
 
 
2322
  #, php-format
2323
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
2324
  msgstr ""
2325
 
 
2326
  msgid ""
2327
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
2328
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
2329
  "button."
2330
  msgstr ""
2331
 
 
2332
  msgid "Click on the \"<b>Auth</b>\" tab."
2333
  msgstr ""
2334
 
 
2335
  msgid ""
2336
  "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to the "
2337
  "\"<b>Redirect URLs</b>\" field:"
2338
  msgstr ""
2339
 
 
2340
  msgid ""
2341
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" under "
2342
  "the Application credentials section, on the <b>Auth</b> tab."
2343
  msgstr ""
2344
 
 
2345
  msgid "Continue with <b>LinkedIn</b>"
2346
  msgstr ""
2347
 
 
2348
  msgid "Sign up with <b>LinkedIn</b>"
2349
  msgstr ""
2350
 
 
2351
  msgid "Link account with <b>LinkedIn</b>"
2352
  msgstr ""
2353
 
 
2354
  msgid "Unlink account from <b>LinkedIn</b>"
2355
  msgstr ""
2356
 
 
2357
  #, php-format
2358
  msgid "Log in with your %s credentials if you are not logged in yet."
2359
  msgstr ""
2360
 
 
 
2361
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
2362
  msgstr ""
2363
 
 
2364
  #, php-format
2365
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
2366
  msgstr ""
2367
 
 
2368
  msgid "Click on the link next to the Redirect URIs label."
2369
  msgstr ""
2370
 
 
2371
  msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2372
  msgstr ""
2373
 
 
2374
  #, php-format
2375
  msgid ""
2376
  "Log in with your %s credentials if you are not logged in or create a new "
2377
  "account."
2378
  msgstr ""
2379
 
 
2380
  msgid "Click on \"<b>New registration</b>\"."
2381
  msgstr ""
2382
 
 
2383
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2384
  msgstr ""
2385
 
 
2386
  msgid ""
2387
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2388
  "account types."
2389
  msgstr ""
2390
 
 
2391
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2392
  msgstr ""
2393
 
 
2394
  msgid "Create your App with the \"<b>Register</b>\" button."
2395
  msgstr ""
2396
 
 
2397
  msgid "You land on the \"<b>Overview</b>\" page."
2398
  msgstr ""
2399
 
 
2400
  msgid ""
2401
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
2402
  "(client) ID</b> in the plugin settings."
2403
  msgstr ""
2404
 
 
2405
  msgid ""
2406
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
2407
  "Client credentials label."
2408
  msgstr ""
2409
 
 
2410
  msgid "Click on \"<b>New client secret</b>\"."
2411
  msgstr ""
2412
 
 
2413
  msgid "Fill the \"<b>Description</b>\" field."
2414
  msgstr ""
2415
 
 
2416
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
2417
  msgstr ""
2418
 
 
2419
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
2420
  msgstr ""
2421
 
 
2422
  msgid ""
2423
  "Copy the \"<b>Client Secret Value</b>\", this will be the <b>Client secret</"
2424
  "b> in the plugin settings."
2425
  msgstr ""
2426
 
 
2427
  msgid "Application (client) ID"
2428
  msgstr ""
2429
 
 
2430
  msgid "Client secret"
2431
  msgstr ""
2432
 
 
2433
  msgid "Continue with <b>Microsoft</b>"
2434
  msgstr ""
2435
 
 
2436
  msgid "Sign up with <b>Microsoft</b>"
2437
  msgstr ""
2438
 
 
2439
  msgid "Link account with <b>Microsoft</b>"
2440
  msgstr ""
2441
 
 
2442
  msgid "Unlink account from <b>Microsoft</b>"
2443
  msgstr ""
2444
 
 
 
2445
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
2446
  msgstr ""
2447
 
 
2448
  #, php-format
2449
  msgid "Click on the name of your %s App, under the REST API apps section."
2450
  msgstr ""
2451
 
 
2452
  msgid ""
2453
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
2454
  "b>\" heading and click \"<b>Show</b>\"."
2455
  msgstr ""
2456
 
 
 
2457
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
2458
  msgstr ""
2459
 
 
2460
  msgid "Click on \"Save\""
2461
  msgstr ""
2462
 
 
2463
  #, php-format
2464
  msgid ""
2465
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
2466
  "step, if not click on the link!"
2467
  msgstr ""
2468
 
 
2469
  msgid "Click on Registration and create a Business account."
2470
  msgstr ""
2471
 
 
2472
  msgid "If you are done, follow the guide from the 5. step."
2473
  msgstr ""
2474
 
 
2475
  #, php-format
2476
  msgid "Log in with your %s credentials."
2477
  msgstr ""
2478
 
 
2479
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
2480
  msgstr ""
2481
 
 
2482
  msgid ""
2483
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
2484
  msgstr ""
2485
 
 
2486
  msgid ""
2487
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
2488
  "b>\" heading then click \"<b>Show</b>\"."
2489
  msgstr ""
2490
 
 
2491
  msgid ""
2492
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
2493
  "with PayPal</b>\"."
2494
  msgstr ""
2495
 
 
2496
  msgid ""
2497
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
2498
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
2499
  msgstr ""
2500
 
 
2501
  msgid "Tick \"<b>Full name</b>\"."
2502
  msgstr ""
2503
 
 
2504
  msgid ""
2505
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
2506
  "email address as well, <b>please submit your App for a review</b> after your "
2509
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
2510
  msgstr ""
2511
 
 
2512
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
2513
  msgstr ""
2514
 
 
2515
  msgid ""
2516
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
2517
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
2518
  "\"<b>Live</b>\" mode and not \"Sandbox\". )"
2519
  msgstr ""
2520
 
 
2521
  msgid "Secret"
2522
  msgstr ""
2523
 
 
2524
  msgid "Email scope"
2525
  msgstr ""
2526
 
 
2527
  msgid "Disable, when you have no rights for email address."
2528
  msgstr ""
2529
 
 
2530
  msgid "Continue with <b>PayPal</b>"
2531
  msgstr ""
2532
 
 
2533
  msgid "Sign up with <b>PayPal</b>"
2534
  msgstr ""
2535
 
 
2536
  msgid "Link account with <b>PayPal</b>"
2537
  msgstr ""
2538
 
 
2539
  msgid "Unlink account from <b>PayPal</b>"
2540
  msgstr ""
2541
 
 
2542
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
2543
  msgstr ""
2544
 
 
2545
  msgid "Go to the \"<b>Settings</b>\" menu"
2546
  msgstr ""
2547
 
 
 
2548
  msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
2549
  msgstr ""
2550
 
 
2551
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
2552
  msgstr ""
2553
 
 
2554
  msgid ""
2555
  "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
2556
  "platform."
2557
  msgstr ""
2558
 
 
2559
  #, php-format
2560
  msgid ""
2561
  "Fill \"<b>Website address</b>\" with the url of your homepage, probably: <b>"
2562
  "%s</b>"
2563
  msgstr ""
2564
 
 
2565
  #, php-format
2566
  msgid ""
2567
  "Fill the \"<b>Base domain</b>\" field with your domain, probably: <b>%s</b>"
2568
  msgstr ""
2569
 
 
2570
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
2571
  msgstr ""
2572
 
 
2573
  msgid ""
2574
  "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
2575
  "click <b>Save</b>."
2576
  msgstr ""
2577
 
 
2578
  msgid "Pick <b>Settings</b> at the left-hand menu "
2579
  msgstr ""
2580
 
 
2581
  msgid "<b>Save</b> your app"
2582
  msgstr ""
2583
 
 
2584
  msgid ""
2585
  "Find the necessary \"<b>App ID</b>\" and \"<b>Secure key</b>\" at the top of "
2586
  "the Settings page where you just hit the save button."
2587
  msgstr ""
2588
 
 
2589
  msgid "Secure key"
2590
  msgstr ""
2591
 
 
2592
  msgid "Continue with <b>VK</b>"
2593
  msgstr ""
2594
 
 
2595
  msgid "Sign up with <b>VK</b>"
2596
  msgstr ""
2597
 
 
2598
  msgid "Link account with <b>VK</b>"
2599
  msgstr ""
2600
 
 
2601
  msgid "Unlink account from <b>VK</b>"
2602
  msgstr ""
2603
 
 
2604
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
2605
  msgstr ""
2606
 
 
2607
  msgid "Click on the \"<b>Create New Application</b>\" button."
2608
  msgstr ""
2609
 
 
2610
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
2611
  msgstr ""
2612
 
 
2613
  #, php-format
2614
  msgid ""
2615
  "Fill \"<b>Website URL</b>\" with the url of your homepage, probably: <b>%s</"
2616
  "b>"
2617
  msgstr ""
2618
 
 
2619
  msgid "You can leave the \"Javascript Origins\" field blank!"
2620
  msgstr ""
2621
 
 
2622
  msgid "Complete the human verification test."
2623
  msgstr ""
2624
 
 
2625
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
2626
  msgstr ""
2627
 
 
2628
  msgid "Click the \"<b>Create</b>\" button!"
2629
  msgstr ""
2630
 
 
2631
  msgid ""
2632
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
2633
  "next to Editing!"
2634
  msgstr ""
2635
 
 
2636
  msgid ""
2637
  "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
2638
  "These will be needed in the plugin's settings."
2639
  msgstr ""
2640
 
 
2641
  msgid "Continue with <b>WordPress.com</b>"
2642
  msgstr ""
2643
 
 
2644
  msgid "Sign up with <b>WordPress.com</b>"
2645
  msgstr ""
2646
 
 
2647
  msgid "Link account with <b>WordPress.com</b>"
2648
  msgstr ""
2649
 
 
2650
  msgid "Unlink account from <b>WordPress.com</b>"
2651
  msgstr ""
2652
 
 
2653
  msgid "Click on the App which has its credentials associated with the plugin."
2654
  msgstr ""
2655
 
 
 
2656
  msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
2657
  msgstr ""
2658
 
 
2659
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
2660
  msgstr ""
2661
 
 
2662
  msgid ""
2663
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
2664
  "at \"<b>Application Type</b>\"."
2665
  msgstr ""
2666
 
 
2667
  msgid "Enter a \"<b>Description</b>\" for your app!"
2668
  msgstr ""
2669
 
 
2670
  #, php-format
2671
  msgid ""
2672
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
2673
  msgstr ""
2674
 
 
2675
  msgid ""
2676
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
2677
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
2678
  msgstr ""
2679
 
 
2680
  msgid "Click \"<b>Create App</b>\"."
2681
  msgstr ""
2682
 
 
2683
  msgid ""
2684
  "On the top of the page, you will find the necessary \"<b>Client ID</b>\" and "
2685
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
2686
  msgstr ""
2687
 
 
2688
  msgid "Continue with <b>Yahoo</b>"
2689
  msgstr ""
2690
 
 
2691
  msgid "Sign up with <b>Yahoo</b>"
2692
  msgstr ""
2693
 
 
2694
  msgid "Link account with <b>Yahoo</b>"
2695
  msgstr ""
2696
 
 
2697
  msgid "Unlink account from <b>Yahoo</b>"
2698
  msgstr ""
2699
 
 
2700
  #, php-format
2701
  msgid "Required permission: %1$s"
2702
  msgstr ""
2703
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2704
  msgid "OR"
2705
  msgstr "OU"
2706
 
 
 
 
 
2707
  msgid "Social accounts"
2708
  msgstr ""
languages/nextend-facebook-connect-hu_HU.mo CHANGED
Binary file
languages/nextend-facebook-connect-hu_HU.po CHANGED
@@ -1,10 +1,10 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-09-08 13:29+0200\n"
5
- "PO-Revision-Date: 2021-09-08 13:29+0200\n"
6
  "Last-Translator: \n"
7
- "Language-Team: nextend\n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -17,6 +17,7 @@ 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\n"
21
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
22
  "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
@@ -26,11 +27,9 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
- #: nextend-facebook-connect/NSL/GDPR.php:34
30
  msgid "What personal data we collect and why we collect it"
31
  msgstr "Milyen személyes adatokat gyüjtünk, és miért gyüjtjük"
32
 
33
- #: nextend-facebook-connect/NSL/GDPR.php:35
34
  #, php-format
35
  msgid ""
36
  "%1$s collects data when a visitor register, login or link the account with "
@@ -45,11 +44,9 @@ msgstr ""
45
  "Ezenkívül még begyüjthető a profil kép és más mezők amelyek a Pro Addon sync "
46
  "data funkciójából származik."
47
 
48
- #: nextend-facebook-connect/NSL/GDPR.php:37
49
  msgid "Who we share your data with"
50
  msgstr "Kivel osztjuk meg az adataid"
51
 
52
- #: nextend-facebook-connect/NSL/GDPR.php:38
53
  #, php-format
54
  msgid ""
55
  "%1$s stores the personal data on your site and does not share it with anyone "
@@ -57,44 +54,36 @@ msgid ""
57
  "the social providers."
58
  msgstr ""
59
 
60
- #: nextend-facebook-connect/NSL/GDPR.php:40
61
  msgid "Does the plugin share personal data with third parties"
62
  msgstr ""
63
 
64
- #: nextend-facebook-connect/NSL/GDPR.php:41
65
  #, php-format
66
  msgid ""
67
  "%1$s use the access token what the social provider gave to communicate with "
68
  "the providers to verify account and securely access personal data."
69
  msgstr ""
70
 
71
- #: nextend-facebook-connect/NSL/GDPR.php:43
72
  msgid "How long we retain your data"
73
  msgstr ""
74
 
75
- #: nextend-facebook-connect/NSL/GDPR.php:44
76
  #, php-format
77
  msgid ""
78
  "%1$s removes the collected personal data when the user deleted from "
79
  "WordPress."
80
  msgstr ""
81
 
82
- #: nextend-facebook-connect/NSL/GDPR.php:46
83
  msgid "Does the plugin use personal data collected by others?"
84
  msgstr ""
85
 
86
- #: nextend-facebook-connect/NSL/GDPR.php:47
87
  #, php-format
88
  msgid ""
89
  "%1$s use the personal data collected by the social providers to create "
90
  "account on your site when the visitor authorize it."
91
  msgstr ""
92
 
93
- #: nextend-facebook-connect/NSL/GDPR.php:49
94
  msgid "Does the plugin store things in the browser?"
95
  msgstr ""
96
 
97
- #: nextend-facebook-connect/NSL/GDPR.php:50
98
  #, php-format
99
  msgid ""
100
  "Yes, %1$s must create a cookie for visitors who use the social login "
@@ -102,70 +91,44 @@ msgid ""
102
  "communication and to redirect the user back to the last location."
103
  msgstr ""
104
 
105
- #: nextend-facebook-connect/NSL/GDPR.php:52
106
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
107
  msgstr ""
108
 
109
- #: nextend-facebook-connect/NSL/GDPR.php:53
110
- #: nextend-facebook-connect/NSL/GDPR.php:56
111
  msgid "No"
112
  msgstr ""
113
 
114
- #: nextend-facebook-connect/NSL/GDPR.php:55
115
  msgid ""
116
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
117
  "third party?"
118
  msgstr ""
119
 
120
- #: nextend-facebook-connect/NSL/GDPR.php:99
121
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57
122
  msgid "User"
123
  msgstr "Felhasználó"
124
 
125
- #: nextend-facebook-connect/admin/admin.php:206
126
  #, php-format
127
  msgid "%s needs json_decode function."
128
  msgstr "A %s-nak szüksége van a json_decode függvényre."
129
 
130
- #: nextend-facebook-connect/admin/admin.php:206
131
  msgid "Please contact your server administrator and ask for solution!"
132
  msgstr ""
133
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
134
 
135
- #: nextend-facebook-connect/admin/admin.php:250
136
- #: nextend-facebook-connect/admin/admin.php:280
137
  msgid "Settings saved."
138
  msgstr "Beállítások elmentve."
139
 
140
- #: nextend-facebook-connect/admin/admin.php:259
141
  msgid "The activation was successful"
142
  msgstr "Az aktiváció sikeres volt"
143
 
144
- #: nextend-facebook-connect/admin/admin.php:270
145
  msgid "Deactivate completed."
146
  msgstr "A deaktiválás befejeződött."
147
 
148
- #: nextend-facebook-connect/admin/admin.php:449
149
- #: nextend-facebook-connect/admin/templates-provider/menu.php:15
150
- #: nextend-facebook-connect/admin/templates/providers.php:89
151
- #: nextend-facebook-connect/admin/templates/providers.php:101
152
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
153
  msgid "Settings"
154
  msgstr "Beállítások"
155
 
156
- #: nextend-facebook-connect/admin/admin.php:532
157
- #: nextend-facebook-connect/includes/oauth2.php:143
158
- #: nextend-facebook-connect/includes/oauth2.php:288
159
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
160
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
161
- #: nextend-social-login-pro/providers/apple/apple-client.php:87
162
- #: nextend-social-login-pro/providers/github/github-client.php:87
163
  #, php-format
164
  msgid "Unexpected response: %s"
165
  msgstr "Nem várt válasz: %s"
166
 
167
- #: nextend-facebook-connect/admin/admin.php:593
168
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
169
  #, php-format
170
  msgid ""
171
  "%s detected that your login url changed. You must update the Oauth redirect "
@@ -174,16 +137,12 @@ msgstr ""
174
  "%s érzékelte hogy a bejelentkezési url megváltozott. Frissitened kell az "
175
  "\"Oauth redirect URIs\" értékeket a konfigurált alkalmazásaidban."
176
 
177
- #: nextend-facebook-connect/admin/admin.php:594
178
- #: nextend-social-login-pro/providers/apple/apple.php:294
179
  msgid "Fix Error"
180
  msgstr "Hiba javítása"
181
 
182
- #: nextend-facebook-connect/admin/admin.php:594
183
  msgid "Oauth Redirect URI"
184
  msgstr "Oauth Redirect URI"
185
 
186
- #: nextend-facebook-connect/admin/admin.php:611
187
  #, php-format
188
  msgid ""
189
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -193,15 +152,12 @@ msgstr ""
193
  "social login gombok megjelenjenek a(z) %2$s login formokban, a Pro Addon-ra "
194
  "van szükséged!"
195
 
196
- #: nextend-facebook-connect/admin/admin.php:612
197
  msgid "Dismiss and check Pro Addon"
198
  msgstr "Eltüntent és Pro Addon ellenörzése."
199
 
200
- #: nextend-facebook-connect/admin/admin.php:612
201
  msgid "Dismiss"
202
  msgstr "Eltüntet"
203
 
204
- #: nextend-facebook-connect/admin/admin.php:618
205
  #, php-format
206
  msgid ""
207
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -209,15 +165,12 @@ msgid ""
209
  "work properly."
210
  msgstr ""
211
 
212
- #: nextend-facebook-connect/admin/admin.php:619
213
  msgid "Fix now"
214
  msgstr "Javítás most"
215
 
216
- #: nextend-facebook-connect/admin/admin.php:643
217
  msgid "Activate your Pro Addon"
218
  msgstr "Pro Addon aktiválása"
219
 
220
- #: nextend-facebook-connect/admin/admin.php:644
221
  #, fuzzy
222
  #| msgid ""
223
  #| "To be able to use the Pro features, you need to activate Nextend Social "
@@ -232,24 +185,18 @@ msgstr ""
232
  "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított "
233
  "vásárlás kiválasztásával."
234
 
235
- #: nextend-facebook-connect/admin/admin.php:649
236
- #: nextend-social-login-pro/nextend-social-login-pro.php:110
237
  msgid "Activate"
238
  msgstr "Aktiválás"
239
 
240
- #: nextend-facebook-connect/admin/admin.php:747
241
  msgid "License key"
242
  msgstr "Licensz kulcs"
243
 
244
- #: nextend-facebook-connect/admin/admin.php:770
245
  msgid "OAuth proxy page"
246
  msgstr "OAuth proxy page"
247
 
248
- #: nextend-facebook-connect/admin/admin.php:773
249
  msgid "Register flow page"
250
  msgstr "Register flow page"
251
 
252
- #: nextend-facebook-connect/admin/admin.php:780
253
  #, php-format
254
  msgid ""
255
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
@@ -257,366 +204,208 @@ msgid ""
257
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
258
  msgstr ""
259
 
260
- #: nextend-facebook-connect/admin/interim.php:12
261
- #: nextend-facebook-connect/admin/interim.php:23
262
  msgid "You have logged in successfully."
263
  msgstr "Sikeresen bejelentkeztél"
264
 
265
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
266
  msgid "Login label"
267
  msgstr "Bejelentkezés felirat"
268
 
269
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
270
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
271
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
272
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
273
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
274
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
275
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
276
  msgid "Reset to default"
277
  msgstr "Alapbeállítás visszaállítása"
278
 
279
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
280
  #, fuzzy
281
  #| msgid "Login layout"
282
  msgid "Register label"
283
  msgstr "Login elrendezése"
284
 
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
286
  msgid "Link label"
287
  msgstr "Profil összekapcsolás felirat"
288
 
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
290
  msgid "Unlink label"
291
  msgstr "Profile szétkapcsolás felirat"
292
 
293
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
294
  msgid "Default button"
295
  msgstr "Alap gomb"
296
 
297
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
298
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
299
  msgid "Use custom button"
300
  msgstr "Egyedi gomb használata"
301
 
302
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
303
  #, php-format
304
  msgid "Use the %s in your custom button's code to make the label show up."
305
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
306
 
307
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
308
  msgid "Icon button"
309
  msgstr "Ikon gomb"
310
 
311
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
312
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
313
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
314
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:220
315
- #: nextend-facebook-connect/admin/templates/settings/comment.php:79
316
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8
317
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:127
318
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8
319
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:167
320
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:198
321
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
322
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:198
323
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:179
324
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:347
325
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
326
- #: nextend-facebook-connect/providers/google/admin/settings.php:62
327
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
328
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
329
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
330
- #: nextend-social-login-pro/providers/github/admin/settings.php:48
331
- #: nextend-social-login-pro/providers/line/admin/settings.php:47
332
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:57
333
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:48
334
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:60
335
- #: nextend-social-login-pro/providers/vk/admin/settings.php:48
336
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
337
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47
338
  msgid "Save Changes"
339
  msgstr "Változtatások Mentése"
340
 
341
- #: nextend-facebook-connect/admin/templates-provider/menu.php:13
342
- #: nextend-facebook-connect/admin/templates/providers.php:69
343
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
344
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
345
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
346
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
347
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28
348
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
349
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:8
350
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:8
351
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
352
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:8
353
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
354
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
355
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
356
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8
357
  msgid "Getting Started"
358
  msgstr "Első Lépések"
359
 
360
- #: nextend-facebook-connect/admin/templates-provider/menu.php:17
361
  msgid "Buttons"
362
  msgstr "Gombok"
363
 
364
- #: nextend-facebook-connect/admin/templates-provider/menu.php:21
365
  msgid "Sync data"
366
  msgstr "Sync data"
367
 
368
- #: nextend-facebook-connect/admin/templates-provider/menu.php:24
369
  msgid "Usage"
370
  msgstr "Használat"
371
 
372
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11
373
  msgid "Other settings"
374
  msgstr "Egyéb beállítások"
375
 
376
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16
377
  msgid "Username prefix on register"
378
  msgstr "Felhasználónév előtag regisztrációkor"
379
 
380
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
381
  msgid "Fallback username prefix on register"
382
  msgstr "Fallback felhasználónév előtag regisztrácókor"
383
 
384
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27
385
  msgid "Used when username is invalid or not stored"
386
  msgstr "Akkor van használva ha a felhasználónév helytelen vagy nincs tárolva."
387
 
388
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32
389
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
390
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
391
  msgid "Terms and conditions"
392
  msgstr "Felhasználási feltételek"
393
 
394
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
395
  #, php-format
396
  msgid "Override global \"%1$s\""
397
  msgstr "Globális \"%1$s\" felülírása."
398
 
399
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
400
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12
401
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12
402
  msgid "PRO settings"
403
  msgstr "PRO beállítások"
404
 
405
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28
406
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32
407
  msgid "Ask E-mail on registration"
408
  msgstr "E-mail kérésére regisztrációkor"
409
 
410
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35
411
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69
412
  msgid "Never"
413
  msgstr "Soha"
414
 
415
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38
416
  msgid "When email is not provided or empty"
417
  msgstr "Amikor a e-mail cím nincs biztosítva vagy nem üres"
418
 
419
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41
420
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
421
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72
422
  msgid "Always"
423
  msgstr "Mindig"
424
 
425
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46
426
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50
427
  msgid "Ask Username on registration"
428
  msgstr "Felhasználónév kérése regisztrációkor"
429
 
430
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53
431
  msgid "Never, generate automatically"
432
  msgstr "Soha, automata generálás"
433
 
434
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
435
  msgid "When username is empty or invalid"
436
  msgstr "Amikor a felhasználónév nincs biztosítva vagy nem üres"
437
 
438
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
439
  msgid "Ask Password on registration"
440
  msgstr "Jelszó kérése regisztrációkor"
441
 
442
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
443
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
444
  msgid "Automatically connect the existing account upon registration"
445
  msgstr "Fiók csatlakoztatása, ha regisztráció esetén már létezik a fiók"
446
 
447
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
448
- #: nextend-facebook-connect/admin/templates/providers.php:47
449
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:86
450
- #: nextend-facebook-connect/admin/templates/settings/general.php:48
451
- #: nextend-facebook-connect/admin/templates/settings/general.php:213
452
- #: nextend-facebook-connect/admin/templates/settings/general.php:228
453
- #: nextend-facebook-connect/admin/templates/settings/general.php:246
454
- #: nextend-facebook-connect/admin/templates/settings/general.php:261
455
- #: nextend-facebook-connect/includes/provider-admin.php:218
456
  msgid "Disabled"
457
  msgstr "Kikapcsolva"
458
 
459
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88
460
  msgid "Automatic, based on email address"
461
  msgstr "Automatán, e-mail cím egyezés esetén"
462
 
463
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93
464
  msgid "Disable login for the selected roles"
465
  msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek"
466
 
467
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113
468
  msgid "Default roles for user who registered with this provider"
469
  msgstr "Alap szerepkör, aki ezzel a szolgáltatóval registrál"
470
 
471
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
472
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50
473
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:76
474
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:143
475
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:168
476
- #: nextend-facebook-connect/admin/templates/settings/comment.php:39
477
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35
478
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97
479
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:39
480
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:111
481
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
482
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
483
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
484
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
485
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
486
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
487
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
488
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:199
489
- #: nextend-facebook-connect/widget.php:42
490
  msgid "Default"
491
  msgstr "Alapbeállítás"
492
 
493
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
494
  msgid "Register"
495
  msgstr "Regisztráció"
496
 
497
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58
498
  msgid "Login"
499
  msgstr "Bejelentkezés"
500
 
501
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66
502
  msgid "Link"
503
  msgstr "Összekapcsolás"
504
 
505
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84
506
  msgid "Store in meta key"
507
  msgstr "Tárolás a meta kulcsban"
508
 
509
- #: nextend-facebook-connect/admin/templates-provider/usage.php:9
510
  msgid "Shortcode"
511
  msgstr "Shortcode"
512
 
513
- #: nextend-facebook-connect/admin/templates-provider/usage.php:12
514
  #, fuzzy
515
  #| msgid "Important:"
516
  msgid "Important!"
517
  msgstr "Fontos:"
518
 
519
- #: nextend-facebook-connect/admin/templates-provider/usage.php:13
520
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
521
  msgstr ""
522
 
523
- #: nextend-facebook-connect/admin/templates-provider/usage.php:14
524
  msgid "See the full list of shortcode parameters."
525
  msgstr ""
526
 
527
- #: nextend-facebook-connect/admin/templates-provider/usage.php:31
528
  msgid "Simple link"
529
  msgstr "Egyszerű link"
530
 
531
- #: nextend-facebook-connect/admin/templates-provider/usage.php:34
532
  msgid "Click here to login or register"
533
  msgstr "Kattints ide a belépéshez vagy a regisztrációhoz"
534
 
535
- #: nextend-facebook-connect/admin/templates-provider/usage.php:39
536
  msgid "Image button"
537
  msgstr "Gomb képpel"
538
 
539
- #: nextend-facebook-connect/admin/templates-provider/usage.php:42
540
  msgid "Image url"
541
  msgstr "Kép URL"
542
 
543
- #: nextend-facebook-connect/admin/templates/debug.php:7
544
- #: nextend-facebook-connect/admin/templates/header.php:20
545
  msgid "Debug"
546
  msgstr "Debug mód"
547
 
548
- #: nextend-facebook-connect/admin/templates/debug.php:41
549
  msgid "Test network connection with providers"
550
  msgstr "Hálózati kapcsolat tesztelése szolgáltatókkal"
551
 
552
- #: nextend-facebook-connect/admin/templates/debug.php:48
553
  msgid "You don't have cURL support, please enable it in php.ini!"
554
  msgstr "Nincs cURL támogatásod, kérlek engedélyezd a php.ini fájlban."
555
 
556
- #: nextend-facebook-connect/admin/templates/debug.php:58
557
  #, php-format
558
  msgid "Test %1$s connection"
559
  msgstr "%1$s kapcsolat tesztelése"
560
 
561
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
562
  msgid "Fix Oauth Redirect URIs"
563
  msgstr "Oauth Redirect URIs javítása"
564
 
565
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13
566
  msgid "Every Oauth Redirect URI seems fine"
567
  msgstr "Minden Every Oauth Redirect URI jónak tűnik"
568
 
569
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32
570
  msgid "Got it"
571
  msgstr "Értettem"
572
 
573
- #: nextend-facebook-connect/admin/templates/global-settings.php:28
574
- #: nextend-facebook-connect/admin/templates/menu.php:8
575
  msgid "Global Settings"
576
  msgstr "Általános beállítások"
577
 
578
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
579
  msgid "General"
580
  msgstr "Általános"
581
 
582
- #: nextend-facebook-connect/admin/templates/global-settings.php:33
583
  msgid "Privacy"
584
  msgstr "Privacy"
585
 
586
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
587
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
588
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
589
  msgid "Login Form"
590
  msgstr "Bejelentkezési form"
591
 
592
- #: nextend-facebook-connect/admin/templates/global-settings.php:39
593
  msgid "Comment"
594
  msgstr "Komment"
595
 
596
- #: nextend-facebook-connect/admin/templates/header.php:14
597
  msgid "Docs"
598
  msgstr "Dokumentáció"
599
 
600
- #: nextend-facebook-connect/admin/templates/header.php:17
601
  msgid "Support"
602
  msgstr "Támogatás"
603
 
604
- #: nextend-facebook-connect/admin/templates/header.php:23
605
- #: nextend-facebook-connect/admin/templates/menu.php:12
606
  msgid "Pro Addon"
607
  msgstr "Pro Kiegészítő"
608
 
609
- #: nextend-facebook-connect/admin/templates/menu.php:6
610
  msgid "Providers"
611
  msgstr "Providerek"
612
 
613
- #: nextend-facebook-connect/admin/templates/pro-addon.php:13
614
- #: nextend-social-login-pro/class-provider-extension.php:213
615
- #: nextend-social-login-pro/class-provider-extension.php:216
616
  msgid "Error"
617
  msgstr "Hiba"
618
 
619
- #: nextend-facebook-connect/admin/templates/pro-addon.php:14
620
  msgid ""
621
  "You don’t have sufficient permissions to install and activate plugins. "
622
  "Please contact your site’s administrator!"
@@ -625,13 +414,9 @@ msgstr ""
625
  "Lépj kapcsolatba az oldalad adminisztrátorával a további teendőkkel "
626
  "kapcsolatban!"
627
 
628
- #: nextend-facebook-connect/admin/templates/pro-addon.php:22
629
- #: nextend-facebook-connect/admin/templates/pro-addon.php:32
630
- #: nextend-facebook-connect/admin/templates/pro.php:34
631
  msgid "Activate Pro Addon"
632
  msgstr "Pro Addon aktiválása"
633
 
634
- #: nextend-facebook-connect/admin/templates/pro-addon.php:23
635
  msgid ""
636
  "Pro Addon is installed but not activated. To be able to use the Pro "
637
  "features, you need to activate it."
@@ -639,61 +424,47 @@ msgstr ""
639
  "A Pro Kiegészítő telepítve van, de nincs aktiválva. Ahhoz, hogy használjasd "
640
  "a Pro funkciókat aktiválnod kell a Pro Kiegészítőt."
641
 
642
- #: nextend-facebook-connect/admin/templates/pro-addon.php:37
643
- #: nextend-facebook-connect/admin/templates/pro-addon.php:142
644
  msgid "Deactivate Pro Addon"
645
  msgstr "Pro Addon deaktiválása"
646
 
647
- #: nextend-facebook-connect/admin/templates/pro-addon.php:48
648
- #: nextend-facebook-connect/admin/templates/pro.php:43
649
  msgid "Pro Addon is not installed"
650
  msgstr "A Pro Kiegészítő nincs telepítve"
651
 
652
- #: nextend-facebook-connect/admin/templates/pro-addon.php:50
653
  msgid ""
654
  "To access the Pro features, you need to install and activate the Pro Addon."
655
  msgstr ""
656
  "Ahhoz, hogy hozzáférj a Pro funkciókhoz fel kell telepítened és aktiválnod "
657
  "kell a Pro Kiegészítőt."
658
 
659
- #: nextend-facebook-connect/admin/templates/pro-addon.php:59
660
  #, php-format
661
  msgid "Install %s now"
662
  msgstr "%s telepítése most"
663
 
664
- #: nextend-facebook-connect/admin/templates/pro-addon.php:60
665
- #: nextend-facebook-connect/admin/templates/pro.php:47
666
  msgid "Install Pro Addon"
667
  msgstr "Pro Kiegészítő telepítése"
668
 
669
- #: nextend-facebook-connect/admin/templates/pro-addon.php:94
670
  msgid "Activating..."
671
  msgstr "Aktiválás..."
672
 
673
- #: nextend-facebook-connect/admin/templates/pro-addon.php:118
674
  #, fuzzy
675
  #| msgid "Not Available"
676
  msgid "Not compatible!"
677
  msgstr "Nem elérhető"
678
 
679
- #: nextend-facebook-connect/admin/templates/pro-addon.php:119
680
  #, php-format
681
  msgid ""
682
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
683
  "newer."
684
  msgstr ""
685
 
686
- #: nextend-facebook-connect/admin/templates/pro-addon.php:123
687
  #, fuzzy
688
  #| msgid "Activate Pro Addon"
689
  msgid "Update Pro Addon"
690
  msgstr "Pro Addon aktiválása"
691
 
692
- #: nextend-facebook-connect/admin/templates/pro-addon.php:133
693
  msgid "Pro Addon is installed and activated"
694
  msgstr "A Pro Kiegészítő telepítve és aktiválva"
695
 
696
- #: nextend-facebook-connect/admin/templates/pro-addon.php:135
697
  msgid ""
698
  "You installed and activated the Pro Addon. If you don’t want to use it "
699
  "anymore, you can deactivate using the button below."
@@ -701,11 +472,9 @@ msgstr ""
701
  "A Pro Kiegészítő fel van telepítve és aktiválva van. Ha nem akarod tovább "
702
  "használni, visszavonhatod az aktiválást a lenti gombra kattintva."
703
 
704
- #: nextend-facebook-connect/admin/templates/pro.php:8
705
  msgid "Get Pro Addon to unlock more features"
706
  msgstr "Vásárold meg a Pro Kiegészítőt, hogy még több funkcióhoz juss"
707
 
708
- #: nextend-facebook-connect/admin/templates/pro.php:9
709
  #, php-format
710
  msgid ""
711
  "The features below are available in %s Pro Addon. Get it today and tweak the "
@@ -714,7 +483,6 @@ msgstr ""
714
  "Az alábbi funkciók a %s Pro Kiegészítőben érhetőek el. Vásárold meg még ma, "
715
  "hogy hozzáférj a fantasztikus új beállításokhoz."
716
 
717
- #: nextend-facebook-connect/admin/templates/pro.php:10
718
  msgid ""
719
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
720
  "you can purchase it using the button below."
@@ -722,20 +490,15 @@ msgstr ""
722
  "Ha már van licenszed engedélyezheted a Pro Kiegészítődet. Ha nincs licenszed "
723
  "vásárolhatsz a lenti gombra kattintva. "
724
 
725
- #: nextend-facebook-connect/admin/templates/pro.php:14
726
  msgid "Buy Pro Addon"
727
  msgstr "Vedd meg a Pro Kiegészítőt"
728
 
729
- #: nextend-facebook-connect/admin/templates/pro.php:16
730
  msgid "Authorize Pro Addon"
731
  msgstr "Pro Kiegészítő aktiválása"
732
 
733
- #: nextend-facebook-connect/admin/templates/pro.php:25
734
  msgid "Pro Addon is not activated"
735
  msgstr "A Pro Kiegészítő nincs aktiválva"
736
 
737
- #: nextend-facebook-connect/admin/templates/pro.php:26
738
- #: nextend-facebook-connect/admin/templates/pro.php:44
739
  #, fuzzy
740
  #| msgid ""
741
  #| "To be able to use the Pro features, you need to install and activate the "
@@ -748,7 +511,6 @@ msgstr ""
748
  "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított "
749
  "vásárlás kiválasztásával."
750
 
751
- #: nextend-facebook-connect/admin/templates/providers.php:8
752
  #, php-format
753
  msgid ""
754
  "%1$s detected that you have providers configured but none of them are "
@@ -756,124 +518,86 @@ msgid ""
756
  "one provider enabled!"
757
  msgstr ""
758
 
759
- #: nextend-facebook-connect/admin/templates/providers.php:38
760
  msgid "Not Available"
761
  msgstr "Nem elérhető"
762
 
763
- #: nextend-facebook-connect/admin/templates/providers.php:41
764
  msgid "Not Configured"
765
  msgstr "Nincs beállítva"
766
 
767
- #: nextend-facebook-connect/admin/templates/providers.php:44
768
  msgid "Not Verified"
769
  msgstr "Nincs hitelesítve"
770
 
771
- #: nextend-facebook-connect/admin/templates/providers.php:50
772
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:89
773
- #: nextend-facebook-connect/admin/templates/settings/general.php:51
774
- #: nextend-facebook-connect/admin/templates/settings/general.php:216
775
- #: nextend-facebook-connect/admin/templates/settings/general.php:231
776
- #: nextend-facebook-connect/admin/templates/settings/general.php:249
777
- #: nextend-facebook-connect/admin/templates/settings/general.php:264
778
- #: nextend-facebook-connect/includes/provider-admin.php:221
779
- #: nextend-facebook-connect/providers/google/admin/settings.php:53
780
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
781
  msgid "Enabled"
782
  msgstr "Bekapcsolva"
783
 
784
- #: nextend-facebook-connect/admin/templates/providers.php:62
785
  msgid "Upgrade Now"
786
  msgstr "Upgradelés most"
787
 
788
- #: nextend-facebook-connect/admin/templates/providers.php:77
789
- #: nextend-facebook-connect/includes/provider-admin.php:205
790
  msgid "Verify Settings"
791
  msgstr "Beállítások hitelesítése"
792
 
793
- #: nextend-facebook-connect/admin/templates/providers.php:85
794
- #: nextend-facebook-connect/includes/provider-admin.php:250
795
  msgid "Enable"
796
  msgstr "Bekapcsolás"
797
 
798
- #: nextend-facebook-connect/admin/templates/providers.php:97
799
- #: nextend-facebook-connect/includes/provider-admin.php:258
800
  msgid "Disable"
801
  msgstr "Kikapcsolás"
802
 
803
- #: nextend-facebook-connect/admin/templates/providers.php:122
804
  msgid "Stay Updated"
805
  msgstr "Légy naprakész"
806
 
807
- #: nextend-facebook-connect/admin/templates/providers.php:123
808
  msgid ""
809
  "Receive info on the latest plugin updates and social provider related "
810
  "changes."
811
  msgstr ""
812
  "Értesítést kérek a legutóbbi frissítésekről és a szolgáltatók változásáról."
813
 
814
- #: nextend-facebook-connect/admin/templates/providers.php:124
815
  msgid "Enter your email address"
816
  msgstr "Add meg az email címed"
817
 
818
- #: nextend-facebook-connect/admin/templates/providers.php:128
819
  msgid "Subscribe"
820
  msgstr "Feliratkozás"
821
 
822
- #: nextend-facebook-connect/admin/templates/providers.php:144
823
  msgid "Saving..."
824
  msgstr "Mentés..."
825
 
826
- #: nextend-facebook-connect/admin/templates/providers.php:145
827
  msgid "Saving failed"
828
  msgstr "A mentés nem sikerült"
829
 
830
- #: nextend-facebook-connect/admin/templates/providers.php:146
831
  msgid "Order Saved"
832
  msgstr "Sorrend elmentve"
833
 
834
- #: nextend-facebook-connect/admin/templates/providers.php:215
835
  msgid "Successfully subscribed!"
836
  msgstr "Sikeresen feliratkozva."
837
 
838
- #: nextend-facebook-connect/admin/templates/providers.php:215
839
  msgid ""
840
  "We'll be bringing you all the latest news and updates about Social Login - "
841
  "right to your inbox."
842
  msgstr ""
843
 
844
- #: nextend-facebook-connect/admin/templates/providers.php:222
845
  msgid "The entered email address is invalid!"
846
  msgstr "A beírt email cím helytelen!"
847
 
848
- #: nextend-facebook-connect/admin/templates/review.php:14
849
  msgid "Rate your experience!"
850
  msgstr "Értékelj!"
851
 
852
- #: nextend-facebook-connect/admin/templates/review.php:15
853
  msgid "Hated it"
854
  msgstr "Gyülölöm"
855
 
856
- #: nextend-facebook-connect/admin/templates/review.php:16
857
  msgid "Disliked it"
858
  msgstr "Nem tetszik"
859
 
860
- #: nextend-facebook-connect/admin/templates/review.php:17
861
  msgid "It was ok"
862
  msgstr "Ok"
863
 
864
- #: nextend-facebook-connect/admin/templates/review.php:18
865
  msgid "Liked it"
866
  msgstr "Szeretem"
867
 
868
- #: nextend-facebook-connect/admin/templates/review.php:19
869
  msgid "Loved it"
870
  msgstr "Imádom"
871
 
872
- #: nextend-facebook-connect/admin/templates/review.php:31
873
  msgid "Please Leave a Review"
874
  msgstr "Kérem hagyjon értékelést!"
875
 
876
- #: nextend-facebook-connect/admin/templates/review.php:32
877
  msgid ""
878
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
879
  "please leave us a review. It will be a tremendous help for us!"
@@ -881,384 +605,201 @@ msgstr ""
881
  "Ha tetszett a <b>Nextend Social Login</b> plugin és van egy pár szabad "
882
  "perce, kérem értékeljen minket. Nekünk ez hatalmas segítséget jelent!"
883
 
884
- #: nextend-facebook-connect/admin/templates/review.php:34
885
  msgid "Ok, you deserve it"
886
  msgstr "Rendben, megérdemlitek."
887
 
888
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
889
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:90
890
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:102
891
  msgid "Register form"
892
  msgstr "Regisztrációs form"
893
 
894
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
895
  msgid "No Connect button"
896
  msgstr "Ne legyen connect gomb"
897
 
898
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
899
  msgid "Connect button before register"
900
  msgstr "Connect gomb a regisztráció előtt."
901
 
902
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
903
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
904
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
905
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:27
906
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:99
907
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171
908
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
909
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
910
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171
911
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
912
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
913
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:111
914
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
915
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:169
916
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
917
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
918
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
919
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:248
920
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:299
921
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:304
922
  msgid "Action:"
923
  msgstr "Action:"
924
 
925
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
926
  msgid "Connect button before account details"
927
  msgstr "Connect gomb a fiók adatai részleg előtt"
928
 
929
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
930
  msgid "Connect button after register"
931
  msgstr "Connect gomb a regisztrációs form után"
932
 
933
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44
934
  msgid "Register button style"
935
  msgstr "Regisztrációs gomb stílusa"
936
 
937
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56
938
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:149
939
- #: nextend-facebook-connect/admin/templates/settings/comment.php:45
940
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41
941
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:103
942
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:45
943
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:117
944
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
945
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:117
946
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
947
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:114
948
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
949
  msgid "Fullwidth"
950
  msgstr ""
951
 
952
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:62
953
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155
954
- #: nextend-facebook-connect/admin/templates/settings/comment.php:51
955
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:47
956
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:109
957
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:51
958
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:123
959
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:51
960
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:123
961
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:63
962
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:120
963
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:36
964
- #: nextend-facebook-connect/widget.php:47
965
  msgid "Icon"
966
  msgstr "Ikon"
967
 
968
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:70
969
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
970
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
971
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
972
  #, fuzzy
973
  #| msgid "Login layout"
974
  msgid "Register layout"
975
  msgstr "Login elrendezése"
976
 
977
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:82
978
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:174
979
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60
980
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122
981
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:64
982
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:136
983
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
984
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
985
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
986
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
987
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
988
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
989
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:211
990
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:261
991
  msgid "Below"
992
  msgstr "Alul"
993
 
994
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88
995
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:180
996
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66
997
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128
998
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:70
999
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:142
1000
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1001
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1002
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1003
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1004
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1005
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1006
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1007
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:267
1008
  msgid "Below with separator"
1009
  msgstr "Alul, elválasztóval"
1010
 
1011
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:94
1012
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:186
1013
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78
1014
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:134
1015
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
1016
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:148
1017
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1018
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:148
1019
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1020
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:145
1021
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1022
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1023
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
1024
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:273
1025
  msgid "Above"
1026
  msgstr "Felül"
1027
 
1028
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:100
1029
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:192
1030
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:84
1031
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140
1032
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:82
1033
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:154
1034
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:82
1035
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:154
1036
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:94
1037
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:151
1038
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
1039
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:152
1040
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:229
1041
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:279
1042
  msgid "Above with separator"
1043
  msgstr "Felül, elválasztóval"
1044
 
1045
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:108
1046
  #, fuzzy
1047
  #| msgid "Login layout"
1048
  msgid "Sidebar Login form"
1049
  msgstr "Login elrendezése"
1050
 
1051
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:113
1052
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:129
1053
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
1054
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
1055
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
1056
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:26
1057
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:39
1058
  msgid "Hide login buttons"
1059
  msgstr ""
1060
 
1061
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:116
1062
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:132
1063
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
1064
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
1065
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
1066
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:23
1067
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:36
1068
- #: nextend-facebook-connect/widget.php:76
1069
  msgid "Show login buttons"
1070
  msgstr ""
1071
 
1072
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:117
1073
  msgid ""
1074
  "Some themes that use BuddyPress, display the social buttons twice in the "
1075
  "same login form. This option can disable the one for: "
1076
  "<b>bp_sidebar_login_form action</b>. "
1077
  msgstr ""
1078
 
1079
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124
1080
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1081
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1082
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
1083
  #, fuzzy
1084
  #| msgid "Login layout"
1085
  msgid "Login form"
1086
  msgstr "Login elrendezése"
1087
 
1088
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:137
1089
  #, fuzzy
1090
  #| msgid "Login form button style"
1091
  msgid "Login button style"
1092
  msgstr "Login gomb stílusa"
1093
 
1094
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162
1095
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54
1096
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:58
1097
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1098
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1099
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
1100
  msgid "Login layout"
1101
  msgstr "Login elrendezése"
1102
 
1103
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:200
1104
- #: nextend-facebook-connect/admin/templates/settings/comment.php:59
1105
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:53
1106
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:178
1107
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178
1108
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:159
1109
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:311
1110
  msgid "Button alignment"
1111
  msgstr "Gombok igazítása"
1112
 
1113
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:205
1114
- #: nextend-facebook-connect/admin/templates/settings/comment.php:64
1115
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:152
1116
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:58
1117
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:183
1118
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:183
1119
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:164
1120
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:316
1121
- #: nextend-facebook-connect/widget.php:57
1122
  msgid "Left"
1123
  msgstr "Bal"
1124
 
1125
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:208
1126
- #: nextend-facebook-connect/admin/templates/settings/comment.php:67
1127
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155
1128
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:61
1129
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:186
1130
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
1131
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
1132
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:319
1133
- #: nextend-facebook-connect/widget.php:62
1134
  msgid "Center"
1135
  msgstr "Közép"
1136
 
1137
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:212
1138
- #: nextend-facebook-connect/admin/templates/settings/comment.php:71
1139
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:159
1140
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:65
1141
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:190
1142
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:190
1143
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:171
1144
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1145
- #: nextend-facebook-connect/widget.php:67
1146
  msgid "Right"
1147
  msgstr "Jobb"
1148
 
1149
- #: nextend-facebook-connect/admin/templates/settings/comment.php:18
1150
  msgid "Login button"
1151
  msgstr "Login gomb"
1152
 
1153
- #: nextend-facebook-connect/admin/templates/settings/comment.php:23
1154
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
1155
  msgid "Show"
1156
  msgstr "Megjelenít"
1157
 
1158
- #: nextend-facebook-connect/admin/templates/settings/comment.php:26
1159
  msgid "Hide"
1160
  msgstr "Elrejt"
1161
 
1162
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1163
  #, php-format
1164
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
1165
  msgstr ""
1166
  "Ahhoz, hogy ez a funkció működjön, be kell kapcsolnod a ' %1$s > %2$s > %3$s "
1167
  "'-t."
1168
 
1169
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1170
  msgid "Discussion"
1171
  msgstr "Értekezés"
1172
 
1173
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1174
  msgid "Users must be registered and logged in to comment"
1175
  msgstr "A felhasználóknak be kell jelentkezve lenniük a kommenteléshez."
1176
 
1177
- #: nextend-facebook-connect/admin/templates/settings/comment.php:33
1178
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
1179
  msgid "Button style"
1180
  msgstr "Gomb stílus:"
1181
 
1182
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1183
  msgid "Target window"
1184
  msgstr "Célablak"
1185
 
1186
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34
1187
  msgid "Prefer popup"
1188
  msgstr "Felugró ablak"
1189
 
1190
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37
1191
  msgid "Prefer new tab"
1192
  msgstr "Új tab"
1193
 
1194
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40
1195
  msgid "Prefer same window"
1196
  msgstr "Ugyanazon ablak"
1197
 
1198
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46
1199
  msgid "Registration notification sent to"
1200
  msgstr "Regisztrációról értesítést kap"
1201
 
1202
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51
1203
- #: nextend-facebook-connect/admin/templates/settings/general.php:243
1204
  msgid "WordPress default"
1205
  msgstr "WordPress alapértelmezett"
1206
 
1207
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
1208
  msgid "Nobody"
1209
  msgstr "Senki"
1210
 
1211
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60
1212
  msgid "Admin"
1213
  msgstr "Admin"
1214
 
1215
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63
1216
  msgid "User and Admin"
1217
  msgstr "Felhasználó és Admin"
1218
 
1219
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69
1220
  msgid "Unlink"
1221
  msgstr "Szétkapcsolás "
1222
 
1223
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75
1224
  msgid "Allow Social account unlink"
1225
  msgstr "Szétkapcsolás engedélyezése"
1226
 
1227
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
1228
  msgid "Show linked providers"
1229
  msgstr ""
1230
 
1231
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1232
  #, php-format
1233
  msgid "Providers linked to the account will appear in the %1$s."
1234
  msgstr ""
1235
 
1236
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1237
  #, fuzzy
1238
  #| msgid "Test to Enable"
1239
  msgid "Users table"
1240
  msgstr "Tesztelés az Engedélyezéshez"
1241
 
1242
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:96
1243
  #, fuzzy
1244
  #| msgid "Disable login for the selected roles"
1245
  msgid "Disable Admin bar for roles"
1246
  msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek"
1247
 
1248
- #: nextend-facebook-connect/admin/templates/settings/general.php:43
1249
  msgid "Debug mode"
1250
  msgstr "Debug mód"
1251
 
1252
- #: nextend-facebook-connect/admin/templates/settings/general.php:57
1253
  msgid "Page for register flow"
1254
  msgstr "Page for register flow"
1255
 
1256
- #: nextend-facebook-connect/admin/templates/settings/general.php:67
1257
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
1258
  msgid "None"
1259
  msgstr "Semmi"
1260
 
1261
- #: nextend-facebook-connect/admin/templates/settings/general.php:75
1262
  msgid ""
1263
  "This setting is used when you request additional data from the users (such "
1264
  "as email address) and to display the Terms and conditions."
@@ -1267,7 +808,6 @@ msgstr ""
1267
  "( mint például email címet ) illetve a Felhasználói feltételek "
1268
  "megjelenítéséhez."
1269
 
1270
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1271
  #, php-format
1272
  msgid ""
1273
  "%2$s First create a new page and insert the following shortcode: %1$s then "
@@ -1276,13 +816,9 @@ msgstr ""
1276
  "%2$s Előszőr hozz létre egy új oldalt, majd másold be a következő shortcode-"
1277
  "ot: %1$s majd válaszd ki azt az oldal itt."
1278
 
1279
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1280
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1281
  msgid "Usage:"
1282
  msgstr "Használat"
1283
 
1284
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1285
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1286
  #, php-format
1287
  msgid ""
1288
  "%1$s You won't be able to reach the selected page unless a social login/"
@@ -1291,16 +827,12 @@ msgstr ""
1291
  "%1$s A kiválasztott csak a login és regisztráció folyamat számára less "
1292
  "elérhető."
1293
 
1294
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1295
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1296
  msgid "Important:"
1297
  msgstr "Fontos:"
1298
 
1299
- #: nextend-facebook-connect/admin/templates/settings/general.php:81
1300
  msgid "OAuth redirect uri proxy page"
1301
  msgstr "OAuth redirect uri proxy page"
1302
 
1303
- #: nextend-facebook-connect/admin/templates/settings/general.php:101
1304
  msgid ""
1305
  "You can use this setting when wp-login.php page is not available to handle "
1306
  "the OAuth flow."
@@ -1308,79 +840,60 @@ msgstr ""
1308
  "Ez a beállítás akkor használatos ha a wp-login.php oldal nem elérhető, hogy "
1309
  "kezelje az OAauth folyamatot."
1310
 
1311
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1312
  #, php-format
1313
  msgid "%1$s First create a new page then select this page above."
1314
  msgstr "%1$s Előszőr hozz létre egy új oldal majd válaszd ki azt az oldal itt."
1315
 
1316
- #: nextend-facebook-connect/admin/templates/settings/general.php:109
1317
  msgid "Prevent external redirect overrides"
1318
  msgstr "Külső átirányítások felülírása"
1319
 
1320
- #: nextend-facebook-connect/admin/templates/settings/general.php:115
1321
  msgid "Disable external redirects"
1322
  msgstr "Külső átirányítások letiltása"
1323
 
1324
- #: nextend-facebook-connect/admin/templates/settings/general.php:122
1325
  msgid "Default redirect url"
1326
  msgstr "Alapértelmezett átirányítási url"
1327
 
1328
- #: nextend-facebook-connect/admin/templates/settings/general.php:135
1329
- #: nextend-facebook-connect/admin/templates/settings/general.php:173
1330
  msgid "for Login"
1331
  msgstr "Loginkor"
1332
 
1333
- #: nextend-facebook-connect/admin/templates/settings/general.php:150
1334
- #: nextend-facebook-connect/admin/templates/settings/general.php:188
1335
  msgid "for Register"
1336
  msgstr "Regisztrációkor"
1337
 
1338
- #: nextend-facebook-connect/admin/templates/settings/general.php:160
1339
  msgid "Fixed redirect url"
1340
  msgstr "Fix átirányítási link"
1341
 
1342
- #: nextend-facebook-connect/admin/templates/settings/general.php:197
1343
  msgid "Blacklisted redirects"
1344
  msgstr "Tiltott átirányítások"
1345
 
1346
- #: nextend-facebook-connect/admin/templates/settings/general.php:203
1347
  msgid "If you want to blacklist redirect url params. One pattern per line."
1348
  msgstr ""
1349
 
1350
- #: nextend-facebook-connect/admin/templates/settings/general.php:208
1351
  msgid "Support login restrictions"
1352
  msgstr ""
1353
 
1354
- #: nextend-facebook-connect/admin/templates/settings/general.php:218
1355
  #, php-format
1356
  msgid "Please visit to our %1$s to check what plugins are supported!"
1357
  msgstr ""
1358
 
1359
- #: nextend-facebook-connect/admin/templates/settings/general.php:223
1360
  msgid "Display avatars in \"All media items\""
1361
  msgstr ""
1362
 
1363
- #: nextend-facebook-connect/admin/templates/settings/general.php:233
1364
  msgid ""
1365
  "Enabling this option can speed up loading images in Media Library - Grid "
1366
  "view!"
1367
  msgstr ""
1368
 
1369
- #: nextend-facebook-connect/admin/templates/settings/general.php:238
1370
  msgid "Membership"
1371
  msgstr ""
1372
 
1373
- #: nextend-facebook-connect/admin/templates/settings/general.php:251
1374
  msgid "Allow registration with Social login."
1375
  msgstr ""
1376
 
1377
- #: nextend-facebook-connect/admin/templates/settings/general.php:256
1378
  #, fuzzy
1379
  #| msgid "Page for register flow"
1380
  msgid "Custom label for register buttons"
1381
  msgstr "Page for register flow"
1382
 
1383
- #: nextend-facebook-connect/admin/templates/settings/general.php:266
1384
  #, php-format
1385
  msgid ""
1386
  "Set a custom label for the social buttons in registration forms and for "
@@ -1388,302 +901,197 @@ msgid ""
1388
  "can be modified at the Buttons tab of each provider."
1389
  msgstr ""
1390
 
1391
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1392
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1393
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1394
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1395
- msgid "Login form button style"
1396
- msgstr "Login gomb stílusa"
1397
-
1398
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72
1399
  msgid "Below and floating"
1400
  msgstr "Alul lebegve"
1401
 
1402
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91
1403
  msgid "Embedded Login form button style"
1404
  msgstr ""
1405
 
1406
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116
1407
  msgid "Embedded Login layout"
1408
  msgstr ""
1409
 
1410
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147
1411
  #, fuzzy
1412
  #| msgid "Login form button style"
1413
  msgid "Embedded login form button alignment"
1414
  msgstr "Login gomb stílusa"
1415
 
1416
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1417
- #: nextend-facebook-connect/includes/userData.php:152
1418
  msgid "Registration Form"
1419
  msgstr ""
1420
 
1421
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
1422
  msgid "Embedded login form"
1423
  msgstr ""
1424
 
1425
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:23
1426
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1427
- #, fuzzy
1428
- #| msgid "No Connect button in login form"
1429
- msgid "No Connect button in Login form"
1430
- msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1431
-
1432
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:26
1433
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:98
1434
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1435
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:98
1436
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
1437
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:57
1438
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
1439
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
1440
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
1441
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:173
1442
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:179
1443
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:185
1444
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:247
1445
- #, fuzzy
1446
- #| msgid "No Connect button in login form"
1447
- msgid "Connect button on"
1448
- msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1449
-
1450
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
1451
  msgid "Sign Up form"
1452
  msgstr ""
1453
 
1454
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:95
1455
  #, fuzzy
1456
  #| msgid "No Connect button in login form"
1457
  msgid "No Connect button in Sign Up form"
1458
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1459
 
1460
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:105
1461
  #, fuzzy
1462
  #| msgid "Login form button style"
1463
  msgid "Sign Up form button style"
1464
  msgstr "Login gomb stílusa"
1465
 
1466
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:130
1467
  #, fuzzy
1468
  #| msgid "Login layout"
1469
  msgid "Sign Up layout"
1470
  msgstr "Login elrendezése"
1471
 
1472
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:162
1473
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:162
1474
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:290
1475
  #, fuzzy
1476
  #| msgid "WooCommerce account details"
1477
  msgid "Account details"
1478
  msgstr "WooCommerce fiók részletes beállítások"
1479
 
1480
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:167
1481
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:167
1482
  msgid "No link buttons"
1483
  msgstr ""
1484
 
1485
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:170
1486
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:170
1487
  msgid "Link buttons after account details"
1488
  msgstr "Összekapcsoló gombok a profil részletes beállításai után"
1489
 
1490
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1491
- #: nextend-facebook-connect/nextend-social-login.php:152
1492
  msgid ""
1493
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1494
  "\"_blank\">Privacy Policy</a>"
1495
  msgstr ""
1496
 
1497
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1498
  msgid "Store"
1499
  msgstr ""
1500
 
1501
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1502
  msgid "First and last name"
1503
  msgstr ""
1504
 
1505
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1506
  msgid "When not enabled, username will be randomly generated."
1507
  msgstr ""
1508
 
1509
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1510
- #: nextend-social-login-pro/class-provider-extension.php:322
1511
  msgid "Email"
1512
  msgstr "Email"
1513
 
1514
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1515
  msgid "When not enabled, email will be empty."
1516
  msgstr ""
1517
 
1518
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1519
- #: nextend-facebook-connect/includes/avatar.php:49
1520
  msgid "Avatar"
1521
  msgstr ""
1522
 
1523
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1524
- #: nextend-facebook-connect/includes/provider.php:1108
1525
  msgid "Access token"
1526
  msgstr ""
1527
 
1528
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:95
1529
- #, fuzzy
1530
- #| msgid "No Connect button in login form"
1531
- msgid "No Connect button in Register form"
1532
- msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1533
-
1534
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
1535
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
1536
- #, fuzzy
1537
- #| msgid "Login form button style"
1538
- msgid "Register form button style"
1539
- msgstr "Login gomb stílusa"
1540
-
1541
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1542
  msgid "Register Form"
1543
  msgstr ""
1544
 
1545
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:49
1546
  msgid "No Connect button in login form"
1547
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1548
 
1549
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:107
1550
  msgid "No Connect button in register form"
1551
  msgstr ""
1552
 
1553
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:160
1554
  #, fuzzy
1555
  #| msgid "WooCommerce billing form"
1556
  msgid "Billing form"
1557
  msgstr "WooCommerce számlázási űrlap"
1558
 
1559
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:165
1560
  msgid "No Connect button in billing form"
1561
  msgstr "Ne legyen összekapcsoló gomb a számlázási űrlapnál"
1562
 
1563
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:193
1564
  #, fuzzy
1565
  #| msgid "Login layout"
1566
  msgid "Billing layout"
1567
  msgstr "Login elrendezése"
1568
 
1569
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:205
1570
  #, fuzzy
1571
  #| msgid "Below with separator"
1572
  msgid "Default with separator"
1573
  msgstr "Alul, elválasztóval"
1574
 
1575
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:239
1576
  msgid "Checkout for WooCommerce"
1577
  msgstr ""
1578
 
1579
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:244
1580
  #, fuzzy
1581
  #| msgid "No Connect button in login form"
1582
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1583
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1584
 
1585
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:255
1586
  msgid "Checkout for WooCommerce layout"
1587
  msgstr ""
1588
 
1589
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:295
1590
  #, fuzzy
1591
  #| msgid "No Connect button in login form"
1592
  msgid "No Connect buttons in account details form"
1593
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1594
 
1595
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:298
1596
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:303
1597
  #, fuzzy
1598
  #| msgid "Icon button"
1599
  msgid "Link buttons on"
1600
  msgstr "Ikon gomb"
1601
 
1602
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:329
1603
  #, fuzzy
1604
  #| msgid "Ask E-mail on registration"
1605
  msgid "Email template for registration"
1606
  msgstr "E-mail kérésére regisztrációkor"
1607
 
1608
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:334
1609
  #, fuzzy
1610
  #| msgid "WordPress default"
1611
  msgid "WordPress default notification"
1612
  msgstr "WordPress alapértelmezett"
1613
 
1614
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:337
1615
  #, fuzzy
1616
  #| msgid "Registration notification sent to"
1617
  msgid "WooCommerce registration notification"
1618
  msgstr "Regisztrációról értesítést kap"
1619
 
1620
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:339
1621
  #, php-format
1622
  msgid ""
1623
  "Defines whether the registration with %1$s will send the same registration "
1624
  "notification that %2$s does, instead of the %3$s default one."
1625
  msgstr ""
1626
 
1627
- #: nextend-facebook-connect/admin/templates/test-connection.php:42
1628
  #, fuzzy, php-format
1629
  #| msgid "Authentication successful"
1630
  msgid "Network connection successful: %1$s"
1631
  msgstr "Hitelesítés sikeres"
1632
 
1633
- #: nextend-facebook-connect/admin/templates/test-connection.php:49
1634
  #, php-format
1635
  msgid "Network connection failed: %1$s"
1636
  msgstr ""
1637
 
1638
- #: nextend-facebook-connect/admin/templates/test-connection.php:52
1639
  msgid ""
1640
  "Please contact with your hosting provider to resolve the network issue "
1641
  "between your server and the provider."
1642
  msgstr ""
1643
 
1644
- #: nextend-facebook-connect/includes/avatar.php:50
1645
  msgid "Manage Avatar"
1646
  msgstr ""
1647
 
1648
- #: nextend-facebook-connect/includes/avatar.php:51
1649
  #, php-format
1650
  msgid "Avatar <span class=\"count\">(%s)</span>"
1651
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1652
  msgstr[0] ""
1653
  msgstr[1] ""
1654
 
1655
- #: nextend-facebook-connect/includes/avatar.php:399
1656
  msgid "Invalid URL Provided."
1657
  msgstr ""
1658
 
1659
- #: nextend-facebook-connect/includes/avatar.php:404
1660
  msgid "Could not create Temporary file."
1661
  msgstr ""
1662
 
1663
- #: nextend-facebook-connect/includes/compat-wp-login.php:63
1664
  #, php-format
1665
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1666
  msgstr ""
1667
 
1668
- #: nextend-facebook-connect/includes/compat-wp-login.php:129
1669
  msgid "https://wordpress.org/"
1670
  msgstr ""
1671
 
1672
- #: nextend-facebook-connect/includes/compat-wp-login.php:130
1673
  msgid "Powered by WordPress"
1674
  msgstr ""
1675
 
1676
- #: nextend-facebook-connect/includes/compat-wp-login.php:284
1677
  #, php-format
1678
  msgctxt "site"
1679
  msgid "&larr; Back to %s"
1680
  msgstr ""
1681
 
1682
- #: nextend-facebook-connect/includes/provider-admin.php:199
1683
  msgid "Your configuration needs to be verified"
1684
  msgstr ""
1685
 
1686
- #: nextend-facebook-connect/includes/provider-admin.php:200
1687
  msgid ""
1688
  "Before you can start letting your users register with your app it needs to "
1689
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1697,15 +1105,12 @@ msgstr ""
1697
  "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. "
1698
  "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van."
1699
 
1700
- #: nextend-facebook-connect/includes/provider-admin.php:206
1701
  msgid "Please save your changes to verify settings."
1702
  msgstr ""
1703
 
1704
- #: nextend-facebook-connect/includes/provider-admin.php:214
1705
  msgid "Works Fine"
1706
  msgstr "Megfelelően Működik"
1707
 
1708
- #: nextend-facebook-connect/includes/provider-admin.php:228
1709
  #, php-format
1710
  msgid ""
1711
  "This provider is currently disabled, which means that users can’t register "
@@ -1714,7 +1119,6 @@ msgstr ""
1714
  "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a "
1715
  "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal."
1716
 
1717
- #: nextend-facebook-connect/includes/provider-admin.php:231
1718
  #, php-format
1719
  msgid ""
1720
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1724,7 +1128,6 @@ msgstr ""
1724
  "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s "
1725
  "fiókjukkal kikapcsolhatod a providertt."
1726
 
1727
- #: nextend-facebook-connect/includes/provider-admin.php:234
1728
  #, php-format
1729
  msgid ""
1730
  "This provider is currently enabled, which means that users can register or "
@@ -1733,52 +1136,36 @@ msgstr ""
1733
  "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók "
1734
  "regisztrálhatnak és beléphetnek a %s fiókjukkal."
1735
 
1736
- #: nextend-facebook-connect/includes/provider-admin.php:242
1737
  msgid "Verify Settings Again"
1738
  msgstr ""
1739
 
1740
- #: nextend-facebook-connect/includes/provider-admin.php:243
1741
  msgid "Please save your changes before verifying settings."
1742
  msgstr ""
1743
 
1744
- #: nextend-facebook-connect/includes/provider.php:364
1745
- #: nextend-facebook-connect/includes/provider.php:725
1746
- #: nextend-facebook-connect/includes/provider.php:733
1747
  msgid "Authentication successful"
1748
  msgstr "Hitelesítés sikeres"
1749
 
1750
- #: nextend-facebook-connect/includes/provider.php:662
1751
- #: nextend-facebook-connect/includes/user.php:170
1752
- #: nextend-facebook-connect/includes/user.php:606
1753
  msgid "Authentication error"
1754
  msgstr "Hitelesítési hiba"
1755
 
1756
- #: nextend-facebook-connect/includes/provider.php:677
1757
  msgid "Unlink successful."
1758
  msgstr "Szétkapcsolás sikeres"
1759
 
1760
- #: nextend-facebook-connect/includes/provider.php:679
1761
  msgid "Unlink is not allowed!"
1762
  msgstr ""
1763
 
1764
- #: nextend-facebook-connect/includes/provider.php:894
1765
- #: nextend-facebook-connect/includes/provider.php:901
1766
  msgid "The test was successful"
1767
  msgstr "A teszt sikeres volt"
1768
 
1769
- #: nextend-facebook-connect/includes/provider.php:947
1770
  msgid "Authentication failed"
1771
  msgstr "Hitelesítés sikertelen"
1772
 
1773
- #: nextend-facebook-connect/includes/provider.php:1100
1774
  msgid "Identifier"
1775
  msgstr ""
1776
 
1777
- #: nextend-facebook-connect/includes/provider.php:1116
1778
  msgid "Profile Picture"
1779
  msgstr ""
1780
 
1781
- #: nextend-facebook-connect/includes/user.php:76
1782
  #, php-format
1783
  msgid ""
1784
  "Your %1$s account is successfully linked with your account. Now you can sign "
@@ -1787,14 +1174,12 @@ msgstr ""
1787
  "A(z) %1$s fiók sikeresen össze lett kapcsolva a fiókoddal. Már könnyedén be "
1788
  "tudsz lépni a %2$s fiókoddal is."
1789
 
1790
- #: nextend-facebook-connect/includes/user.php:79
1791
  #, php-format
1792
  msgid ""
1793
  "You have already linked a(n) %s account. Please unlink the current and then "
1794
  "you can link another %s account."
1795
  msgstr ""
1796
 
1797
- #: nextend-facebook-connect/includes/user.php:84
1798
  #, fuzzy, php-format
1799
  #| msgid ""
1800
  #| "This %s account is already linked with other account. Linking process "
@@ -1804,11 +1189,9 @@ msgstr ""
1804
  "Az %s fiók már haszálva van egy másik közösségi fiókkal. Az összekapcsolási "
1805
  "folyamat sikertelen!"
1806
 
1807
- #: nextend-facebook-connect/includes/user.php:130
1808
  msgid "User registration is currently not allowed."
1809
  msgstr ""
1810
 
1811
- #: nextend-facebook-connect/includes/user.php:681
1812
  #, php-format
1813
  msgid ""
1814
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
@@ -1816,114 +1199,73 @@ msgid ""
1816
  "linked %1$s account or log in with your password!"
1817
  msgstr ""
1818
 
1819
- #: nextend-facebook-connect/includes/userData.php:152
1820
  #, fuzzy
1821
  #| msgid "Register button style"
1822
  msgid "Register For This Site"
1823
  msgstr "Regisztrációs gomb stílusa"
1824
 
1825
- #: nextend-facebook-connect/includes/userData.php:204
1826
  #, fuzzy
1827
  #| msgid "Register"
1828
  msgctxt "Register form submit button label"
1829
  msgid "Register"
1830
  msgstr "Regisztráció"
1831
 
1832
- #: nextend-facebook-connect/nextend-facebook-connect.php:37
1833
  #, php-format
1834
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1835
  msgstr ""
1836
 
1837
- #: nextend-facebook-connect/nextend-facebook-connect.php:44
1838
  #, php-format
1839
  msgid ""
1840
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1841
  "version, the plugin is currently NOT ACTIVE."
1842
  msgstr ""
1843
 
1844
- #: nextend-facebook-connect/nextend-social-login.php:56
1845
- #: nextend-facebook-connect/nextend-social-login.php:63
1846
  #, php-format
1847
  msgid "Please update %1$s to version %2$s or newer."
1848
  msgstr ""
1849
 
1850
- #: nextend-facebook-connect/nextend-social-login.php:56
1851
- #: nextend-facebook-connect/nextend-social-login.php:63
1852
  msgid "Update now!"
1853
  msgstr ""
1854
 
1855
- #: nextend-facebook-connect/nextend-social-login.php:846
1856
- #: nextend-facebook-connect/nextend-social-login.php:1225
1857
  msgid "Social Login"
1858
  msgstr "Közösségi belépés"
1859
 
1860
- #: nextend-facebook-connect/nextend-social-login.php:1206
1861
  msgid "Social Accounts"
1862
  msgstr ""
1863
 
1864
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:2
1865
- #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1866
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:2
1867
  msgid "Button skin"
1868
  msgstr "Gomb skin"
1869
 
1870
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:8
1871
- #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1872
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:14
1873
  msgid "Dark"
1874
  msgstr ""
1875
 
1876
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:14
1877
- #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1878
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:8
1879
  msgid "Light"
1880
  msgstr ""
1881
 
1882
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:20
1883
  msgid "Black"
1884
  msgstr ""
1885
 
1886
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:26
1887
  msgid "White"
1888
  msgstr ""
1889
 
1890
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1891
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1892
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1893
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1894
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8
1895
  #, fuzzy, php-format
1896
  #| msgid "Navigate to %s"
1897
  msgid "Navigate to <b>%s</b>"
1898
  msgstr "Látogasd meg ezt az oldalt: %s"
1899
 
1900
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1901
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1902
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1903
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1904
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1905
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:9
1906
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1907
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18
1908
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9
1909
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9
1910
  #, php-format
1911
  msgid "Log in with your %s credentials if you are not logged in"
1912
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
1913
 
1914
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
1915
  #, php-format
1916
  msgid "Click on the App with App ID: <b>%s</b>"
1917
  msgstr ""
1918
 
1919
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
1920
  #, fuzzy
1921
  #| msgid "In the left sidebar, click on \"Facebook Login\""
1922
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1923
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1924
 
1925
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:14
1926
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1927
  #, fuzzy
1928
  #| msgid ""
1929
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
@@ -1933,35 +1275,20 @@ msgid ""
1933
  msgstr ""
1934
  "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1935
 
1936
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:22
1937
  #, fuzzy
1938
  #| msgid "Click on \"Save Changes\""
1939
  msgid "Click on \"<b>Save Changes</b>\""
1940
  msgstr "Kattints a \"Save Changes\"-re"
1941
 
1942
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11
1943
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:13
1944
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11
1945
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22
1946
  #, php-format
1947
  msgid ""
1948
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1949
  "order to allow login with %1$s."
1950
  msgstr ""
1951
 
1952
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
1953
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:15
1954
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13
1955
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24
1956
  msgid "How to get SSL for my WordPress site?"
1957
  msgstr ""
1958
 
1959
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1960
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1961
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1962
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:10
1963
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1964
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10
1965
  #, php-format
1966
  msgid ""
1967
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -1976,70 +1303,19 @@ msgstr ""
1976
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
1977
  "alapján."
1978
 
1979
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1980
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
1981
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
1982
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1983
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:34
1984
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:14
1985
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:14
1986
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:14
1987
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
1988
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:14
1989
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:14
1990
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:14
1991
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:14
1992
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:15
1993
  #, php-format
1994
  msgctxt "App creation"
1995
  msgid "Create %s"
1996
  msgstr "%s létrehozása"
1997
 
1998
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1999
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2000
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
2001
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2002
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19
2003
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:39
2004
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
2005
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2006
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:8
2007
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:17
2008
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
2009
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
2010
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:8
2011
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:17
2012
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
2013
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2014
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
2015
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
2016
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
2017
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2018
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18
2019
  #, php-format
2020
  msgid "Navigate to %s"
2021
  msgstr "Látogasd meg ezt az oldalt: %s"
2022
 
2023
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2024
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2025
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2026
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2027
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:40
2028
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2029
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2030
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:18
2031
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:9
2032
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:18
2033
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2034
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
2035
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2036
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2037
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19
2038
  #, php-format
2039
  msgid "Log in with your %s credentials if you are not logged in."
2040
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2041
 
2042
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
2043
  #, fuzzy
2044
  #| msgid "Click the \"Create App\" button."
2045
  msgid ""
@@ -2047,38 +1323,32 @@ msgid ""
2047
  "\"<b>Consumer</b>\" App type!"
2048
  msgstr "Kattints a \"Create App\" gombra"
2049
 
2050
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
2051
  msgid ""
2052
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
2053
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
2054
  "finally verify your account."
2055
  msgstr ""
2056
 
2057
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2058
  #, php-format
2059
  msgid ""
2060
  "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
2061
  "specified \"App Display Name\" will appear on your %s!"
2062
  msgstr ""
2063
 
2064
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2065
  msgid ""
2066
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
2067
  "if you have any."
2068
  msgstr ""
2069
 
2070
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2071
  #, fuzzy
2072
  #| msgid "Click the \"Create App\" button."
2073
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
2074
  msgstr "Kattints a \"Create App\" gombra"
2075
 
2076
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2077
  #, php-format
2078
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
2079
  msgstr ""
2080
 
2081
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2082
  #, fuzzy, php-format
2083
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2084
  msgid ""
@@ -2086,34 +1356,28 @@ msgid ""
2086
  "field: <b>%s</b>"
2087
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2088
 
2089
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
2090
  #, fuzzy
2091
  #| msgid "Click on \"Save Changes\""
2092
  msgid "Press “<b>Save</b>”."
2093
  msgstr "Kattints a \"Save Changes\"-re"
2094
 
2095
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2096
  #, php-format
2097
  msgid ""
2098
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2099
  "%2$s</b> - <b>%3$s</b>”"
2100
  msgstr ""
2101
 
2102
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:47
2103
  #, fuzzy
2104
  #| msgid "Click on \"Save Changes\""
2105
  msgid "Click on “<b>Save Changes</b>”."
2106
  msgstr "Kattints a \"Save Changes\"-re"
2107
 
2108
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:48
2109
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:65
2110
  #, php-format
2111
  msgid ""
2112
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2113
  "%2$s</b>”."
2114
  msgstr ""
2115
 
2116
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:49
2117
  #, fuzzy, php-format
2118
  #| msgid "Enter your domain name to the App Domains"
2119
  msgid ""
@@ -2121,7 +1385,6 @@ msgid ""
2121
  "b>"
2122
  msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
2123
 
2124
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:50
2125
  #, fuzzy
2126
  #| msgid ""
2127
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
@@ -2136,26 +1399,22 @@ msgstr ""
2136
  "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen "
2137
  "információkat gyűjtesz és mihez kezdesz velük."
2138
 
2139
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2140
  msgid ""
2141
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2142
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2143
  "instructions on how users can delete their accounts on your site."
2144
  msgstr ""
2145
 
2146
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2147
  msgid ""
2148
  "To comply with GDPR, you should already offer possibility to delete accounts "
2149
  "on your site, either by the user or by the admin:"
2150
  msgstr ""
2151
 
2152
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2153
  msgid ""
2154
  "<u>If each user has an option to delete the account</u>: the URL should "
2155
  "point to a guide showing the way users can delete their accounts."
2156
  msgstr ""
2157
 
2158
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:57
2159
  msgid ""
2160
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
2161
  "section - usually in the Privacy Policy - with the contact details, where "
@@ -2163,14 +1422,12 @@ msgid ""
2163
  "point to this section of the document."
2164
  msgstr ""
2165
 
2166
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:62
2167
  msgid ""
2168
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2169
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2170
  "Changes</b>\"."
2171
  msgstr ""
2172
 
2173
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2174
  #, fuzzy
2175
  #| msgid ""
2176
  #| "Your application is currently private ( Status: In Development ), which "
@@ -2185,7 +1442,6 @@ msgstr ""
2185
  "vele. A felső menüben kattintsz az \"OFF\" választó gombra és válassz egy "
2186
  "kategóriát az Appodnak."
2187
 
2188
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:64
2189
  #, php-format
2190
  msgid ""
2191
  "By default, your application only has Standard access for the permissions, "
@@ -2195,7 +1451,6 @@ msgid ""
2195
  "should click on the <strong>%6$s</strong> buttons next to them. "
2196
  msgstr ""
2197
 
2198
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:66
2199
  #, fuzzy, php-format
2200
  #| msgid ""
2201
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -2209,7 +1464,6 @@ msgstr ""
2209
  "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
2210
  "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
2211
 
2212
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:69
2213
  #, php-format
2214
  msgid ""
2215
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
@@ -2220,11 +1474,9 @@ msgid ""
2220
  "the Facebook App, then please check our %2$sdocumentation%3$s."
2221
  msgstr ""
2222
 
2223
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:73
2224
  msgid "Maintaining the Facebook App:"
2225
  msgstr ""
2226
 
2227
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:74
2228
  #, php-format
2229
  msgid ""
2230
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
@@ -2235,76 +1487,16 @@ msgid ""
2235
  "that we need."
2236
  msgstr ""
2237
 
2238
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:78
2239
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:53
2240
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:46
2241
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:50
2242
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:134
2243
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:41
2244
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:40
2245
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:46
2246
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:43
2247
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:45
2248
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:46
2249
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:41
2250
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:41
2251
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:40
2252
  #, php-format
2253
  msgid "I am done setting up my %s"
2254
  msgstr "Befejeztem a %s appom elkészítését"
2255
 
2256
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:35
2257
- #: nextend-social-login-pro/providers/vk/admin/settings.php:27
2258
  msgid "App ID"
2259
  msgstr "App ID"
2260
 
2261
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:36
2262
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
2263
- #: nextend-facebook-connect/providers/google/admin/settings.php:28
2264
- #: nextend-facebook-connect/providers/google/admin/settings.php:41
2265
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
2266
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
2267
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
2268
- #: nextend-social-login-pro/providers/apple/admin/settings.php:79
2269
- #: nextend-social-login-pro/providers/apple/admin/settings.php:90
2270
- #: nextend-social-login-pro/providers/apple/admin/settings.php:99
2271
- #: nextend-social-login-pro/providers/apple/admin/settings.php:107
2272
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
2273
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
2274
- #: nextend-social-login-pro/providers/github/admin/settings.php:28
2275
- #: nextend-social-login-pro/providers/github/admin/settings.php:40
2276
- #: nextend-social-login-pro/providers/line/admin/settings.php:27
2277
- #: nextend-social-login-pro/providers/line/admin/settings.php:39
2278
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
2279
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
2280
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:27
2281
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:39
2282
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
2283
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
2284
- #: nextend-social-login-pro/providers/vk/admin/settings.php:28
2285
- #: nextend-social-login-pro/providers/vk/admin/settings.php:40
2286
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
2287
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
2288
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27
2289
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39
2290
  msgid "Required"
2291
  msgstr "Kötelező"
2292
 
2293
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:41
2294
- #: nextend-facebook-connect/providers/google/admin/settings.php:35
2295
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
2296
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
2297
- #: nextend-social-login-pro/providers/apple/admin/settings.php:34
2298
- #: nextend-social-login-pro/providers/apple/admin/settings.php:85
2299
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
2300
- #: nextend-social-login-pro/providers/github/admin/settings.php:34
2301
- #: nextend-social-login-pro/providers/line/admin/settings.php:33
2302
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
2303
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:33
2304
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
2305
- #: nextend-social-login-pro/providers/vk/admin/settings.php:34
2306
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
2307
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33
2308
  #, php-format
2309
  msgid ""
2310
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -2313,54 +1505,30 @@ msgstr ""
2313
  "Ha nem vagy benne biztos, hogy mit kell írnod a(z) %1$s mezőbe, menj vissza "
2314
  "az <a href=\"%2$s\">Első lépések</a> fülre."
2315
 
2316
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:47
2317
  msgid "App Secret"
2318
  msgstr "App Secret"
2319
 
2320
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2321
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:49
2322
  #, php-format
2323
  msgid ""
2324
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2325
  "longer be able to login with %1$s."
2326
  msgstr ""
2327
 
2328
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2329
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:51
2330
  msgid "Find out why?"
2331
  msgstr ""
2332
 
2333
- #: nextend-facebook-connect/providers/facebook/facebook.php:90
2334
  msgid "Continue with <b>Facebook</b>"
2335
  msgstr "Folytatás a <b>Facebook</b>-kal"
2336
 
2337
- #: nextend-facebook-connect/providers/facebook/facebook.php:91
2338
  msgid "Sign up with <b>Facebook</b>"
2339
  msgstr "Regisztrálás a <b>Facebook</b>-kal"
2340
 
2341
- #: nextend-facebook-connect/providers/facebook/facebook.php:92
2342
  msgid "Link account with <b>Facebook</b>"
2343
  msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
2344
 
2345
- #: nextend-facebook-connect/providers/facebook/facebook.php:93
2346
  msgid "Unlink account from <b>Facebook</b>"
2347
  msgstr "Szétkapcsolás <b>Facebook</b>-tól"
2348
 
2349
- #: nextend-facebook-connect/providers/facebook/facebook.php:193
2350
- #: nextend-facebook-connect/providers/google/google.php:168
2351
- #: nextend-facebook-connect/providers/twitter/twitter.php:97
2352
- #: nextend-social-login-pro/providers/amazon/amazon.php:67
2353
- #: nextend-social-login-pro/providers/apple/apple.php:115
2354
- #: nextend-social-login-pro/providers/apple/apple.php:122
2355
- #: nextend-social-login-pro/providers/disqus/disqus.php:114
2356
- #: nextend-social-login-pro/providers/github/github.php:152
2357
- #: nextend-social-login-pro/providers/line/line.php:63
2358
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2359
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:65
2360
- #: nextend-social-login-pro/providers/paypal/paypal.php:92
2361
- #: nextend-social-login-pro/providers/vk/vk.php:63
2362
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2363
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2364
  #, php-format
2365
  msgid ""
2366
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
@@ -2368,17 +1536,13 @@ msgstr ""
2368
  "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s "
2369
  "helyes."
2370
 
2371
- #: nextend-facebook-connect/providers/facebook/facebook.php:314
2372
- #: nextend-social-login-pro/providers/paypal/paypal.php:172
2373
  #, php-format
2374
  msgid "Required scope: %1$s"
2375
  msgstr ""
2376
 
2377
- #: nextend-facebook-connect/providers/google/admin/buttons.php:20
2378
  msgid "Uniform - Legacy"
2379
  msgstr ""
2380
 
2381
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
2382
  #, fuzzy
2383
  #| msgid ""
2384
  #| "Click on the \"Credentials\" in the left hand menu to create new API "
@@ -2388,15 +1552,12 @@ msgstr ""
2388
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
2389
  "adatokat készíts"
2390
 
2391
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
2392
  #, php-format
2393
  msgid ""
2394
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
2395
  "%s</b>"
2396
  msgstr ""
2397
 
2398
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:14
2399
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2400
  #, fuzzy, php-format
2401
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
2402
  msgid ""
@@ -2404,16 +1565,11 @@ msgid ""
2404
  "following URL:"
2405
  msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
2406
 
2407
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:22
2408
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:23
2409
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:23
2410
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:23
2411
  #, fuzzy
2412
  #| msgid "Click on \"Save\""
2413
  msgid "Click on \"<b>Save</b>\""
2414
  msgstr "Kattints a \"Save\" gombra"
2415
 
2416
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2417
  #, fuzzy, php-format
2418
  #| msgid ""
2419
  #| "If you don't have a project yet, you'll need to create one. You can do "
@@ -2432,20 +1588,17 @@ msgstr ""
2432
  "kattints a projected nevére a dashboardon, ami előfog hozni egy ablakot ahol "
2433
  "a \"New Project\"-re kell kattintanod.)"
2434
 
2435
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2436
  #, fuzzy, php-format
2437
  #| msgid "Name your project and then click on the Create button again"
2438
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2439
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
2440
 
2441
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2442
  msgid ""
2443
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2444
  "have already had a Project, then make sure you select the created project in "
2445
  "the top bar! )"
2446
  msgstr ""
2447
 
2448
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2449
  #, fuzzy, php-format
2450
  #| msgid ""
2451
  #| "Click on the \"Credentials\" in the left hand menu to create new API "
@@ -2455,7 +1608,6 @@ msgstr ""
2455
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
2456
  "adatokat készíts"
2457
 
2458
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2459
  #, php-format
2460
  msgid ""
2461
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
@@ -2463,7 +1615,6 @@ msgid ""
2463
  "account, then pick the \"%4$s\" option!"
2464
  msgstr ""
2465
 
2466
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2467
  #, php-format
2468
  msgid ""
2469
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
@@ -2471,21 +1622,18 @@ msgid ""
2471
  "%1$s!"
2472
  msgstr ""
2473
 
2474
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2475
  #, php-format
2476
  msgid ""
2477
  "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
2478
  "the name of the app asking for consent."
2479
  msgstr ""
2480
 
2481
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2482
  #, php-format
2483
  msgid ""
2484
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2485
  "contact you with questions about their consent."
2486
  msgstr ""
2487
 
2488
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2489
  #, fuzzy, php-format
2490
  #| msgid ""
2491
  #| "Fill the \"Authorized domains\" field with your domain name probably: <b>"
@@ -2497,34 +1645,29 @@ msgstr ""
2497
  "Írd be a weboldalad főoldalának címét a \"Authorized domains\" mezőbe. "
2498
  "Valószínűleg ez lesz az: <b>%s</b>"
2499
 
2500
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2501
  #, php-format
2502
  msgid ""
2503
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2504
  "notify you about any changes to your project."
2505
  msgstr ""
2506
 
2507
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2508
  #, php-format
2509
  msgid ""
2510
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2511
  "too!"
2512
  msgstr ""
2513
 
2514
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2515
  #, php-format
2516
  msgid ""
2517
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2518
  "\"<b>%2$s</b>\" button in the top bar."
2519
  msgstr ""
2520
 
2521
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2522
  #, fuzzy, php-format
2523
  #| msgid "Click on the Create button"
2524
  msgid "Choose the \"<b>%1$s</b>\" option."
2525
  msgstr "Kattints a \"Create\" gombra"
2526
 
2527
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2528
  #, fuzzy, php-format
2529
  #| msgid ""
2530
  #| "Click on the link \"registering an application\" under the Applications "
@@ -2533,18 +1676,15 @@ msgid "Select the \"<b>%1$s</b>\" under Application type."
2533
  msgstr ""
2534
  "Kattints a \"registering an application\" linker az Aplications tab alatt."
2535
 
2536
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2537
  #, php-format
2538
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2539
  msgstr ""
2540
 
2541
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:48
2542
  #, fuzzy, php-format
2543
  #| msgid "Click on the Create button"
2544
  msgid "Click on the \"<b>%1$s</b>\" button"
2545
  msgstr "Kattints a \"Create\" gombra"
2546
 
2547
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:49
2548
  #, fuzzy, php-format
2549
  #| msgid ""
2550
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
@@ -2561,58 +1701,35 @@ msgstr ""
2561
  "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a "
2562
  "nevére kattintva. Innen ki tudod másolni a Client ID-t és Client Secretet."
2563
 
2564
- #: nextend-facebook-connect/providers/google/admin/settings.php:27
2565
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2566
- #: nextend-social-login-pro/providers/apple/admin/settings.php:28
2567
- #: nextend-social-login-pro/providers/github/admin/settings.php:27
2568
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2569
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2570
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2571
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26
2572
  msgid "Client ID"
2573
  msgstr "Client ID"
2574
 
2575
- #: nextend-facebook-connect/providers/google/admin/settings.php:40
2576
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2577
- #: nextend-social-login-pro/providers/apple/admin/settings.php:39
2578
- #: nextend-social-login-pro/providers/github/admin/settings.php:39
2579
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2580
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2581
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38
2582
  msgid "Client Secret"
2583
  msgstr "Client Secret"
2584
 
2585
- #: nextend-facebook-connect/providers/google/admin/settings.php:47
2586
  msgid "Select account on each login"
2587
  msgstr ""
2588
 
2589
- #: nextend-facebook-connect/providers/google/admin/settings.php:56
2590
  msgid ""
2591
  "Disable, when you don't want to see the account select prompt on each login."
2592
  msgstr ""
2593
 
2594
- #: nextend-facebook-connect/providers/google/google.php:99
2595
  msgid "Continue with <b>Google</b>"
2596
  msgstr "Folytatás a <b>Google</b>-lel"
2597
 
2598
- #: nextend-facebook-connect/providers/google/google.php:100
2599
  msgid "Sign up with <b>Google</b>"
2600
  msgstr "Regisztrálás a <b>Google</b>-lel"
2601
 
2602
- #: nextend-facebook-connect/providers/google/google.php:101
2603
  msgid "Link account with <b>Google</b>"
2604
  msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
2605
 
2606
- #: nextend-facebook-connect/providers/google/google.php:102
2607
  msgid "Unlink account from <b>Google</b>"
2608
  msgstr "Szétkapcsolás <b>Google</b>-től"
2609
 
2610
- #: nextend-facebook-connect/providers/google/google.php:295
2611
  #, php-format
2612
  msgid "Required API: %1$s"
2613
  msgstr "Szükséges API: %1$s"
2614
 
2615
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2616
  #, fuzzy
2617
  #| msgid "Find your App and click on the Details button"
2618
  msgid ""
@@ -2620,58 +1737,48 @@ msgid ""
2620
  "like a gear.)"
2621
  msgstr "Keresd meg az Appod és kattints a Details gombra."
2622
 
2623
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2624
  #, fuzzy
2625
  #| msgid "Click the \"Create App\" button."
2626
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2627
  msgstr "Kattints a \"Create App\" gombra"
2628
 
2629
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2630
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2631
  #, fuzzy, php-format
2632
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2633
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
2634
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2635
 
2636
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:22
2637
  #, fuzzy, php-format
2638
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
2639
  msgid ""
2640
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2641
  msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
2642
 
2643
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2644
  msgid ""
2645
  "If you don't have a developer account yet, please apply one by filling all "
2646
  "the required details! This is required for the next steps!"
2647
  msgstr ""
2648
 
2649
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2650
  #, php-format
2651
  msgid ""
2652
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
2653
  "aren't already there!"
2654
  msgstr ""
2655
 
2656
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2657
  #, fuzzy, php-format
2658
  #| msgid "Click on \"Save\""
2659
  msgid "Click on \"<b>%s</b>\"!"
2660
  msgstr "Kattints a \"Save\" gombra"
2661
 
2662
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2663
  msgid ""
2664
  "Name your project, and go through the basic setup. You’ll need to select "
2665
  "your use case, give a description and enter a name for the App as well."
2666
  msgstr ""
2667
 
2668
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2669
  #, fuzzy, php-format
2670
  #| msgid "Click on \"Save\""
2671
  msgid "Click \"<b>%s</b>\"!"
2672
  msgstr "Kattints a \"Save\" gombra"
2673
 
2674
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2675
  #, php-format
2676
  msgid ""
2677
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
@@ -2679,32 +1786,27 @@ msgid ""
2679
  "press \"<b>Save Changes</b>\"."
2680
  msgstr ""
2681
 
2682
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2683
  #, php-format
2684
  msgid ""
2685
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2686
  "\" section click on the name of your App."
2687
  msgstr ""
2688
 
2689
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2690
  #, fuzzy, php-format
2691
  #| msgid "Name your project and then click on the Create button again"
2692
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2693
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
2694
 
2695
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2696
  #, fuzzy, php-format
2697
  #| msgid "Click on the Create button"
2698
  msgid "Switch on the \"<b>%s</b>\" option."
2699
  msgstr "Kattints a \"Create\" gombra"
2700
 
2701
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:39
2702
  #, fuzzy, php-format
2703
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2704
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2705
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2706
 
2707
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:40
2708
  #, php-format
2709
  msgid ""
2710
  "If you want to get the email address as well, then don’t forget to enable "
@@ -2712,226 +1814,170 @@ msgid ""
2712
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
2713
  msgstr ""
2714
 
2715
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:41
2716
  #, fuzzy, php-format
2717
  #| msgid "Click on \"Save\""
2718
  msgid "Click on \"<b>%s</b>\"."
2719
  msgstr "Kattints a \"Save\" gombra"
2720
 
2721
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:42
2722
  #, php-format
2723
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2724
  msgstr ""
2725
 
2726
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2727
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2728
  msgid "API Key"
2729
  msgstr ""
2730
 
2731
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2732
  msgid "API secret key"
2733
  msgstr ""
2734
 
2735
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2736
  msgid "Profile image size"
2737
  msgstr ""
2738
 
2739
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2740
  msgid "Original"
2741
  msgstr ""
2742
 
2743
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
2744
  msgid "Continue with <b>Twitter</b>"
2745
  msgstr "Folytatás a <b>Twitter</b>-rel"
2746
 
2747
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2748
  msgid "Sign up with <b>Twitter</b>"
2749
  msgstr "Regisztrálás a <b>Twitter</b>-rel"
2750
 
2751
- #: nextend-facebook-connect/providers/twitter/twitter.php:72
2752
  msgid "Link account with <b>Twitter</b>"
2753
  msgstr "Fiók összekapcsolása a <b>Twitter</b>-rel"
2754
 
2755
- #: nextend-facebook-connect/providers/twitter/twitter.php:73
2756
  msgid "Unlink account from <b>Twitter</b>"
2757
  msgstr "Szétkapcsolás <b>Twitter</b>-től"
2758
 
2759
- #: nextend-facebook-connect/widget.php:10
2760
  #, php-format
2761
  msgid "%s Buttons"
2762
  msgstr "%s Gombok"
2763
 
2764
- #: nextend-facebook-connect/widget.php:30
2765
  msgid "Title:"
2766
  msgstr ""
2767
 
2768
- #: nextend-facebook-connect/widget.php:38
2769
  msgid "Button style:"
2770
  msgstr "Gomb stílus:"
2771
 
2772
- #: nextend-facebook-connect/widget.php:53
2773
  msgid "Button align:"
2774
  msgstr "Gombok igazítása"
2775
 
2776
- #: nextend-facebook-connect/widget.php:85
2777
  msgid "Show link buttons"
2778
  msgstr ""
2779
 
2780
- #: nextend-facebook-connect/widget.php:94
2781
  msgid "Show unlink buttons"
2782
  msgstr ""
2783
 
2784
- #: nextend-social-login-pro/class-provider-extension.php:117
2785
  msgid "Social login is not allowed with this role!"
2786
  msgstr ""
2787
  "A közösségi fiókkal való belépés nem engedélyezett erre a felhasználói "
2788
  "szintre."
2789
 
2790
- #: nextend-social-login-pro/class-provider-extension.php:213
2791
  msgid "Please enter a username."
2792
  msgstr ""
2793
 
2794
- #: nextend-social-login-pro/class-provider-extension.php:216
2795
  msgid ""
2796
  "This username is invalid because it uses illegal characters. Please enter a "
2797
  "valid username."
2798
  msgstr ""
2799
 
2800
- #: nextend-social-login-pro/class-provider-extension.php:222
2801
  msgid ""
2802
  "<strong>Error</strong>: This username is already registered. Please choose "
2803
  "another one."
2804
  msgstr ""
2805
 
2806
- #: nextend-social-login-pro/class-provider-extension.php:229
2807
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
2808
  msgstr ""
2809
 
2810
- #: nextend-social-login-pro/class-provider-extension.php:247
2811
  msgid "Username"
2812
  msgstr ""
2813
 
2814
- #: nextend-social-login-pro/class-provider-extension.php:300
2815
  msgid "<strong>Error</strong>: Please enter an email address."
2816
  msgstr ""
2817
 
2818
- #: nextend-social-login-pro/class-provider-extension.php:303
2819
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
2820
  msgstr ""
2821
 
2822
- #: nextend-social-login-pro/class-provider-extension.php:307
2823
  msgid ""
2824
  "<strong>Error</strong>: This email is already registered. Please choose "
2825
  "another one."
2826
  msgstr ""
2827
 
2828
- #: nextend-social-login-pro/class-provider-extension.php:327
2829
  msgid "Registration confirmation will be emailed to you."
2830
  msgstr ""
2831
 
2832
- #: nextend-social-login-pro/class-provider-extension.php:386
2833
  msgid "<strong>Error</strong>: Please enter a password."
2834
  msgstr ""
2835
 
2836
- #: nextend-social-login-pro/class-provider-extension.php:392
2837
  msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
2838
  msgstr ""
2839
 
2840
- #: nextend-social-login-pro/class-provider-extension.php:398
2841
  msgid ""
2842
  "<strong>Error</strong>: Passwords don&#8217;t match. Please enter the same "
2843
  "password in both password fields."
2844
  msgstr ""
2845
 
2846
- #: nextend-social-login-pro/class-provider-extension.php:415
2847
  msgid "Password"
2848
  msgstr ""
2849
 
2850
- #: nextend-social-login-pro/class-provider-extension.php:425
2851
  msgid "Strength indicator"
2852
  msgstr ""
2853
 
2854
- #: nextend-social-login-pro/class-provider-extension.php:430
2855
  msgid "Confirm use of weak password"
2856
  msgstr ""
2857
 
2858
- #: nextend-social-login-pro/class-provider-extension.php:436
2859
  msgid "Confirm password"
2860
  msgstr ""
2861
 
2862
- #: nextend-social-login-pro/class-provider-extension.php:448
2863
  #, php-format
2864
  msgid ""
2865
  "This email is already registered, please login in to your account to link "
2866
  "with %1$s."
2867
  msgstr ""
2868
 
2869
- #: nextend-social-login-pro/nextend-social-login-pro.php:104
2870
  #, php-format
2871
  msgid "Please install and activate %1$s to use the %2$s"
2872
  msgstr ""
2873
 
2874
- #: nextend-social-login-pro/nextend-social-login-pro.php:118
2875
  msgid "Network Activate"
2876
  msgstr ""
2877
 
2878
- #: nextend-social-login-pro/nextend-social-login-pro.php:130
2879
  msgid "Install now!"
2880
  msgstr ""
2881
 
2882
- #: nextend-social-login-pro/nextend-social-login-pro.php:826
2883
  #, fuzzy
2884
  #| msgid "Providers"
2885
  msgid "Social Providers"
2886
  msgstr "Providerek"
2887
 
2888
- #: nextend-social-login-pro/provider-extensions/facebook.php:74
2889
  #, php-format
2890
  msgid ""
2891
  "The Facebook Sync data needs an approved %1$s and your App must use the "
2892
  "latest %2$s version!"
2893
  msgstr ""
2894
 
2895
- #: nextend-social-login-pro/provider-extensions/google.php:187
2896
  #, php-format
2897
  msgid ""
2898
  "Most of these information can only be retrieved, when the field is marked as "
2899
  "Public on the user's %s page!"
2900
  msgstr ""
2901
 
2902
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2903
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2904
  #, php-format
2905
  msgid "Visit %s"
2906
  msgstr "Látogass el ide: %s."
2907
 
2908
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2909
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2910
  msgid ""
2911
  "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
2912
  "select \"<b>Web Settings</b>\" option."
2913
  msgstr ""
2914
 
2915
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2916
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2917
  msgid "Click \"<b>Edit</b>\"."
2918
  msgstr ""
2919
 
2920
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:15
2921
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
2922
  #, fuzzy
2923
  #| msgid ""
2924
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2925
  msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2926
  msgstr "Tedd a következő linket az \"Allowed Return URLs\" mezőbe: <b>%s</b>"
2927
 
2928
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
2929
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2930
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:10
2931
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:10
2932
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2933
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2934
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10
2935
  #, php-format
2936
  msgid ""
2937
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -2946,7 +1992,6 @@ msgstr ""
2946
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
2947
  "alapján."
2948
 
2949
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
2950
  #, fuzzy
2951
  #| msgid ""
2952
  #| "If you don't have a Security Profile yet, you'll need to create one. You "
@@ -2961,17 +2006,14 @@ msgstr ""
2961
  "narancssárga \"Create a New Security Profile\" gombra kattintva a bal "
2962
  "oldalon."
2963
 
2964
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
2965
  msgid ""
2966
  "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
2967
  "\" and \"<b>Consent Privacy Notice URL</b>\"."
2968
  msgstr ""
2969
 
2970
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
2971
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
2972
  msgstr ""
2973
 
2974
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
2975
  #, fuzzy, php-format
2976
  #| msgid ""
2977
  #| "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</"
@@ -2983,12 +2025,9 @@ msgstr ""
2983
  "Írd be a weboldalad főoldalának címét a \"Allowed Origins\" mezőbe. "
2984
  "Valószínűleg ez lesz az: <b>%s</b>"
2985
 
2986
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:45
2987
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:41
2988
  msgid "When all fields are filled, click \"<b>Save</b>\"."
2989
  msgstr ""
2990
 
2991
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:46
2992
  #, fuzzy
2993
  #| msgid ""
2994
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -3000,41 +2039,31 @@ msgstr ""
3000
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
3001
  "Web Settings tab alatt."
3002
 
3003
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
3004
  msgid "Continue with <b>Amazon</b>"
3005
  msgstr "Folytatás az <b>Amazon</b>-nal"
3006
 
3007
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
3008
  msgid "Sign up with <b>Amazon</b>"
3009
  msgstr "Regisztrálás az <b>Amazon</b>-nal"
3010
 
3011
- #: nextend-social-login-pro/providers/amazon/amazon.php:42
3012
  msgid "Link account with <b>Amazon</b>"
3013
  msgstr "Fiók összekapcsolása az <b>Amazon</b>-nal"
3014
 
3015
- #: nextend-social-login-pro/providers/amazon/amazon.php:43
3016
  msgid "Unlink account from <b>Amazon</b>"
3017
  msgstr "Szétkapcsolás <b>Amazon</b>-tól"
3018
 
3019
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
3020
  #, fuzzy
3021
  #| msgid "Click on the name of your %s App."
3022
  msgid "Click on the name of your service."
3023
  msgstr "Kattints az %s Appod nevére."
3024
 
3025
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22
3026
  msgid ""
3027
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
3028
  msgstr ""
3029
 
3030
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23
3031
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56
3032
  #, php-format
3033
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
3034
  msgstr ""
3035
 
3036
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24
3037
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:82
3038
  #, fuzzy, php-format
3039
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
3040
  msgid ""
@@ -3044,20 +2073,16 @@ msgstr ""
3044
  "Írd be a weboldalad főoldalának címét a \"Base domain\" mezőbe. Valószínűleg "
3045
  "ez lesz az: <b>%s</b>"
3046
 
3047
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:27
3048
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:85
3049
  #, fuzzy
3050
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3051
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3052
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
3053
 
3054
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:35
3055
  msgid ""
3056
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
3057
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
3058
  msgstr ""
3059
 
3060
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30
3061
  #, fuzzy, php-format
3062
  #| msgid ""
3063
  #| "To allow your visitors to log in with their %1$s account, first you must "
@@ -3078,7 +2103,6 @@ msgstr ""
3078
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
3079
  "alapján."
3080
 
3081
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37
3082
  msgid ""
3083
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
3084
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
@@ -3086,35 +2110,29 @@ msgid ""
3086
  "App!"
3087
  msgstr ""
3088
 
3089
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
3090
  msgid ""
3091
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
3092
  "b>!"
3093
  msgstr ""
3094
 
3095
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43
3096
  msgid "1.) Create the associated App:"
3097
  msgstr ""
3098
 
3099
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45
3100
  #, php-format
3101
  msgid ""
3102
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
3103
  "option and click the \"Continue\" button."
3104
  msgstr ""
3105
 
3106
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46
3107
  #, php-format
3108
  msgid ""
3109
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
3110
  "\"<b>Continue</b>\" button."
3111
  msgstr ""
3112
 
3113
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47
3114
  msgid "Enter a \"<b>Description</b>\""
3115
  msgstr ""
3116
 
3117
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:48
3118
  #, php-format
3119
  msgid ""
3120
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
@@ -3122,183 +2140,148 @@ msgid ""
3122
  "app at its end: <b>%s.nslapp</b>"
3123
  msgstr ""
3124
 
3125
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:49
3126
  msgid ""
3127
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
3128
  "b>\" option."
3129
  msgstr ""
3130
 
3131
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50
3132
  msgid ""
3133
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
3134
  "\"<b>Register</b>\" button."
3135
  msgstr ""
3136
 
3137
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53
3138
  msgid "2.) Create the Key:"
3139
  msgstr ""
3140
 
3141
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55
3142
  #, php-format
3143
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
3144
  msgstr ""
3145
 
3146
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57
3147
  msgid "Enter a name in the <b>Key Name</b> field."
3148
  msgstr ""
3149
 
3150
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58
3151
  msgid ""
3152
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
3153
  "b>\"."
3154
  msgstr ""
3155
 
3156
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:59
3157
  msgid ""
3158
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
3159
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
3160
  "\"."
3161
  msgstr ""
3162
 
3163
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:60
3164
  msgid ""
3165
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
3166
  "\" button."
3167
  msgstr ""
3168
 
3169
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61
3170
  msgid "<b>Don't download the key yet!</b>"
3171
  msgstr ""
3172
 
3173
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64
3174
  msgid "3.) Create the Service:"
3175
  msgstr ""
3176
 
3177
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66
3178
  #, php-format
3179
  msgid ""
3180
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
3181
  "tab."
3182
  msgstr ""
3183
 
3184
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:67
3185
  #, php-format
3186
  msgid ""
3187
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
3188
  "option and click the \"<b>Continue</b>\" button."
3189
  msgstr ""
3190
 
3191
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:68
3192
  msgid "Enter a \"<b>Description</b>\"."
3193
  msgstr ""
3194
 
3195
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69
3196
  #, php-format
3197
  msgid ""
3198
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
3199
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
3200
  msgstr ""
3201
 
3202
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72
3203
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
3204
  msgstr ""
3205
 
3206
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:75
3207
  msgid ""
3208
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
3209
  msgstr ""
3210
 
3211
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76
3212
  #, php-format
3213
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
3214
  msgstr ""
3215
 
3216
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79
3217
  msgid ""
3218
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
3219
  "b>\" button next to it."
3220
  msgstr ""
3221
 
3222
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:81
3223
  msgid ""
3224
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
3225
  "App what you just created."
3226
  msgstr ""
3227
 
3228
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:95
3229
  #, fuzzy
3230
  #| msgid "Click the \"Create App\" button."
3231
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
3232
  msgstr "Kattints a \"Create App\" gombra"
3233
 
3234
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:96
3235
  msgid ""
3236
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
3237
  "button."
3238
  msgstr ""
3239
 
3240
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99
3241
  msgid "4.) Configure Nextend Social Login with your credentials:"
3242
  msgstr ""
3243
 
3244
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:101
3245
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
3246
  msgstr ""
3247
 
3248
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:102
3249
  msgid "<strong><u>Private Key ID:</u></strong>"
3250
  msgstr ""
3251
 
3252
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:104
3253
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
3254
  #, fuzzy, php-format
3255
  #| msgid "Navigate to %s"
3256
  msgid "Navigate to: <b>%s</b>"
3257
  msgstr "Látogasd meg ezt az oldalt: %s"
3258
 
3259
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105
3260
  #, fuzzy
3261
  #| msgid "Click on the name of your %s App."
3262
  msgid "Click on the <b>name of your Key</b>."
3263
  msgstr "Kattints az %s Appod nevére."
3264
 
3265
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:106
3266
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
3267
  msgstr ""
3268
 
3269
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:109
3270
  msgid "<strong><u>Private Key:</u></strong>"
3271
  msgstr ""
3272
 
3273
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111
3274
  msgid ""
3275
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
3276
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
3277
  "this file safe</b>!</u> "
3278
  msgstr ""
3279
 
3280
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:112
3281
  msgid ""
3282
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
3283
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
3284
  "\" field of Nextend Social Login."
3285
  msgstr ""
3286
 
3287
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115
3288
  msgid "<strong><u>Team Identifier:</u></strong>"
3289
  msgstr ""
3290
 
3291
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:117
3292
  msgid ""
3293
  "A 10 character long identifier, what you can find on the <b>top-right "
3294
  "corner, just under your name</b>."
3295
  msgstr ""
3296
 
3297
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:120
3298
  msgid "<strong><u>Service Identifier:</u></strong>"
3299
  msgstr ""
3300
 
3301
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:123
3302
  #, php-format
3303
  msgid ""
3304
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
@@ -3306,103 +2289,78 @@ msgid ""
3306
  "e.g.: <b>%s.nslclient</b>"
3307
  msgstr ""
3308
 
3309
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:126
3310
  msgid ""
3311
  "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
3312
  "button."
3313
  msgstr ""
3314
 
3315
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:127
3316
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
3317
  msgstr ""
3318
 
3319
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:128
3320
  msgid ""
3321
  "When you need to change your credentials for some reason, then you must "
3322
  "delete the token, copy the new credentials and generate a new token!"
3323
  msgstr ""
3324
 
3325
- #: nextend-social-login-pro/providers/apple/admin/settings.php:48
3326
  msgid "Delete credentials"
3327
  msgstr ""
3328
 
3329
- #: nextend-social-login-pro/providers/apple/admin/settings.php:78
3330
  msgid "Private Key ID"
3331
  msgstr ""
3332
 
3333
- #: nextend-social-login-pro/providers/apple/admin/settings.php:89
3334
  #, fuzzy
3335
  #| msgid "Privacy"
3336
  msgid "Private Key"
3337
  msgstr "Privacy"
3338
 
3339
- #: nextend-social-login-pro/providers/apple/admin/settings.php:98
3340
  msgid "Team Identifier"
3341
  msgstr ""
3342
 
3343
- #: nextend-social-login-pro/providers/apple/admin/settings.php:106
3344
  msgid "Service Identifier"
3345
  msgstr ""
3346
 
3347
- #: nextend-social-login-pro/providers/apple/admin/settings.php:116
3348
  msgid "Generate Token"
3349
  msgstr ""
3350
 
3351
- #: nextend-social-login-pro/providers/apple/apple.php:67
3352
  msgid "Continue with <b>Apple</b>"
3353
  msgstr "Folytatás az <b>Apple</b>-lel"
3354
 
3355
- #: nextend-social-login-pro/providers/apple/apple.php:68
3356
  msgid "Sign up with <b>Apple</b>"
3357
  msgstr "Regisztrálás az <b>Apple</b>-lel"
3358
 
3359
- #: nextend-social-login-pro/providers/apple/apple.php:69
3360
  msgid "Link account with <b>Apple</b>"
3361
  msgstr "Fiók összekapcsolása az <b>Apple</b>-lel"
3362
 
3363
- #: nextend-social-login-pro/providers/apple/apple.php:70
3364
  msgid "Unlink account from <b>Apple</b>"
3365
  msgstr "Szétkapcsolás <b>Apple</b>-től"
3366
 
3367
- #: nextend-social-login-pro/providers/apple/apple.php:164
3368
  #, php-format
3369
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3370
  msgstr ""
3371
 
3372
- #: nextend-social-login-pro/providers/apple/apple.php:168
3373
- #: nextend-social-login-pro/providers/apple/apple.php:266
3374
- #: nextend-social-login-pro/providers/apple/apple.php:281
3375
- #: nextend-social-login-pro/providers/apple/apple.php:325
3376
  #, php-format
3377
  msgid "Token generation failed: %1$s"
3378
  msgstr ""
3379
 
3380
- #: nextend-social-login-pro/providers/apple/apple.php:168
3381
  msgid "Please check your credentials!"
3382
  msgstr ""
3383
 
3384
- #: nextend-social-login-pro/providers/apple/apple.php:266
3385
  msgid "Private key format is not valid!"
3386
  msgstr ""
3387
 
3388
- #: nextend-social-login-pro/providers/apple/apple.php:292
3389
  #, php-format
3390
  msgid ""
3391
  "%s detected that your Apple credentials have expired. Please delete the "
3392
  "current credentials and generate new one!"
3393
  msgstr ""
3394
 
3395
- #: nextend-social-login-pro/providers/apple/apple.php:294
3396
  msgid "Apple Credentials"
3397
  msgstr ""
3398
 
3399
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
3400
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
3401
  #, php-format
3402
  msgid "Click on the name of your %s App."
3403
  msgstr "Kattints az %s Appod nevére."
3404
 
3405
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:11
3406
  #, fuzzy
3407
  #| msgid ""
3408
  #| "Select \"Read only\" at Default Access under the Authentication section."
@@ -3413,21 +2371,16 @@ msgstr ""
3413
  "Válaszd ki a \"Read only\"-t a Default Access-nél az Authentication "
3414
  "szekcióban."
3415
 
3416
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
3417
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:27
3418
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:33
3419
  #, fuzzy
3420
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3421
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3422
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
3423
 
3424
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:22
3425
  #, fuzzy
3426
  #| msgid "Click on the \"Save Changes\" button."
3427
  msgid "Click on the \"<b>Save Changes</b>\" button."
3428
  msgstr "Kattints a \"Save Changes\" gombra."
3429
 
3430
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
3431
  #, fuzzy
3432
  #| msgid ""
3433
  #| "Click on the link \"registering an application\" under the Applications "
@@ -3438,11 +2391,9 @@ msgid ""
3438
  msgstr ""
3439
  "Kattints a \"registering an application\" linker az Aplications tab alatt."
3440
 
3441
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
3442
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
3443
  msgstr ""
3444
 
3445
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
3446
  #, fuzzy, php-format
3447
  #| msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
3448
  msgid ""
@@ -3451,7 +2402,6 @@ msgstr ""
3451
  "Írd be a weboldalad főoldalának címét a \"Website\" mezőbe. Valószínűleg ez "
3452
  "lesz az: <b>%s</b>"
3453
 
3454
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
3455
  #, fuzzy
3456
  #| msgid ""
3457
  #| "Complete the Human test and click the \"Register my application\" button."
@@ -3462,7 +2412,6 @@ msgstr ""
3462
  "Végezze el az Ember tesztet és kattintson a \"Register my application\" "
3463
  "gombra."
3464
 
3465
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
3466
  #, fuzzy, php-format
3467
  #| msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
3468
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
@@ -3470,7 +2419,6 @@ msgstr ""
3470
  "Írd be a weboldalad főoldalának címét a \"Domains\" mezőbe. Valószínűleg ez "
3471
  "lesz az: <b>%s</b>"
3472
 
3473
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
3474
  #, fuzzy
3475
  #| msgid ""
3476
  #| "Select \"Read only\" at Default Access under the Authentication section."
@@ -3481,19 +2429,16 @@ msgstr ""
3481
  "Válaszd ki a \"Read only\"-t a Default Access-nél az Authentication "
3482
  "szekcióban."
3483
 
3484
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:35
3485
  #, fuzzy
3486
  #| msgid "Click on the \"Save Changes\" button."
3487
  msgid "Click on the \"<b>Save Changes</b>\" button!"
3488
  msgstr "Kattints a \"Save Changes\" gombra."
3489
 
3490
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:36
3491
  #, fuzzy
3492
  #| msgid "Navigate to the \"Details\" tab of your Application!"
3493
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
3494
  msgstr "Navigálj az alkalmazásod \"Details\" tabjára."
3495
 
3496
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:37
3497
  #, fuzzy
3498
  #| msgid ""
3499
  #| "Here you can see your \"API Key\" and \"API Secret:\". These will be "
@@ -3505,65 +2450,52 @@ msgstr ""
3505
  "Itt találod az \"API Key\"-t és az \"API Secret\"-et. Ezekre lesz szükséged "
3506
  "a plugin beállításainál."
3507
 
3508
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
3509
  msgid "API Secret"
3510
  msgstr "API Secret"
3511
 
3512
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
3513
  msgid "Continue with <b>Disqus</b>"
3514
  msgstr "Folytatás a <b>Disqus</b>-szal"
3515
 
3516
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3517
  msgid "Sign up with <b>Disqus</b>"
3518
  msgstr "Regisztrálás a <b>Disqus</b>-szal"
3519
 
3520
- #: nextend-social-login-pro/providers/disqus/disqus.php:89
3521
  msgid "Link account with <b>Disqus</b>"
3522
  msgstr "Fiók összekapcsolása a <b>Disqus</b>-szal"
3523
 
3524
- #: nextend-social-login-pro/providers/disqus/disqus.php:90
3525
  msgid "Unlink account from <b>Disqus</b>"
3526
  msgstr "Szétkapcsolás <b>Disqus</b>-tól"
3527
 
3528
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
3529
  #, fuzzy, php-format
3530
  #| msgid "Click on the name of your %s App."
3531
  msgid "Click on the name of the App you configured %s with."
3532
  msgstr "Kattints az %s Appod nevére."
3533
 
3534
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:11
3535
  #, fuzzy, php-format
3536
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3537
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
3538
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
3539
 
3540
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:14
3541
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:25
3542
  #, fuzzy
3543
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3544
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
3545
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
3546
 
3547
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:22
3548
  #, fuzzy
3549
  #| msgid "Hit update to save the changes"
3550
  msgid "Press the <b>Update application</b> button to save the changes."
3551
  msgstr "Kattints az \"update\" gombra és mentsd el a beállításaidat."
3552
 
3553
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:19
3554
  #, php-format
3555
  msgid ""
3556
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
3557
  "button."
3558
  msgstr ""
3559
 
3560
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:20
3561
  msgid ""
3562
  "Enter a name into the <b>Application name</b> field. Users will see this "
3563
  "name, when they authorize your app at the OAuth consent screen!"
3564
  msgstr ""
3565
 
3566
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:21
3567
  #, fuzzy, php-format
3568
  #| msgid ""
3569
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
@@ -3573,19 +2505,16 @@ msgstr ""
3573
  "Írd be a weboldalad főoldalának címét a \"Website URL\" mezőbe. "
3574
  "Valószínűleg ez lesz az: <b>%s</b>"
3575
 
3576
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:22
3577
  msgid ""
3578
  "In the <b>Description</b> field you should explain what this App will be "
3579
  "used for."
3580
  msgstr ""
3581
 
3582
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:33
3583
  #, fuzzy
3584
  #| msgid "Click on the \"Create New Application\" button."
3585
  msgid "Click the <b>Register application</b> button."
3586
  msgstr "Kattints a \"Create New Application\" gombra."
3587
 
3588
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:34
3589
  #, fuzzy
3590
  #| msgid ""
3591
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -3597,60 +2526,49 @@ msgstr ""
3597
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
3598
  "Web Settings tab alatt."
3599
 
3600
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:37
3601
  #, php-format
3602
  msgid ""
3603
  "<b>Important note:</b> The email address is only retrievable, if there is a "
3604
  "public email address set at the %1$s profile page%2$s!"
3605
  msgstr ""
3606
 
3607
- #: nextend-social-login-pro/providers/github/github.php:125
3608
  msgid "Continue with <b>GitHub</b>"
3609
  msgstr "Folytatás a <b>GitHub</b>-bal"
3610
 
3611
- #: nextend-social-login-pro/providers/github/github.php:126
3612
  msgid "Sign up with <b>GitHub</b>"
3613
  msgstr "Regisztrálás a <b>GitHub</b>-bal"
3614
 
3615
- #: nextend-social-login-pro/providers/github/github.php:127
3616
  msgid "Link account with <b>GitHub</b>"
3617
  msgstr "Fiók összekapcsolása a <b>GitHub</b>-bal"
3618
 
3619
- #: nextend-social-login-pro/providers/github/github.php:128
3620
  msgid "Unlink account from <b>GitHub</b>"
3621
  msgstr "Szétkapcsolás <b>GitHub</b>-tól"
3622
 
3623
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:8
3624
  #, fuzzy, php-format
3625
  #| msgid "Navigate to %s"
3626
  msgid "Navigate to your %s"
3627
  msgstr "Látogasd meg ezt az oldalt: %s"
3628
 
3629
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:10
3630
  #, php-format
3631
  msgid "Select your %s App and click on the LINE Login section."
3632
  msgstr ""
3633
 
3634
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:13
3635
  #, fuzzy
3636
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3637
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
3638
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
3639
 
3640
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:17
3641
  #, php-format
3642
  msgid ""
3643
  "Editing Live Apps are only possible with a %s. So please make sure you own "
3644
  "one!"
3645
  msgstr ""
3646
 
3647
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:19
3648
  #, fuzzy
3649
  #| msgid "Click the \"Create\" button!"
3650
  msgid "Click the \"<b>Create a new provider</b>\" button."
3651
  msgstr "Kattints a \"Create\" gombra"
3652
 
3653
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:20
3654
  #, fuzzy
3655
  #| msgid "Read the Developer Terms and click the Create button again!"
3656
  msgid ""
@@ -3658,41 +2576,34 @@ msgid ""
3658
  "button."
3659
  msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
3660
 
3661
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:21
3662
  msgid ""
3663
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
3664
  "channel</b>\" option."
3665
  msgstr ""
3666
 
3667
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:22
3668
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
3669
  msgstr ""
3670
 
3671
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:23
3672
  msgid ""
3673
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
3674
  "created."
3675
  msgstr ""
3676
 
3677
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:24
3678
  #, fuzzy
3679
  #| msgid "Click on \"Save\""
3680
  msgid "Select your \"<b>Region</b>\"."
3681
  msgstr "Kattints a \"Save\" gombra"
3682
 
3683
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:25
3684
  msgid ""
3685
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
3686
  "description</b>\". These will appear on your Consent Screen!"
3687
  msgstr ""
3688
 
3689
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:26
3690
  #, fuzzy
3691
  #| msgid "At the \"Type\" make sure \"Web\" is selected!"
3692
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
3693
  msgstr "Győződjön meg hogy a \"Típusnál\" a \"Web\" van kiválasztva!"
3694
 
3695
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:27
3696
  #, fuzzy
3697
  #| msgid "Read the Developer Terms and click the Create button again!"
3698
  msgid ""
@@ -3700,13 +2611,11 @@ msgid ""
3700
  "\"<b>Create</b>\" button."
3701
  msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
3702
 
3703
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:28
3704
  msgid ""
3705
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
3706
  "near the \"<b>Email address permission</b>\" label."
3707
  msgstr ""
3708
 
3709
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:29
3710
  #, fuzzy
3711
  #| msgid ""
3712
  #| "Complete the Human test and click the \"Register my application\" button."
@@ -3715,19 +2624,16 @@ msgstr ""
3715
  "Végezze el az Ember tesztet és kattintson a \"Register my application\" "
3716
  "gombra."
3717
 
3718
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:30
3719
  msgid ""
3720
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
3721
  "section."
3722
  msgstr ""
3723
 
3724
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:41
3725
  msgid ""
3726
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
3727
  "Channel!"
3728
  msgstr ""
3729
 
3730
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:42
3731
  #, fuzzy
3732
  #| msgid ""
3733
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
@@ -3740,85 +2646,65 @@ msgstr ""
3740
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
3741
  "szükséged a plugin beállításainál."
3742
 
3743
- #: nextend-social-login-pro/providers/line/admin/settings.php:26
3744
  msgid "Channel ID"
3745
  msgstr ""
3746
 
3747
- #: nextend-social-login-pro/providers/line/admin/settings.php:38
3748
  #, fuzzy
3749
  #| msgid "Consumer Secret"
3750
  msgid "Channel Secret"
3751
  msgstr "Consumer Secret"
3752
 
3753
- #: nextend-social-login-pro/providers/line/line.php:36
3754
  #, fuzzy
3755
  #| msgid "Continue with <b>LinkedIn</b>"
3756
  msgid "Continue with <b>Line</b>"
3757
  msgstr "Folytatás a <b>LinkedIn</b>-nel"
3758
 
3759
- #: nextend-social-login-pro/providers/line/line.php:37
3760
  #, fuzzy
3761
  #| msgid "Sign up with <b>LinkedIn</b>"
3762
  msgid "Sign up with <b>Line</b>"
3763
  msgstr "Folytatás a <b>LinkedIn</b>-nel"
3764
 
3765
- #: nextend-social-login-pro/providers/line/line.php:38
3766
  #, fuzzy
3767
  #| msgid "Link account with <b>LinkedIn</b>"
3768
  msgid "Link account with <b>Line</b>"
3769
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
3770
 
3771
- #: nextend-social-login-pro/providers/line/line.php:39
3772
  #, fuzzy
3773
  #| msgid "Unlink account from <b>LinkedIn</b>"
3774
  msgid "Unlink account from <b>Line</b>"
3775
  msgstr "Szétkapcsolás <b>LinkedIn</b>-től"
3776
 
3777
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3778
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3779
  msgstr ""
3780
 
3781
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:13
3782
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
3783
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
3784
  #, fuzzy
3785
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3786
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3787
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3788
 
3789
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:21
3790
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:38
3791
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:22
3792
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:22
3793
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:21
3794
  #, fuzzy
3795
  #| msgid "Hit update to save the changes"
3796
  msgid "Click on \"<b>Update</b>\" to save the changes"
3797
  msgstr "Kattints az \"update\" gombra és mentsd el a beállításaidat."
3798
 
3799
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
3800
  #, fuzzy
3801
  #| msgid "Locate the blue \"Create application\" button and click on it."
3802
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
3803
  msgstr "Keresd meg a kék \"Create application\" gombot és kattints rá."
3804
 
3805
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
3806
  msgid "Enter the name of your App to the \"App name\" field."
3807
  msgstr ""
3808
 
3809
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
3810
  #, php-format
3811
  msgid ""
3812
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
3813
  "one yet, create new one at: %s"
3814
  msgstr ""
3815
 
3816
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
3817
  msgid ""
3818
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
3819
  msgstr ""
3820
 
3821
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
3822
  #, fuzzy
3823
  #| msgid "Read the Developer Terms and click the Create button again!"
3824
  msgid ""
@@ -3826,31 +2712,26 @@ msgid ""
3826
  "App</b>\" button!"
3827
  msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
3828
 
3829
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24
3830
  msgid ""
3831
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
3832
  "tab."
3833
  msgstr ""
3834
 
3835
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25
3836
  #, php-format
3837
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
3838
  msgstr ""
3839
 
3840
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:26
3841
  msgid ""
3842
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
3843
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
3844
  "button."
3845
  msgstr ""
3846
 
3847
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
3848
  #, fuzzy
3849
  #| msgid "Click on the Create button"
3850
  msgid "Click on the \"<b>Auth</b>\" tab."
3851
  msgstr "Kattints a \"Create\" gombra"
3852
 
3853
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:30
3854
  #, fuzzy
3855
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3856
  msgid ""
@@ -3858,7 +2739,6 @@ msgid ""
3858
  "\"<b>Redirect URLs</b>\" field:"
3859
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3860
 
3861
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:39
3862
  #, fuzzy
3863
  #| msgid ""
3864
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -3870,51 +2750,40 @@ msgstr ""
3870
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
3871
  "Web Settings tab alatt."
3872
 
3873
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3874
  msgid "Continue with <b>LinkedIn</b>"
3875
  msgstr "Folytatás a <b>LinkedIn</b>-nel"
3876
 
3877
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3878
  msgid "Sign up with <b>LinkedIn</b>"
3879
  msgstr "Folytatás a <b>LinkedIn</b>-nel"
3880
 
3881
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3882
  msgid "Link account with <b>LinkedIn</b>"
3883
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
3884
 
3885
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3886
  msgid "Unlink account from <b>LinkedIn</b>"
3887
  msgstr "Szétkapcsolás <b>LinkedIn</b>-től"
3888
 
3889
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:9
3890
  #, fuzzy, php-format
3891
  #| msgid "Log in with your %s credentials if you are not logged in yet"
3892
  msgid "Log in with your %s credentials if you are not logged in yet."
3893
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
3894
 
3895
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:10
3896
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:19
3897
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
3898
  msgstr ""
3899
 
3900
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:11
3901
  #, php-format
3902
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
3903
  msgstr ""
3904
 
3905
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:12
3906
  #, fuzzy
3907
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3908
  msgid "Click on the link next to the Redirect URIs label."
3909
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3910
 
3911
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:15
3912
  #, fuzzy
3913
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3914
  msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
3915
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3916
 
3917
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:18
3918
  #, fuzzy, php-format
3919
  #| msgid "Log in with your %s credentials if you are not logged in yet"
3920
  msgid ""
@@ -3922,13 +2791,11 @@ msgid ""
3922
  "account."
3923
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
3924
 
3925
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:20
3926
  #, fuzzy
3927
  #| msgid "Click on \"Save\""
3928
  msgid "Click on \"<b>New registration</b>\"."
3929
  msgstr "Kattints a \"Save\" gombra"
3930
 
3931
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:21
3932
  #, fuzzy
3933
  #| msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
3934
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
@@ -3936,63 +2803,52 @@ msgstr ""
3936
  "Írd be a weboldalad főoldalának címét a \"Domains\" mezőbe. Valószínűleg ez "
3937
  "lesz az: <b>%s</b>"
3938
 
3939
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:22
3940
  msgid ""
3941
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
3942
  "account types."
3943
  msgstr ""
3944
 
3945
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:25
3946
  #, fuzzy
3947
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3948
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
3949
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3950
 
3951
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:33
3952
  #, fuzzy
3953
  #| msgid "Click on the \"Create New Application\" button."
3954
  msgid "Create your App with the \"<b>Register</b>\" button."
3955
  msgstr "Kattints a \"Create New Application\" gombra."
3956
 
3957
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:34
3958
  #, fuzzy
3959
  #| msgid "Click on the Create button"
3960
  msgid "You land on the \"<b>Overview</b>\" page."
3961
  msgstr "Kattints a \"Create\" gombra"
3962
 
3963
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:35
3964
  msgid ""
3965
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
3966
  "(client) ID</b> in the plugin settings."
3967
  msgstr ""
3968
 
3969
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:36
3970
  msgid ""
3971
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
3972
  "Client credentials label."
3973
  msgstr ""
3974
 
3975
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:37
3976
  #, fuzzy
3977
  #| msgid "Click on \"Save\""
3978
  msgid "Click on \"<b>New client secret</b>\"."
3979
  msgstr "Kattints a \"Save\" gombra"
3980
 
3981
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:38
3982
  msgid "Fill the \"<b>Description</b>\" field."
3983
  msgstr ""
3984
 
3985
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:39
3986
  #, fuzzy
3987
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3988
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
3989
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3990
 
3991
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:40
3992
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
3993
  msgstr ""
3994
 
3995
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:41
3996
  #, fuzzy
3997
  #| msgid ""
3998
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
@@ -4004,123 +2860,99 @@ msgstr ""
4004
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
4005
  "szükséged a plugin beállításainál."
4006
 
4007
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:26
4008
  msgid "Application (client) ID"
4009
  msgstr ""
4010
 
4011
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:38
4012
  #, fuzzy
4013
  #| msgid "Client Secret"
4014
  msgid "Client secret"
4015
  msgstr "Client Secret"
4016
 
4017
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:38
4018
  #, fuzzy
4019
  #| msgid "Continue with <b>Yahoo</b>"
4020
  msgid "Continue with <b>Microsoft</b>"
4021
  msgstr "Folytatás a <b>Yahoo</b>-val"
4022
 
4023
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:39
4024
  #, fuzzy
4025
  #| msgid "Sign up with <b>Yahoo</b>"
4026
  msgid "Sign up with <b>Microsoft</b>"
4027
  msgstr "Regisztrálás a <b>Yahool</b>-val"
4028
 
4029
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:40
4030
  #, fuzzy
4031
  #| msgid "Link account with <b>Yahoo</b>"
4032
  msgid "Link account with <b>Microsoft</b>"
4033
  msgstr "Fiók összekapcsolása a <b>Yahoo</b>-val"
4034
 
4035
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:41
4036
  #, fuzzy
4037
  #| msgid "Unlink account from <b>Yahoo</b>"
4038
  msgid "Unlink account from <b>Microsoft</b>"
4039
  msgstr "Szétkapcsolás <b>Yahoo</b>-tól"
4040
 
4041
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
4042
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
4043
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
4044
  msgstr ""
4045
 
4046
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
4047
  #, fuzzy, php-format
4048
  #| msgid "Click on the name of your %s App."
4049
  msgid "Click on the name of your %s App, under the REST API apps section."
4050
  msgstr "Kattints az %s Appod nevére."
4051
 
4052
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
4053
  msgid ""
4054
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
4055
  "b>\" heading and click \"<b>Show</b>\"."
4056
  msgstr ""
4057
 
4058
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
4059
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
4060
  #, fuzzy
4061
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
4062
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
4063
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
4064
 
4065
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:23
4066
  msgid "Click on \"Save\""
4067
  msgstr "Kattints a \"Save\" gombra"
4068
 
4069
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
4070
  #, php-format
4071
  msgid ""
4072
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
4073
  "step, if not click on the link!"
4074
  msgstr ""
4075
 
4076
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
4077
  msgid "Click on Registration and create a Business account."
4078
  msgstr ""
4079
 
4080
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
4081
  msgid "If you are done, follow the guide from the 5. step."
4082
  msgstr ""
4083
 
4084
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
4085
  #, fuzzy, php-format
4086
  #| msgid "Log in with your %s credentials if you are not logged in."
4087
  msgid "Log in with your %s credentials."
4088
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
4089
 
4090
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
4091
  #, fuzzy
4092
  #| msgid "Click the \"Create App\" button."
4093
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
4094
  msgstr "Kattints a \"Create App\" gombra"
4095
 
4096
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
4097
  msgid ""
4098
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
4099
  msgstr ""
4100
 
4101
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
4102
  msgid ""
4103
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
4104
  "b>\" heading then click \"<b>Show</b>\"."
4105
  msgstr ""
4106
 
4107
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:36
4108
  msgid ""
4109
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
4110
  "with PayPal</b>\"."
4111
  msgstr ""
4112
 
4113
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:37
4114
  msgid ""
4115
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
4116
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
4117
  msgstr ""
4118
 
4119
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:38
4120
  msgid "Tick \"<b>Full name</b>\"."
4121
  msgstr ""
4122
 
4123
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:39
4124
  msgid ""
4125
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
4126
  "email address as well, <b>please submit your App for a review</b> after your "
@@ -4129,59 +2961,46 @@ msgid ""
4129
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
4130
  msgstr ""
4131
 
4132
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:40
4133
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
4134
  msgstr ""
4135
 
4136
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:42
4137
  msgid ""
4138
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
4139
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
4140
  "\"<b>Live</b>\" mode and not \"Sandbox\". )"
4141
  msgstr ""
4142
 
4143
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
4144
  msgid "Secret"
4145
  msgstr "Secret"
4146
 
4147
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:45
4148
  msgid "Email scope"
4149
  msgstr "Email scope"
4150
 
4151
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:54
4152
  msgid "Disable, when you have no rights for email address."
4153
  msgstr ""
4154
 
4155
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
4156
  msgid "Continue with <b>PayPal</b>"
4157
  msgstr "Folytatás a <b>PayPal</b>-al"
4158
 
4159
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
4160
  msgid "Sign up with <b>PayPal</b>"
4161
  msgstr "Regisztrálás a <b>PayPal</b>-al"
4162
 
4163
- #: nextend-social-login-pro/providers/paypal/paypal.php:67
4164
  msgid "Link account with <b>PayPal</b>"
4165
  msgstr "Fiók összekapcsolása a <b>PayPal</b>-al"
4166
 
4167
- #: nextend-social-login-pro/providers/paypal/paypal.php:68
4168
  msgid "Unlink account from <b>PayPal</b>"
4169
  msgstr "Szétkapcsolás <b>PayPal</b>-tól"
4170
 
4171
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
4172
  #, fuzzy
4173
  #| msgid "Click on the Manage button at the App"
4174
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
4175
  msgstr "Kattints a \"Manage \" gombra az Appban."
4176
 
4177
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
4178
  #, fuzzy
4179
  #| msgid "Go to the Settings menu"
4180
  msgid "Go to the \"<b>Settings</b>\" menu"
4181
  msgstr "Menj a \"Settings\" menübe."
4182
 
4183
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:14
4184
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:28
4185
  #, fuzzy
4186
  #| msgid ""
4187
  #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
@@ -4189,19 +3008,16 @@ msgid "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: "
4189
  msgstr ""
4190
  "Tedd a következő linket az \"Authorized redirect URI:\" mezőbe: <b>%s</b>"
4191
 
4192
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
4193
  #, fuzzy
4194
  #| msgid "Locate the blue \"Create application\" button and click on it."
4195
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
4196
  msgstr "Keresd meg a kék \"Create application\" gombot és kattints rá."
4197
 
4198
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
4199
  msgid ""
4200
  "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
4201
  "platform."
4202
  msgstr ""
4203
 
4204
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
4205
  #, fuzzy, php-format
4206
  #| msgid ""
4207
  #| "Fill \"Site address\" with the url of your homepage, probably: <b>%s</b>"
@@ -4212,7 +3028,6 @@ msgstr ""
4212
  "Írd be a weboldalad főoldalának címét a \"Site address\" mezőbe. "
4213
  "Valószínűleg ez lesz az: <b>%s</b>"
4214
 
4215
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
4216
  #, fuzzy, php-format
4217
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
4218
  msgid ""
@@ -4221,29 +3036,24 @@ msgstr ""
4221
  "Írd be a weboldalad főoldalának címét a \"Base domain\" mezőbe. Valószínűleg "
4222
  "ez lesz az: <b>%s</b>"
4223
 
4224
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
4225
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
4226
  msgstr ""
4227
 
4228
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
4229
  msgid ""
4230
  "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
4231
  "click <b>Save</b>."
4232
  msgstr ""
4233
 
4234
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
4235
  #, fuzzy
4236
  #| msgid "Pick Settings at the left-hand menu "
4237
  msgid "Pick <b>Settings</b> at the left-hand menu "
4238
  msgstr "Válaszd ki a \"Settings\"-t a bal oldali menüből."
4239
 
4240
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:36
4241
  #, fuzzy
4242
  #| msgid "Save your app"
4243
  msgid "<b>Save</b> your app"
4244
  msgstr "Ments el az appot."
4245
 
4246
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:37
4247
  #, fuzzy
4248
  #| msgid ""
4249
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -4255,41 +3065,32 @@ msgstr ""
4255
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
4256
  "Web Settings tab alatt."
4257
 
4258
- #: nextend-social-login-pro/providers/vk/admin/settings.php:39
4259
  msgid "Secure key"
4260
  msgstr ""
4261
 
4262
- #: nextend-social-login-pro/providers/vk/vk.php:36
4263
  msgid "Continue with <b>VK</b>"
4264
  msgstr "Folytatás a <b>VK</b>-val"
4265
 
4266
- #: nextend-social-login-pro/providers/vk/vk.php:37
4267
  msgid "Sign up with <b>VK</b>"
4268
  msgstr "Regisztrálás a <b>VK</b>-val"
4269
 
4270
- #: nextend-social-login-pro/providers/vk/vk.php:38
4271
  msgid "Link account with <b>VK</b>"
4272
  msgstr "Fiók összekapcsolása a <b>VK</b>-val"
4273
 
4274
- #: nextend-social-login-pro/providers/vk/vk.php:39
4275
  msgid "Unlink account from <b>VK</b>"
4276
  msgstr "Szétkapcsolás <b>VK</b>-tól"
4277
 
4278
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:11
4279
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
4280
  msgstr ""
4281
 
4282
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
4283
  #, fuzzy
4284
  #| msgid "Click on the \"Create New Application\" button."
4285
  msgid "Click on the \"<b>Create New Application</b>\" button."
4286
  msgstr "Kattints a \"Create New Application\" gombra."
4287
 
4288
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
4289
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
4290
  msgstr ""
4291
 
4292
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
4293
  #, fuzzy, php-format
4294
  #| msgid ""
4295
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
@@ -4300,33 +3101,27 @@ msgstr ""
4300
  "Írd be a weboldalad főoldalának címét a \"Website URL\" mezőbe. "
4301
  "Valószínűleg ez lesz az: <b>%s</b>"
4302
 
4303
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:32
4304
  msgid "You can leave the \"Javascript Origins\" field blank!"
4305
  msgstr ""
4306
 
4307
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:33
4308
  msgid "Complete the human verification test."
4309
  msgstr ""
4310
 
4311
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:34
4312
  #, fuzzy
4313
  #| msgid "At the \"Type\" make sure \"Web\" is selected!"
4314
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
4315
  msgstr "Győződjön meg hogy a \"Típusnál\" a \"Web\" van kiválasztva!"
4316
 
4317
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:35
4318
  #, fuzzy
4319
  #| msgid "Click the \"Create\" button!"
4320
  msgid "Click the \"<b>Create</b>\" button!"
4321
  msgstr "Kattints a \"Create\" gombra"
4322
 
4323
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:36
4324
  msgid ""
4325
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
4326
  "next to Editing!"
4327
  msgstr ""
4328
 
4329
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:37
4330
  #, fuzzy
4331
  #| msgid ""
4332
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
@@ -4338,69 +3133,55 @@ msgstr ""
4338
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
4339
  "szükséged a plugin beállításainál."
4340
 
4341
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
4342
  msgid "Continue with <b>WordPress.com</b>"
4343
  msgstr "Folytatás a <b>WordPress.com</b>-al"
4344
 
4345
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
4346
  msgid "Sign up with <b>WordPress.com</b>"
4347
  msgstr "Regisztrálás a <b>WordPress.com</b>-al"
4348
 
4349
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
4350
  msgid "Link account with <b>WordPress.com</b>"
4351
  msgstr "Fiók összekapcsolása a <b>WordPress.com</b>-al"
4352
 
4353
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
4354
  msgid "Unlink account from <b>WordPress.com</b>"
4355
  msgstr "Szétkapcsolás <b>WordPress.com</b>-tól"
4356
 
4357
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
4358
  msgid "Click on the App which has its credentials associated with the plugin."
4359
  msgstr ""
4360
 
4361
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:13
4362
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:26
4363
  #, fuzzy
4364
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
4365
  msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
4366
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
4367
 
4368
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20
4369
  #, fuzzy
4370
  #| msgid "Click the \"Create App\" button."
4371
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
4372
  msgstr "Kattints a \"Create App\" gombra"
4373
 
4374
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21
4375
  msgid ""
4376
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
4377
  "at \"<b>Application Type</b>\"."
4378
  msgstr ""
4379
 
4380
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22
4381
  msgid "Enter a \"<b>Description</b>\" for your app!"
4382
  msgstr ""
4383
 
4384
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23
4385
  #, fuzzy, php-format
4386
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
4387
  msgid ""
4388
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
4389
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
4390
 
4391
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:34
4392
  msgid ""
4393
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
4394
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
4395
  msgstr ""
4396
 
4397
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:35
4398
  #, fuzzy
4399
  #| msgid "Click the \"Create App\" button."
4400
  msgid "Click \"<b>Create App</b>\"."
4401
  msgstr "Kattints a \"Create App\" gombra"
4402
 
4403
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:36
4404
  #, fuzzy
4405
  #| msgid ""
4406
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
@@ -4412,65 +3193,26 @@ msgstr ""
4412
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
4413
  "szükséged a plugin beállításainál."
4414
 
4415
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
4416
  msgid "Continue with <b>Yahoo</b>"
4417
  msgstr "Folytatás a <b>Yahoo</b>-val"
4418
 
4419
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4420
  msgid "Sign up with <b>Yahoo</b>"
4421
  msgstr "Regisztrálás a <b>Yahool</b>-val"
4422
 
4423
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
4424
  msgid "Link account with <b>Yahoo</b>"
4425
  msgstr "Fiók összekapcsolása a <b>Yahoo</b>-val"
4426
 
4427
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
4428
  msgid "Unlink account from <b>Yahoo</b>"
4429
  msgstr "Szétkapcsolás <b>Yahoo</b>-tól"
4430
 
4431
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4432
  #, fuzzy, php-format
4433
  #| msgid "Required API: %1$s"
4434
  msgid "Required permission: %1$s"
4435
  msgstr "Szükséges API: %1$s"
4436
 
4437
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4438
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4439
- #: nextend-social-login-pro/template-parts/buddypress/register/above-separator.php:25
4440
- #: nextend-social-login-pro/template-parts/buddypress/register/below-separator.php:25
4441
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4442
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4443
- #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4444
- #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4445
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4446
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4447
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4448
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4449
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4450
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4451
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4452
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4453
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4454
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4455
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4456
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4457
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4458
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4459
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4460
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4461
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4462
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4463
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4464
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4465
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4466
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4467
  msgid "OR"
4468
  msgstr "VAGY"
4469
 
4470
- #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
4471
- #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2
4472
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
4473
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
4474
  msgid "Social accounts"
4475
  msgstr "Közösségi fiókok"
4476
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-09-13 20:37+0200\n"
5
+ "PO-Revision-Date: 2021-09-13 20:42+0200\n"
6
  "Last-Translator: \n"
7
+ "Language-Team: nextend-facebook-connect\n"
8
  "Language: hu\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\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-Flags-xgettext: --no-location\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
  "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
27
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
28
  "compat\n"
29
 
 
30
  msgid "What personal data we collect and why we collect it"
31
  msgstr "Milyen személyes adatokat gyüjtünk, és miért gyüjtjük"
32
 
 
33
  #, php-format
34
  msgid ""
35
  "%1$s collects data when a visitor register, login or link the account with "
44
  "Ezenkívül még begyüjthető a profil kép és más mezők amelyek a Pro Addon sync "
45
  "data funkciójából származik."
46
 
 
47
  msgid "Who we share your data with"
48
  msgstr "Kivel osztjuk meg az adataid"
49
 
 
50
  #, php-format
51
  msgid ""
52
  "%1$s stores the personal data on your site and does not share it with anyone "
54
  "the social providers."
55
  msgstr ""
56
 
 
57
  msgid "Does the plugin share personal data with third parties"
58
  msgstr ""
59
 
 
60
  #, php-format
61
  msgid ""
62
  "%1$s use the access token what the social provider gave to communicate with "
63
  "the providers to verify account and securely access personal data."
64
  msgstr ""
65
 
 
66
  msgid "How long we retain your data"
67
  msgstr ""
68
 
 
69
  #, php-format
70
  msgid ""
71
  "%1$s removes the collected personal data when the user deleted from "
72
  "WordPress."
73
  msgstr ""
74
 
 
75
  msgid "Does the plugin use personal data collected by others?"
76
  msgstr ""
77
 
 
78
  #, php-format
79
  msgid ""
80
  "%1$s use the personal data collected by the social providers to create "
81
  "account on your site when the visitor authorize it."
82
  msgstr ""
83
 
 
84
  msgid "Does the plugin store things in the browser?"
85
  msgstr ""
86
 
 
87
  #, php-format
88
  msgid ""
89
  "Yes, %1$s must create a cookie for visitors who use the social login "
91
  "communication and to redirect the user back to the last location."
92
  msgstr ""
93
 
 
94
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
95
  msgstr ""
96
 
 
 
97
  msgid "No"
98
  msgstr ""
99
 
 
100
  msgid ""
101
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
102
  "third party?"
103
  msgstr ""
104
 
 
 
105
  msgid "User"
106
  msgstr "Felhasználó"
107
 
 
108
  #, php-format
109
  msgid "%s needs json_decode function."
110
  msgstr "A %s-nak szüksége van a json_decode függvényre."
111
 
 
112
  msgid "Please contact your server administrator and ask for solution!"
113
  msgstr ""
114
  "Kérlek lépj kapcsolatba a szerveradminisztrátorral és kérj tőle segítséget!"
115
 
 
 
116
  msgid "Settings saved."
117
  msgstr "Beállítások elmentve."
118
 
 
119
  msgid "The activation was successful"
120
  msgstr "Az aktiváció sikeres volt"
121
 
 
122
  msgid "Deactivate completed."
123
  msgstr "A deaktiválás befejeződött."
124
 
 
 
 
 
 
125
  msgid "Settings"
126
  msgstr "Beállítások"
127
 
 
 
 
 
 
 
 
128
  #, php-format
129
  msgid "Unexpected response: %s"
130
  msgstr "Nem várt válasz: %s"
131
 
 
 
132
  #, php-format
133
  msgid ""
134
  "%s detected that your login url changed. You must update the Oauth redirect "
137
  "%s érzékelte hogy a bejelentkezési url megváltozott. Frissitened kell az "
138
  "\"Oauth redirect URIs\" értékeket a konfigurált alkalmazásaidban."
139
 
 
 
140
  msgid "Fix Error"
141
  msgstr "Hiba javítása"
142
 
 
143
  msgid "Oauth Redirect URI"
144
  msgstr "Oauth Redirect URI"
145
 
 
146
  #, php-format
147
  msgid ""
148
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
152
  "social login gombok megjelenjenek a(z) %2$s login formokban, a Pro Addon-ra "
153
  "van szükséged!"
154
 
 
155
  msgid "Dismiss and check Pro Addon"
156
  msgstr "Eltüntent és Pro Addon ellenörzése."
157
 
 
158
  msgid "Dismiss"
159
  msgstr "Eltüntet"
160
 
 
161
  #, php-format
162
  msgid ""
163
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
165
  "work properly."
166
  msgstr ""
167
 
 
168
  msgid "Fix now"
169
  msgstr "Javítás most"
170
 
 
171
  msgid "Activate your Pro Addon"
172
  msgstr "Pro Addon aktiválása"
173
 
 
174
  #, fuzzy
175
  #| msgid ""
176
  #| "To be able to use the Pro features, you need to activate Nextend Social "
185
  "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított "
186
  "vásárlás kiválasztásával."
187
 
 
 
188
  msgid "Activate"
189
  msgstr "Aktiválás"
190
 
 
191
  msgid "License key"
192
  msgstr "Licensz kulcs"
193
 
 
194
  msgid "OAuth proxy page"
195
  msgstr "OAuth proxy page"
196
 
 
197
  msgid "Register flow page"
198
  msgstr "Register flow page"
199
 
 
200
  #, php-format
201
  msgid ""
202
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
204
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
205
  msgstr ""
206
 
 
 
207
  msgid "You have logged in successfully."
208
  msgstr "Sikeresen bejelentkeztél"
209
 
 
210
  msgid "Login label"
211
  msgstr "Bejelentkezés felirat"
212
 
 
 
 
 
 
 
 
213
  msgid "Reset to default"
214
  msgstr "Alapbeállítás visszaállítása"
215
 
 
216
  #, fuzzy
217
  #| msgid "Login layout"
218
  msgid "Register label"
219
  msgstr "Login elrendezése"
220
 
 
221
  msgid "Link label"
222
  msgstr "Profil összekapcsolás felirat"
223
 
 
224
  msgid "Unlink label"
225
  msgstr "Profile szétkapcsolás felirat"
226
 
 
227
  msgid "Default button"
228
  msgstr "Alap gomb"
229
 
 
 
230
  msgid "Use custom button"
231
  msgstr "Egyedi gomb használata"
232
 
 
233
  #, php-format
234
  msgid "Use the %s in your custom button's code to make the label show up."
235
  msgstr "Használd a %s azonosítót, hogy megfelenjen a gomb felirat."
236
 
 
237
  msgid "Icon button"
238
  msgstr "Ikon gomb"
239
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
240
  msgid "Save Changes"
241
  msgstr "Változtatások Mentése"
242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
243
  msgid "Getting Started"
244
  msgstr "Első Lépések"
245
 
 
246
  msgid "Buttons"
247
  msgstr "Gombok"
248
 
 
249
  msgid "Sync data"
250
  msgstr "Sync data"
251
 
 
252
  msgid "Usage"
253
  msgstr "Használat"
254
 
 
255
  msgid "Other settings"
256
  msgstr "Egyéb beállítások"
257
 
 
258
  msgid "Username prefix on register"
259
  msgstr "Felhasználónév előtag regisztrációkor"
260
 
 
261
  msgid "Fallback username prefix on register"
262
  msgstr "Fallback felhasználónév előtag regisztrácókor"
263
 
 
264
  msgid "Used when username is invalid or not stored"
265
  msgstr "Akkor van használva ha a felhasználónév helytelen vagy nincs tárolva."
266
 
 
 
 
267
  msgid "Terms and conditions"
268
  msgstr "Felhasználási feltételek"
269
 
 
270
  #, php-format
271
  msgid "Override global \"%1$s\""
272
  msgstr "Globális \"%1$s\" felülírása."
273
 
 
 
 
274
  msgid "PRO settings"
275
  msgstr "PRO beállítások"
276
 
 
 
277
  msgid "Ask E-mail on registration"
278
  msgstr "E-mail kérésére regisztrációkor"
279
 
 
 
280
  msgid "Never"
281
  msgstr "Soha"
282
 
 
283
  msgid "When email is not provided or empty"
284
  msgstr "Amikor a e-mail cím nincs biztosítva vagy nem üres"
285
 
 
 
 
286
  msgid "Always"
287
  msgstr "Mindig"
288
 
 
 
289
  msgid "Ask Username on registration"
290
  msgstr "Felhasználónév kérése regisztrációkor"
291
 
 
292
  msgid "Never, generate automatically"
293
  msgstr "Soha, automata generálás"
294
 
 
295
  msgid "When username is empty or invalid"
296
  msgstr "Amikor a felhasználónév nincs biztosítva vagy nem üres"
297
 
 
298
  msgid "Ask Password on registration"
299
  msgstr "Jelszó kérése regisztrációkor"
300
 
 
 
301
  msgid "Automatically connect the existing account upon registration"
302
  msgstr "Fiók csatlakoztatása, ha regisztráció esetén már létezik a fiók"
303
 
 
 
 
 
 
 
 
 
 
304
  msgid "Disabled"
305
  msgstr "Kikapcsolva"
306
 
 
307
  msgid "Automatic, based on email address"
308
  msgstr "Automatán, e-mail cím egyezés esetén"
309
 
 
310
  msgid "Disable login for the selected roles"
311
  msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek"
312
 
 
313
  msgid "Default roles for user who registered with this provider"
314
  msgstr "Alap szerepkör, aki ezzel a szolgáltatóval registrál"
315
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
316
  msgid "Default"
317
  msgstr "Alapbeállítás"
318
 
 
319
  msgid "Register"
320
  msgstr "Regisztráció"
321
 
 
322
  msgid "Login"
323
  msgstr "Bejelentkezés"
324
 
 
325
  msgid "Link"
326
  msgstr "Összekapcsolás"
327
 
 
328
  msgid "Store in meta key"
329
  msgstr "Tárolás a meta kulcsban"
330
 
 
331
  msgid "Shortcode"
332
  msgstr "Shortcode"
333
 
 
334
  #, fuzzy
335
  #| msgid "Important:"
336
  msgid "Important!"
337
  msgstr "Fontos:"
338
 
 
339
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
340
  msgstr ""
341
 
 
342
  msgid "See the full list of shortcode parameters."
343
  msgstr ""
344
 
 
345
  msgid "Simple link"
346
  msgstr "Egyszerű link"
347
 
 
348
  msgid "Click here to login or register"
349
  msgstr "Kattints ide a belépéshez vagy a regisztrációhoz"
350
 
 
351
  msgid "Image button"
352
  msgstr "Gomb képpel"
353
 
 
354
  msgid "Image url"
355
  msgstr "Kép URL"
356
 
 
 
357
  msgid "Debug"
358
  msgstr "Debug mód"
359
 
 
360
  msgid "Test network connection with providers"
361
  msgstr "Hálózati kapcsolat tesztelése szolgáltatókkal"
362
 
 
363
  msgid "You don't have cURL support, please enable it in php.ini!"
364
  msgstr "Nincs cURL támogatásod, kérlek engedélyezd a php.ini fájlban."
365
 
 
366
  #, php-format
367
  msgid "Test %1$s connection"
368
  msgstr "%1$s kapcsolat tesztelése"
369
 
 
370
  msgid "Fix Oauth Redirect URIs"
371
  msgstr "Oauth Redirect URIs javítása"
372
 
 
373
  msgid "Every Oauth Redirect URI seems fine"
374
  msgstr "Minden Every Oauth Redirect URI jónak tűnik"
375
 
 
376
  msgid "Got it"
377
  msgstr "Értettem"
378
 
 
 
379
  msgid "Global Settings"
380
  msgstr "Általános beállítások"
381
 
 
382
  msgid "General"
383
  msgstr "Általános"
384
 
 
385
  msgid "Privacy"
386
  msgstr "Privacy"
387
 
 
 
 
388
  msgid "Login Form"
389
  msgstr "Bejelentkezési form"
390
 
 
391
  msgid "Comment"
392
  msgstr "Komment"
393
 
 
394
  msgid "Docs"
395
  msgstr "Dokumentáció"
396
 
 
397
  msgid "Support"
398
  msgstr "Támogatás"
399
 
 
 
400
  msgid "Pro Addon"
401
  msgstr "Pro Kiegészítő"
402
 
 
403
  msgid "Providers"
404
  msgstr "Providerek"
405
 
 
 
 
406
  msgid "Error"
407
  msgstr "Hiba"
408
 
 
409
  msgid ""
410
  "You don’t have sufficient permissions to install and activate plugins. "
411
  "Please contact your site’s administrator!"
414
  "Lépj kapcsolatba az oldalad adminisztrátorával a további teendőkkel "
415
  "kapcsolatban!"
416
 
 
 
 
417
  msgid "Activate Pro Addon"
418
  msgstr "Pro Addon aktiválása"
419
 
 
420
  msgid ""
421
  "Pro Addon is installed but not activated. To be able to use the Pro "
422
  "features, you need to activate it."
424
  "A Pro Kiegészítő telepítve van, de nincs aktiválva. Ahhoz, hogy használjasd "
425
  "a Pro funkciókat aktiválnod kell a Pro Kiegészítőt."
426
 
 
 
427
  msgid "Deactivate Pro Addon"
428
  msgstr "Pro Addon deaktiválása"
429
 
 
 
430
  msgid "Pro Addon is not installed"
431
  msgstr "A Pro Kiegészítő nincs telepítve"
432
 
 
433
  msgid ""
434
  "To access the Pro features, you need to install and activate the Pro Addon."
435
  msgstr ""
436
  "Ahhoz, hogy hozzáférj a Pro funkciókhoz fel kell telepítened és aktiválnod "
437
  "kell a Pro Kiegészítőt."
438
 
 
439
  #, php-format
440
  msgid "Install %s now"
441
  msgstr "%s telepítése most"
442
 
 
 
443
  msgid "Install Pro Addon"
444
  msgstr "Pro Kiegészítő telepítése"
445
 
 
446
  msgid "Activating..."
447
  msgstr "Aktiválás..."
448
 
 
449
  #, fuzzy
450
  #| msgid "Not Available"
451
  msgid "Not compatible!"
452
  msgstr "Nem elérhető"
453
 
 
454
  #, php-format
455
  msgid ""
456
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
457
  "newer."
458
  msgstr ""
459
 
 
460
  #, fuzzy
461
  #| msgid "Activate Pro Addon"
462
  msgid "Update Pro Addon"
463
  msgstr "Pro Addon aktiválása"
464
 
 
465
  msgid "Pro Addon is installed and activated"
466
  msgstr "A Pro Kiegészítő telepítve és aktiválva"
467
 
 
468
  msgid ""
469
  "You installed and activated the Pro Addon. If you don’t want to use it "
470
  "anymore, you can deactivate using the button below."
472
  "A Pro Kiegészítő fel van telepítve és aktiválva van. Ha nem akarod tovább "
473
  "használni, visszavonhatod az aktiválást a lenti gombra kattintva."
474
 
 
475
  msgid "Get Pro Addon to unlock more features"
476
  msgstr "Vásárold meg a Pro Kiegészítőt, hogy még több funkcióhoz juss"
477
 
 
478
  #, php-format
479
  msgid ""
480
  "The features below are available in %s Pro Addon. Get it today and tweak the "
483
  "Az alábbi funkciók a %s Pro Kiegészítőben érhetőek el. Vásárold meg még ma, "
484
  "hogy hozzáférj a fantasztikus új beállításokhoz."
485
 
 
486
  msgid ""
487
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
488
  "you can purchase it using the button below."
490
  "Ha már van licenszed engedélyezheted a Pro Kiegészítődet. Ha nincs licenszed "
491
  "vásárolhatsz a lenti gombra kattintva. "
492
 
 
493
  msgid "Buy Pro Addon"
494
  msgstr "Vedd meg a Pro Kiegészítőt"
495
 
 
496
  msgid "Authorize Pro Addon"
497
  msgstr "Pro Kiegészítő aktiválása"
498
 
 
499
  msgid "Pro Addon is not activated"
500
  msgstr "A Pro Kiegészítő nincs aktiválva"
501
 
 
 
502
  #, fuzzy
503
  #| msgid ""
504
  #| "To be able to use the Pro features, you need to install and activate the "
511
  "Addon-t. Ezt megteheted az Activate gombra való kattintással és a társított "
512
  "vásárlás kiválasztásával."
513
 
 
514
  #, php-format
515
  msgid ""
516
  "%1$s detected that you have providers configured but none of them are "
518
  "one provider enabled!"
519
  msgstr ""
520
 
 
521
  msgid "Not Available"
522
  msgstr "Nem elérhető"
523
 
 
524
  msgid "Not Configured"
525
  msgstr "Nincs beállítva"
526
 
 
527
  msgid "Not Verified"
528
  msgstr "Nincs hitelesítve"
529
 
 
 
 
 
 
 
 
 
 
 
530
  msgid "Enabled"
531
  msgstr "Bekapcsolva"
532
 
 
533
  msgid "Upgrade Now"
534
  msgstr "Upgradelés most"
535
 
 
 
536
  msgid "Verify Settings"
537
  msgstr "Beállítások hitelesítése"
538
 
 
 
539
  msgid "Enable"
540
  msgstr "Bekapcsolás"
541
 
 
 
542
  msgid "Disable"
543
  msgstr "Kikapcsolás"
544
 
 
545
  msgid "Stay Updated"
546
  msgstr "Légy naprakész"
547
 
 
548
  msgid ""
549
  "Receive info on the latest plugin updates and social provider related "
550
  "changes."
551
  msgstr ""
552
  "Értesítést kérek a legutóbbi frissítésekről és a szolgáltatók változásáról."
553
 
 
554
  msgid "Enter your email address"
555
  msgstr "Add meg az email címed"
556
 
 
557
  msgid "Subscribe"
558
  msgstr "Feliratkozás"
559
 
 
560
  msgid "Saving..."
561
  msgstr "Mentés..."
562
 
 
563
  msgid "Saving failed"
564
  msgstr "A mentés nem sikerült"
565
 
 
566
  msgid "Order Saved"
567
  msgstr "Sorrend elmentve"
568
 
 
569
  msgid "Successfully subscribed!"
570
  msgstr "Sikeresen feliratkozva."
571
 
 
572
  msgid ""
573
  "We'll be bringing you all the latest news and updates about Social Login - "
574
  "right to your inbox."
575
  msgstr ""
576
 
 
577
  msgid "The entered email address is invalid!"
578
  msgstr "A beírt email cím helytelen!"
579
 
 
580
  msgid "Rate your experience!"
581
  msgstr "Értékelj!"
582
 
 
583
  msgid "Hated it"
584
  msgstr "Gyülölöm"
585
 
 
586
  msgid "Disliked it"
587
  msgstr "Nem tetszik"
588
 
 
589
  msgid "It was ok"
590
  msgstr "Ok"
591
 
 
592
  msgid "Liked it"
593
  msgstr "Szeretem"
594
 
 
595
  msgid "Loved it"
596
  msgstr "Imádom"
597
 
 
598
  msgid "Please Leave a Review"
599
  msgstr "Kérem hagyjon értékelést!"
600
 
 
601
  msgid ""
602
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
603
  "please leave us a review. It will be a tremendous help for us!"
605
  "Ha tetszett a <b>Nextend Social Login</b> plugin és van egy pár szabad "
606
  "perce, kérem értékeljen minket. Nekünk ez hatalmas segítséget jelent!"
607
 
 
608
  msgid "Ok, you deserve it"
609
  msgstr "Rendben, megérdemlitek."
610
 
 
 
 
611
  msgid "Register form"
612
  msgstr "Regisztrációs form"
613
 
 
614
  msgid "No Connect button"
615
  msgstr "Ne legyen connect gomb"
616
 
 
617
  msgid "Connect button before register"
618
  msgstr "Connect gomb a regisztráció előtt."
619
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
620
  msgid "Action:"
621
  msgstr "Action:"
622
 
 
623
  msgid "Connect button before account details"
624
  msgstr "Connect gomb a fiók adatai részleg előtt"
625
 
 
626
  msgid "Connect button after register"
627
  msgstr "Connect gomb a regisztrációs form után"
628
 
 
629
  msgid "Register button style"
630
  msgstr "Regisztrációs gomb stílusa"
631
 
 
 
 
 
 
 
 
 
 
 
 
 
632
  msgid "Fullwidth"
633
  msgstr ""
634
 
 
 
 
 
 
 
 
 
 
 
 
 
 
635
  msgid "Icon"
636
  msgstr "Ikon"
637
 
 
 
 
 
638
  #, fuzzy
639
  #| msgid "Login layout"
640
  msgid "Register layout"
641
  msgstr "Login elrendezése"
642
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
643
  msgid "Below"
644
  msgstr "Alul"
645
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
646
  msgid "Below with separator"
647
  msgstr "Alul, elválasztóval"
648
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
649
  msgid "Above"
650
  msgstr "Felül"
651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
  msgid "Above with separator"
653
  msgstr "Felül, elválasztóval"
654
 
 
655
  #, fuzzy
656
  #| msgid "Login layout"
657
  msgid "Sidebar Login form"
658
  msgstr "Login elrendezése"
659
 
 
 
 
 
 
 
 
660
  msgid "Hide login buttons"
661
  msgstr ""
662
 
 
 
 
 
 
 
 
 
663
  msgid "Show login buttons"
664
  msgstr ""
665
 
 
666
  msgid ""
667
  "Some themes that use BuddyPress, display the social buttons twice in the "
668
  "same login form. This option can disable the one for: "
669
  "<b>bp_sidebar_login_form action</b>. "
670
  msgstr ""
671
 
 
 
 
 
672
  #, fuzzy
673
  #| msgid "Login layout"
674
  msgid "Login form"
675
  msgstr "Login elrendezése"
676
 
 
677
  #, fuzzy
678
  #| msgid "Login form button style"
679
  msgid "Login button style"
680
  msgstr "Login gomb stílusa"
681
 
 
 
 
 
 
 
682
  msgid "Login layout"
683
  msgstr "Login elrendezése"
684
 
 
 
 
 
 
 
 
685
  msgid "Button alignment"
686
  msgstr "Gombok igazítása"
687
 
 
 
 
 
 
 
 
 
 
688
  msgid "Left"
689
  msgstr "Bal"
690
 
 
 
 
 
 
 
 
 
 
691
  msgid "Center"
692
  msgstr "Közép"
693
 
 
 
 
 
 
 
 
 
 
694
  msgid "Right"
695
  msgstr "Jobb"
696
 
 
697
  msgid "Login button"
698
  msgstr "Login gomb"
699
 
 
 
700
  msgid "Show"
701
  msgstr "Megjelenít"
702
 
 
703
  msgid "Hide"
704
  msgstr "Elrejt"
705
 
 
706
  #, php-format
707
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
708
  msgstr ""
709
  "Ahhoz, hogy ez a funkció működjön, be kell kapcsolnod a ' %1$s > %2$s > %3$s "
710
  "'-t."
711
 
 
712
  msgid "Discussion"
713
  msgstr "Értekezés"
714
 
 
715
  msgid "Users must be registered and logged in to comment"
716
  msgstr "A felhasználóknak be kell jelentkezve lenniük a kommenteléshez."
717
 
 
 
718
  msgid "Button style"
719
  msgstr "Gomb stílus:"
720
 
721
+ #, fuzzy
722
+ #| msgid "No Connect button in login form"
723
+ msgid "No Connect button in Login form"
724
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
725
+
726
+ #, fuzzy
727
+ #| msgid "No Connect button in login form"
728
+ msgid "Connect button on"
729
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
730
+
731
+ msgid "Login form button style"
732
+ msgstr "Login gomb stílusa"
733
+
734
+ #, fuzzy
735
+ #| msgid "No Connect button in login form"
736
+ msgid "No Connect button in Register form"
737
+ msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
738
+
739
+ #, fuzzy
740
+ #| msgid "Login form button style"
741
+ msgid "Register form button style"
742
+ msgstr "Login gomb stílusa"
743
+
744
  msgid "Target window"
745
  msgstr "Célablak"
746
 
 
747
  msgid "Prefer popup"
748
  msgstr "Felugró ablak"
749
 
 
750
  msgid "Prefer new tab"
751
  msgstr "Új tab"
752
 
 
753
  msgid "Prefer same window"
754
  msgstr "Ugyanazon ablak"
755
 
 
756
  msgid "Registration notification sent to"
757
  msgstr "Regisztrációról értesítést kap"
758
 
 
 
759
  msgid "WordPress default"
760
  msgstr "WordPress alapértelmezett"
761
 
 
762
  msgid "Nobody"
763
  msgstr "Senki"
764
 
 
765
  msgid "Admin"
766
  msgstr "Admin"
767
 
 
768
  msgid "User and Admin"
769
  msgstr "Felhasználó és Admin"
770
 
 
771
  msgid "Unlink"
772
  msgstr "Szétkapcsolás "
773
 
 
774
  msgid "Allow Social account unlink"
775
  msgstr "Szétkapcsolás engedélyezése"
776
 
 
777
  msgid "Show linked providers"
778
  msgstr ""
779
 
 
780
  #, php-format
781
  msgid "Providers linked to the account will appear in the %1$s."
782
  msgstr ""
783
 
 
784
  #, fuzzy
785
  #| msgid "Test to Enable"
786
  msgid "Users table"
787
  msgstr "Tesztelés az Engedélyezéshez"
788
 
 
789
  #, fuzzy
790
  #| msgid "Disable login for the selected roles"
791
  msgid "Disable Admin bar for roles"
792
  msgstr "Bejelntkezés kikapcsolása a kijelölt szerepköröknek"
793
 
 
794
  msgid "Debug mode"
795
  msgstr "Debug mód"
796
 
 
797
  msgid "Page for register flow"
798
  msgstr "Page for register flow"
799
 
 
 
800
  msgid "None"
801
  msgstr "Semmi"
802
 
 
803
  msgid ""
804
  "This setting is used when you request additional data from the users (such "
805
  "as email address) and to display the Terms and conditions."
808
  "( mint például email címet ) illetve a Felhasználói feltételek "
809
  "megjelenítéséhez."
810
 
 
811
  #, php-format
812
  msgid ""
813
  "%2$s First create a new page and insert the following shortcode: %1$s then "
816
  "%2$s Előszőr hozz létre egy új oldalt, majd másold be a következő shortcode-"
817
  "ot: %1$s majd válaszd ki azt az oldal itt."
818
 
 
 
819
  msgid "Usage:"
820
  msgstr "Használat"
821
 
 
 
822
  #, php-format
823
  msgid ""
824
  "%1$s You won't be able to reach the selected page unless a social login/"
827
  "%1$s A kiválasztott csak a login és regisztráció folyamat számára less "
828
  "elérhető."
829
 
 
 
830
  msgid "Important:"
831
  msgstr "Fontos:"
832
 
 
833
  msgid "OAuth redirect uri proxy page"
834
  msgstr "OAuth redirect uri proxy page"
835
 
 
836
  msgid ""
837
  "You can use this setting when wp-login.php page is not available to handle "
838
  "the OAuth flow."
840
  "Ez a beállítás akkor használatos ha a wp-login.php oldal nem elérhető, hogy "
841
  "kezelje az OAauth folyamatot."
842
 
 
843
  #, php-format
844
  msgid "%1$s First create a new page then select this page above."
845
  msgstr "%1$s Előszőr hozz létre egy új oldal majd válaszd ki azt az oldal itt."
846
 
 
847
  msgid "Prevent external redirect overrides"
848
  msgstr "Külső átirányítások felülírása"
849
 
 
850
  msgid "Disable external redirects"
851
  msgstr "Külső átirányítások letiltása"
852
 
 
853
  msgid "Default redirect url"
854
  msgstr "Alapértelmezett átirányítási url"
855
 
 
 
856
  msgid "for Login"
857
  msgstr "Loginkor"
858
 
 
 
859
  msgid "for Register"
860
  msgstr "Regisztrációkor"
861
 
 
862
  msgid "Fixed redirect url"
863
  msgstr "Fix átirányítási link"
864
 
 
865
  msgid "Blacklisted redirects"
866
  msgstr "Tiltott átirányítások"
867
 
 
868
  msgid "If you want to blacklist redirect url params. One pattern per line."
869
  msgstr ""
870
 
 
871
  msgid "Support login restrictions"
872
  msgstr ""
873
 
 
874
  #, php-format
875
  msgid "Please visit to our %1$s to check what plugins are supported!"
876
  msgstr ""
877
 
 
878
  msgid "Display avatars in \"All media items\""
879
  msgstr ""
880
 
 
881
  msgid ""
882
  "Enabling this option can speed up loading images in Media Library - Grid "
883
  "view!"
884
  msgstr ""
885
 
 
886
  msgid "Membership"
887
  msgstr ""
888
 
 
889
  msgid "Allow registration with Social login."
890
  msgstr ""
891
 
 
892
  #, fuzzy
893
  #| msgid "Page for register flow"
894
  msgid "Custom label for register buttons"
895
  msgstr "Page for register flow"
896
 
 
897
  #, php-format
898
  msgid ""
899
  "Set a custom label for the social buttons in registration forms and for "
901
  "can be modified at the Buttons tab of each provider."
902
  msgstr ""
903
 
 
 
 
 
 
 
 
 
904
  msgid "Below and floating"
905
  msgstr "Alul lebegve"
906
 
 
907
  msgid "Embedded Login form button style"
908
  msgstr ""
909
 
 
910
  msgid "Embedded Login layout"
911
  msgstr ""
912
 
 
913
  #, fuzzy
914
  #| msgid "Login form button style"
915
  msgid "Embedded login form button alignment"
916
  msgstr "Login gomb stílusa"
917
 
 
 
918
  msgid "Registration Form"
919
  msgstr ""
920
 
 
921
  msgid "Embedded login form"
922
  msgstr ""
923
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
924
  msgid "Sign Up form"
925
  msgstr ""
926
 
 
927
  #, fuzzy
928
  #| msgid "No Connect button in login form"
929
  msgid "No Connect button in Sign Up form"
930
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
931
 
 
932
  #, fuzzy
933
  #| msgid "Login form button style"
934
  msgid "Sign Up form button style"
935
  msgstr "Login gomb stílusa"
936
 
 
937
  #, fuzzy
938
  #| msgid "Login layout"
939
  msgid "Sign Up layout"
940
  msgstr "Login elrendezése"
941
 
 
 
 
942
  #, fuzzy
943
  #| msgid "WooCommerce account details"
944
  msgid "Account details"
945
  msgstr "WooCommerce fiók részletes beállítások"
946
 
 
 
947
  msgid "No link buttons"
948
  msgstr ""
949
 
 
 
950
  msgid "Link buttons after account details"
951
  msgstr "Összekapcsoló gombok a profil részletes beállításai után"
952
 
 
 
953
  msgid ""
954
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
955
  "\"_blank\">Privacy Policy</a>"
956
  msgstr ""
957
 
 
958
  msgid "Store"
959
  msgstr ""
960
 
 
961
  msgid "First and last name"
962
  msgstr ""
963
 
 
964
  msgid "When not enabled, username will be randomly generated."
965
  msgstr ""
966
 
 
 
967
  msgid "Email"
968
  msgstr "Email"
969
 
 
970
  msgid "When not enabled, email will be empty."
971
  msgstr ""
972
 
 
 
973
  msgid "Avatar"
974
  msgstr ""
975
 
 
 
976
  msgid "Access token"
977
  msgstr ""
978
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
979
  msgid "Register Form"
980
  msgstr ""
981
 
 
982
  msgid "No Connect button in login form"
983
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
984
 
 
985
  msgid "No Connect button in register form"
986
  msgstr ""
987
 
 
988
  #, fuzzy
989
  #| msgid "WooCommerce billing form"
990
  msgid "Billing form"
991
  msgstr "WooCommerce számlázási űrlap"
992
 
 
993
  msgid "No Connect button in billing form"
994
  msgstr "Ne legyen összekapcsoló gomb a számlázási űrlapnál"
995
 
 
996
  #, fuzzy
997
  #| msgid "Login layout"
998
  msgid "Billing layout"
999
  msgstr "Login elrendezése"
1000
 
 
1001
  #, fuzzy
1002
  #| msgid "Below with separator"
1003
  msgid "Default with separator"
1004
  msgstr "Alul, elválasztóval"
1005
 
 
1006
  msgid "Checkout for WooCommerce"
1007
  msgstr ""
1008
 
 
1009
  #, fuzzy
1010
  #| msgid "No Connect button in login form"
1011
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1012
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1013
 
 
1014
  msgid "Checkout for WooCommerce layout"
1015
  msgstr ""
1016
 
 
1017
  #, fuzzy
1018
  #| msgid "No Connect button in login form"
1019
  msgid "No Connect buttons in account details form"
1020
  msgstr "Ne legyen összekapcsoló gomb a belépő űrlapnál"
1021
 
 
 
1022
  #, fuzzy
1023
  #| msgid "Icon button"
1024
  msgid "Link buttons on"
1025
  msgstr "Ikon gomb"
1026
 
 
1027
  #, fuzzy
1028
  #| msgid "Ask E-mail on registration"
1029
  msgid "Email template for registration"
1030
  msgstr "E-mail kérésére regisztrációkor"
1031
 
 
1032
  #, fuzzy
1033
  #| msgid "WordPress default"
1034
  msgid "WordPress default notification"
1035
  msgstr "WordPress alapértelmezett"
1036
 
 
1037
  #, fuzzy
1038
  #| msgid "Registration notification sent to"
1039
  msgid "WooCommerce registration notification"
1040
  msgstr "Regisztrációról értesítést kap"
1041
 
 
1042
  #, php-format
1043
  msgid ""
1044
  "Defines whether the registration with %1$s will send the same registration "
1045
  "notification that %2$s does, instead of the %3$s default one."
1046
  msgstr ""
1047
 
 
1048
  #, fuzzy, php-format
1049
  #| msgid "Authentication successful"
1050
  msgid "Network connection successful: %1$s"
1051
  msgstr "Hitelesítés sikeres"
1052
 
 
1053
  #, php-format
1054
  msgid "Network connection failed: %1$s"
1055
  msgstr ""
1056
 
 
1057
  msgid ""
1058
  "Please contact with your hosting provider to resolve the network issue "
1059
  "between your server and the provider."
1060
  msgstr ""
1061
 
 
1062
  msgid "Manage Avatar"
1063
  msgstr ""
1064
 
 
1065
  #, php-format
1066
  msgid "Avatar <span class=\"count\">(%s)</span>"
1067
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1068
  msgstr[0] ""
1069
  msgstr[1] ""
1070
 
 
1071
  msgid "Invalid URL Provided."
1072
  msgstr ""
1073
 
 
1074
  msgid "Could not create Temporary file."
1075
  msgstr ""
1076
 
 
1077
  #, php-format
1078
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1079
  msgstr ""
1080
 
 
1081
  msgid "https://wordpress.org/"
1082
  msgstr ""
1083
 
 
1084
  msgid "Powered by WordPress"
1085
  msgstr ""
1086
 
 
1087
  #, php-format
1088
  msgctxt "site"
1089
  msgid "&larr; Back to %s"
1090
  msgstr ""
1091
 
 
1092
  msgid "Your configuration needs to be verified"
1093
  msgstr ""
1094
 
 
1095
  msgid ""
1096
  "Before you can start letting your users register with your app it needs to "
1097
  "be tested. This test makes sure that no users will have troubles with the "
1105
  "felugró ablakban, nézd meg az appodat vagy a kimásolt hitelesítő adatokat. "
1106
  "Ha nincs hibaüzenet, az azt jelenti, hogy minden rendben van."
1107
 
 
1108
  msgid "Please save your changes to verify settings."
1109
  msgstr ""
1110
 
 
1111
  msgid "Works Fine"
1112
  msgstr "Megfelelően Működik"
1113
 
 
1114
  #, php-format
1115
  msgid ""
1116
  "This provider is currently disabled, which means that users can’t register "
1119
  "Ez a provider jelenleg nincs bekapcsolva, ami azt jelenti, hogy a "
1120
  "felhasználók nem tudnak regisztrálni vagy belépni a %s fiókjukkal."
1121
 
 
1122
  #, php-format
1123
  msgid ""
1124
  "This provider works fine, but you can test it again. If you don’t want to "
1128
  "továbbiakban nem akarod, hogy regisztráljanak vagy belépjenek a %s "
1129
  "fiókjukkal kikapcsolhatod a providertt."
1130
 
 
1131
  #, php-format
1132
  msgid ""
1133
  "This provider is currently enabled, which means that users can register or "
1136
  "Ez a provider jelenleg be vankapcsolva, ami azt jelenti, hogy a felhasználók "
1137
  "regisztrálhatnak és beléphetnek a %s fiókjukkal."
1138
 
 
1139
  msgid "Verify Settings Again"
1140
  msgstr ""
1141
 
 
1142
  msgid "Please save your changes before verifying settings."
1143
  msgstr ""
1144
 
 
 
 
1145
  msgid "Authentication successful"
1146
  msgstr "Hitelesítés sikeres"
1147
 
 
 
 
1148
  msgid "Authentication error"
1149
  msgstr "Hitelesítési hiba"
1150
 
 
1151
  msgid "Unlink successful."
1152
  msgstr "Szétkapcsolás sikeres"
1153
 
 
1154
  msgid "Unlink is not allowed!"
1155
  msgstr ""
1156
 
 
 
1157
  msgid "The test was successful"
1158
  msgstr "A teszt sikeres volt"
1159
 
 
1160
  msgid "Authentication failed"
1161
  msgstr "Hitelesítés sikertelen"
1162
 
 
1163
  msgid "Identifier"
1164
  msgstr ""
1165
 
 
1166
  msgid "Profile Picture"
1167
  msgstr ""
1168
 
 
1169
  #, php-format
1170
  msgid ""
1171
  "Your %1$s account is successfully linked with your account. Now you can sign "
1174
  "A(z) %1$s fiók sikeresen össze lett kapcsolva a fiókoddal. Már könnyedén be "
1175
  "tudsz lépni a %2$s fiókoddal is."
1176
 
 
1177
  #, php-format
1178
  msgid ""
1179
  "You have already linked a(n) %s account. Please unlink the current and then "
1180
  "you can link another %s account."
1181
  msgstr ""
1182
 
 
1183
  #, fuzzy, php-format
1184
  #| msgid ""
1185
  #| "This %s account is already linked with other account. Linking process "
1189
  "Az %s fiók már haszálva van egy másik közösségi fiókkal. Az összekapcsolási "
1190
  "folyamat sikertelen!"
1191
 
 
1192
  msgid "User registration is currently not allowed."
1193
  msgstr ""
1194
 
 
1195
  #, php-format
1196
  msgid ""
1197
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
1199
  "linked %1$s account or log in with your password!"
1200
  msgstr ""
1201
 
 
1202
  #, fuzzy
1203
  #| msgid "Register button style"
1204
  msgid "Register For This Site"
1205
  msgstr "Regisztrációs gomb stílusa"
1206
 
 
1207
  #, fuzzy
1208
  #| msgid "Register"
1209
  msgctxt "Register form submit button label"
1210
  msgid "Register"
1211
  msgstr "Regisztráció"
1212
 
 
1213
  #, php-format
1214
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1215
  msgstr ""
1216
 
 
1217
  #, php-format
1218
  msgid ""
1219
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1220
  "version, the plugin is currently NOT ACTIVE."
1221
  msgstr ""
1222
 
 
 
1223
  #, php-format
1224
  msgid "Please update %1$s to version %2$s or newer."
1225
  msgstr ""
1226
 
 
 
1227
  msgid "Update now!"
1228
  msgstr ""
1229
 
 
 
1230
  msgid "Social Login"
1231
  msgstr "Közösségi belépés"
1232
 
 
1233
  msgid "Social Accounts"
1234
  msgstr ""
1235
 
 
 
 
1236
  msgid "Button skin"
1237
  msgstr "Gomb skin"
1238
 
 
 
 
1239
  msgid "Dark"
1240
  msgstr ""
1241
 
 
 
 
1242
  msgid "Light"
1243
  msgstr ""
1244
 
 
1245
  msgid "Black"
1246
  msgstr ""
1247
 
 
1248
  msgid "White"
1249
  msgstr ""
1250
 
 
 
 
 
 
1251
  #, fuzzy, php-format
1252
  #| msgid "Navigate to %s"
1253
  msgid "Navigate to <b>%s</b>"
1254
  msgstr "Látogasd meg ezt az oldalt: %s"
1255
 
 
 
 
 
 
 
 
 
 
 
1256
  #, php-format
1257
  msgid "Log in with your %s credentials if you are not logged in"
1258
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
1259
 
 
1260
  #, php-format
1261
  msgid "Click on the App with App ID: <b>%s</b>"
1262
  msgstr ""
1263
 
 
1264
  #, fuzzy
1265
  #| msgid "In the left sidebar, click on \"Facebook Login\""
1266
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1267
  msgstr "A bal oldali menüben kattints a \"Facebook Login\" feliratra"
1268
 
 
 
1269
  #, fuzzy
1270
  #| msgid ""
1271
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1275
  msgstr ""
1276
  "Tedd a következő linket az \"Valid OAuth redirect URIs\" mezőbe: <b>%s</b>"
1277
 
 
1278
  #, fuzzy
1279
  #| msgid "Click on \"Save Changes\""
1280
  msgid "Click on \"<b>Save Changes</b>\""
1281
  msgstr "Kattints a \"Save Changes\"-re"
1282
 
 
 
 
 
1283
  #, php-format
1284
  msgid ""
1285
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1286
  "order to allow login with %1$s."
1287
  msgstr ""
1288
 
 
 
 
 
1289
  msgid "How to get SSL for my WordPress site?"
1290
  msgstr ""
1291
 
 
 
 
 
 
 
1292
  #, php-format
1293
  msgid ""
1294
  "To allow your visitors to log in with their %1$s account, first you must "
1303
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
1304
  "alapján."
1305
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1306
  #, php-format
1307
  msgctxt "App creation"
1308
  msgid "Create %s"
1309
  msgstr "%s létrehozása"
1310
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1311
  #, php-format
1312
  msgid "Navigate to %s"
1313
  msgstr "Látogasd meg ezt az oldalt: %s"
1314
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1315
  #, php-format
1316
  msgid "Log in with your %s credentials if you are not logged in."
1317
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
1318
 
 
1319
  #, fuzzy
1320
  #| msgid "Click the \"Create App\" button."
1321
  msgid ""
1323
  "\"<b>Consumer</b>\" App type!"
1324
  msgstr "Kattints a \"Create App\" gombra"
1325
 
 
1326
  msgid ""
1327
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1328
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1329
  "finally verify your account."
1330
  msgstr ""
1331
 
 
1332
  #, php-format
1333
  msgid ""
1334
  "Fill \"<b>App Display Name</b>\", \"<b>App Contact Email</b>\". The "
1335
  "specified \"App Display Name\" will appear on your %s!"
1336
  msgstr ""
1337
 
 
1338
  msgid ""
1339
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1340
  "if you have any."
1341
  msgstr ""
1342
 
 
1343
  #, fuzzy
1344
  #| msgid "Click the \"Create App\" button."
1345
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
1346
  msgstr "Kattints a \"Create App\" gombra"
1347
 
 
1348
  #, php-format
1349
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
1350
  msgstr ""
1351
 
 
1352
  #, fuzzy, php-format
1353
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
1354
  msgid ""
1356
  "field: <b>%s</b>"
1357
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
1358
 
 
1359
  #, fuzzy
1360
  #| msgid "Click on \"Save Changes\""
1361
  msgid "Press “<b>Save</b>”."
1362
  msgstr "Kattints a \"Save Changes\"-re"
1363
 
 
1364
  #, php-format
1365
  msgid ""
1366
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1367
  "%2$s</b> - <b>%3$s</b>”"
1368
  msgstr ""
1369
 
 
1370
  #, fuzzy
1371
  #| msgid "Click on \"Save Changes\""
1372
  msgid "Click on “<b>Save Changes</b>”."
1373
  msgstr "Kattints a \"Save Changes\"-re"
1374
 
 
 
1375
  #, php-format
1376
  msgid ""
1377
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1378
  "%2$s</b>”."
1379
  msgstr ""
1380
 
 
1381
  #, fuzzy, php-format
1382
  #| msgid "Enter your domain name to the App Domains"
1383
  msgid ""
1385
  "b>"
1386
  msgstr "Írd be a domain neved az \"App Domains\" mezőbe"
1387
 
 
1388
  #, fuzzy
1389
  #| msgid ""
1390
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
1399
  "tartalmazza az adatvédelmi irányelveket, amik elmagyarázzák, milyen "
1400
  "információkat gyűjtesz és mihez kezdesz velük."
1401
 
 
1402
  msgid ""
1403
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1404
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1405
  "instructions on how users can delete their accounts on your site."
1406
  msgstr ""
1407
 
 
1408
  msgid ""
1409
  "To comply with GDPR, you should already offer possibility to delete accounts "
1410
  "on your site, either by the user or by the admin:"
1411
  msgstr ""
1412
 
 
1413
  msgid ""
1414
  "<u>If each user has an option to delete the account</u>: the URL should "
1415
  "point to a guide showing the way users can delete their accounts."
1416
  msgstr ""
1417
 
 
1418
  msgid ""
1419
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
1420
  "section - usually in the Privacy Policy - with the contact details, where "
1422
  "point to this section of the document."
1423
  msgstr ""
1424
 
 
1425
  msgid ""
1426
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1427
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1428
  "Changes</b>\"."
1429
  msgstr ""
1430
 
 
1431
  #, fuzzy
1432
  #| msgid ""
1433
  #| "Your application is currently private ( Status: In Development ), which "
1442
  "vele. A felső menüben kattintsz az \"OFF\" választó gombra és válassz egy "
1443
  "kategóriát az Appodnak."
1444
 
 
1445
  #, php-format
1446
  msgid ""
1447
  "By default, your application only has Standard access for the permissions, "
1451
  "should click on the <strong>%6$s</strong> buttons next to them. "
1452
  msgstr ""
1453
 
 
1454
  #, fuzzy, php-format
1455
  #| msgid ""
1456
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
1464
  "Itt találod az \"App ID\"-t és az \"App Secret\"-et, ha a \"Show\" gombra "
1465
  "kattintasz. Ezekre lesz szükséged a plugin beállításainál."
1466
 
 
1467
  #, php-format
1468
  msgid ""
1469
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1474
  "the Facebook App, then please check our %2$sdocumentation%3$s."
1475
  msgstr ""
1476
 
 
1477
  msgid "Maintaining the Facebook App:"
1478
  msgstr ""
1479
 
 
1480
  #, php-format
1481
  msgid ""
1482
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1487
  "that we need."
1488
  msgstr ""
1489
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1490
  #, php-format
1491
  msgid "I am done setting up my %s"
1492
  msgstr "Befejeztem a %s appom elkészítését"
1493
 
 
 
1494
  msgid "App ID"
1495
  msgstr "App ID"
1496
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1497
  msgid "Required"
1498
  msgstr "Kötelező"
1499
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1500
  #, php-format
1501
  msgid ""
1502
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1505
  "Ha nem vagy benne biztos, hogy mit kell írnod a(z) %1$s mezőbe, menj vissza "
1506
  "az <a href=\"%2$s\">Első lépések</a> fülre."
1507
 
 
1508
  msgid "App Secret"
1509
  msgstr "App Secret"
1510
 
 
 
1511
  #, php-format
1512
  msgid ""
1513
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
1514
  "longer be able to login with %1$s."
1515
  msgstr ""
1516
 
 
 
1517
  msgid "Find out why?"
1518
  msgstr ""
1519
 
 
1520
  msgid "Continue with <b>Facebook</b>"
1521
  msgstr "Folytatás a <b>Facebook</b>-kal"
1522
 
 
1523
  msgid "Sign up with <b>Facebook</b>"
1524
  msgstr "Regisztrálás a <b>Facebook</b>-kal"
1525
 
 
1526
  msgid "Link account with <b>Facebook</b>"
1527
  msgstr "Fiók összekapcsolása a <b>Facebook</b>-kal"
1528
 
 
1529
  msgid "Unlink account from <b>Facebook</b>"
1530
  msgstr "Szétkapcsolás <b>Facebook</b>-tól"
1531
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1532
  #, php-format
1533
  msgid ""
1534
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1536
  "A megadott %1$s nem tűnik helyesnek. Győződj meg róla, hogy a beírt %2$s "
1537
  "helyes."
1538
 
 
 
1539
  #, php-format
1540
  msgid "Required scope: %1$s"
1541
  msgstr ""
1542
 
 
1543
  msgid "Uniform - Legacy"
1544
  msgstr ""
1545
 
 
1546
  #, fuzzy
1547
  #| msgid ""
1548
  #| "Click on the \"Credentials\" in the left hand menu to create new API "
1552
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
1553
  "adatokat készíts"
1554
 
 
1555
  #, php-format
1556
  msgid ""
1557
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
1558
  "%s</b>"
1559
  msgstr ""
1560
 
 
 
1561
  #, fuzzy, php-format
1562
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1563
  msgid ""
1565
  "following URL:"
1566
  msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
1567
 
 
 
 
 
1568
  #, fuzzy
1569
  #| msgid "Click on \"Save\""
1570
  msgid "Click on \"<b>Save</b>\""
1571
  msgstr "Kattints a \"Save\" gombra"
1572
 
 
1573
  #, fuzzy, php-format
1574
  #| msgid ""
1575
  #| "If you don't have a project yet, you'll need to create one. You can do "
1588
  "kattints a projected nevére a dashboardon, ami előfog hozni egy ablakot ahol "
1589
  "a \"New Project\"-re kell kattintanod.)"
1590
 
 
1591
  #, fuzzy, php-format
1592
  #| msgid "Name your project and then click on the Create button again"
1593
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
1594
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
1595
 
 
1596
  msgid ""
1597
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
1598
  "have already had a Project, then make sure you select the created project in "
1599
  "the top bar! )"
1600
  msgstr ""
1601
 
 
1602
  #, fuzzy, php-format
1603
  #| msgid ""
1604
  #| "Click on the \"Credentials\" in the left hand menu to create new API "
1608
  "Kattints a \"Credentials\" feliratra a bal oldali menüben hogy új API "
1609
  "adatokat készíts"
1610
 
 
1611
  #, php-format
1612
  msgid ""
1613
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
1615
  "account, then pick the \"%4$s\" option!"
1616
  msgstr ""
1617
 
 
1618
  #, php-format
1619
  msgid ""
1620
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
1622
  "%1$s!"
1623
  msgstr ""
1624
 
 
1625
  #, php-format
1626
  msgid ""
1627
  "Enter a name for your App to the \"<b>%1$s</b>\" field, which will appear as "
1628
  "the name of the app asking for consent."
1629
  msgstr ""
1630
 
 
1631
  #, php-format
1632
  msgid ""
1633
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
1634
  "contact you with questions about their consent."
1635
  msgstr ""
1636
 
 
1637
  #, fuzzy, php-format
1638
  #| msgid ""
1639
  #| "Fill the \"Authorized domains\" field with your domain name probably: <b>"
1645
  "Írd be a weboldalad főoldalának címét a \"Authorized domains\" mezőbe. "
1646
  "Valószínűleg ez lesz az: <b>%s</b>"
1647
 
 
1648
  #, php-format
1649
  msgid ""
1650
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
1651
  "notify you about any changes to your project."
1652
  msgstr ""
1653
 
 
1654
  #, php-format
1655
  msgid ""
1656
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
1657
  "too!"
1658
  msgstr ""
1659
 
 
1660
  #, php-format
1661
  msgid ""
1662
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
1663
  "\"<b>%2$s</b>\" button in the top bar."
1664
  msgstr ""
1665
 
 
1666
  #, fuzzy, php-format
1667
  #| msgid "Click on the Create button"
1668
  msgid "Choose the \"<b>%1$s</b>\" option."
1669
  msgstr "Kattints a \"Create\" gombra"
1670
 
 
1671
  #, fuzzy, php-format
1672
  #| msgid ""
1673
  #| "Click on the link \"registering an application\" under the Applications "
1676
  msgstr ""
1677
  "Kattints a \"registering an application\" linker az Aplications tab alatt."
1678
 
 
1679
  #, php-format
1680
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
1681
  msgstr ""
1682
 
 
1683
  #, fuzzy, php-format
1684
  #| msgid "Click on the Create button"
1685
  msgid "Click on the \"<b>%1$s</b>\" button"
1686
  msgstr "Kattints a \"Create\" gombra"
1687
 
 
1688
  #, fuzzy, php-format
1689
  #| msgid ""
1690
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
1701
  "menj a \"Credentials\" fülre a bal oldali menüben és választ ki az appodat a "
1702
  "nevére kattintva. Innen ki tudod másolni a Client ID-t és Client Secretet."
1703
 
 
 
 
 
 
 
 
 
1704
  msgid "Client ID"
1705
  msgstr "Client ID"
1706
 
 
 
 
 
 
 
 
1707
  msgid "Client Secret"
1708
  msgstr "Client Secret"
1709
 
 
1710
  msgid "Select account on each login"
1711
  msgstr ""
1712
 
 
1713
  msgid ""
1714
  "Disable, when you don't want to see the account select prompt on each login."
1715
  msgstr ""
1716
 
 
1717
  msgid "Continue with <b>Google</b>"
1718
  msgstr "Folytatás a <b>Google</b>-lel"
1719
 
 
1720
  msgid "Sign up with <b>Google</b>"
1721
  msgstr "Regisztrálás a <b>Google</b>-lel"
1722
 
 
1723
  msgid "Link account with <b>Google</b>"
1724
  msgstr "Fiók összekapcsolása a <b>Google</b>-lel"
1725
 
 
1726
  msgid "Unlink account from <b>Google</b>"
1727
  msgstr "Szétkapcsolás <b>Google</b>-től"
1728
 
 
1729
  #, php-format
1730
  msgid "Required API: %1$s"
1731
  msgstr "Szükséges API: %1$s"
1732
 
 
1733
  #, fuzzy
1734
  #| msgid "Find your App and click on the Details button"
1735
  msgid ""
1737
  "like a gear.)"
1738
  msgstr "Keresd meg az Appod és kattints a Details gombra."
1739
 
 
1740
  #, fuzzy
1741
  #| msgid "Click the \"Create App\" button."
1742
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1743
  msgstr "Kattints a \"Create App\" gombra"
1744
 
 
 
1745
  #, fuzzy, php-format
1746
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1747
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1748
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
1749
 
 
1750
  #, fuzzy, php-format
1751
  #| msgid "Make sure that the \"%1$s\" field contains %2$s"
1752
  msgid ""
1753
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1754
  msgstr "Győződj meg róla, hogy a \"%1$s\" mező tartalmazza: %2$s"
1755
 
 
1756
  msgid ""
1757
  "If you don't have a developer account yet, please apply one by filling all "
1758
  "the required details! This is required for the next steps!"
1759
  msgstr ""
1760
 
 
1761
  #, php-format
1762
  msgid ""
1763
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
1764
  "aren't already there!"
1765
  msgstr ""
1766
 
 
1767
  #, fuzzy, php-format
1768
  #| msgid "Click on \"Save\""
1769
  msgid "Click on \"<b>%s</b>\"!"
1770
  msgstr "Kattints a \"Save\" gombra"
1771
 
 
1772
  msgid ""
1773
  "Name your project, and go through the basic setup. You’ll need to select "
1774
  "your use case, give a description and enter a name for the App as well."
1775
  msgstr ""
1776
 
 
1777
  #, fuzzy, php-format
1778
  #| msgid "Click on \"Save\""
1779
  msgid "Click \"<b>%s</b>\"!"
1780
  msgstr "Kattints a \"Save\" gombra"
1781
 
 
1782
  #, php-format
1783
  msgid ""
1784
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
1786
  "press \"<b>Save Changes</b>\"."
1787
  msgstr ""
1788
 
 
1789
  #, php-format
1790
  msgid ""
1791
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
1792
  "\" section click on the name of your App."
1793
  msgstr ""
1794
 
 
1795
  #, fuzzy, php-format
1796
  #| msgid "Name your project and then click on the Create button again"
1797
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1798
  msgstr "Adj nevet a projektnek és kattints a \"Create\" gombra újra."
1799
 
 
1800
  #, fuzzy, php-format
1801
  #| msgid "Click on the Create button"
1802
  msgid "Switch on the \"<b>%s</b>\" option."
1803
  msgstr "Kattints a \"Create\" gombra"
1804
 
 
1805
  #, fuzzy, php-format
1806
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1807
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
1808
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
1809
 
 
1810
  #, php-format
1811
  msgid ""
1812
  "If you want to get the email address as well, then don’t forget to enable "
1814
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1815
  msgstr ""
1816
 
 
1817
  #, fuzzy, php-format
1818
  #| msgid "Click on \"Save\""
1819
  msgid "Click on \"<b>%s</b>\"."
1820
  msgstr "Kattints a \"Save\" gombra"
1821
 
 
1822
  #, php-format
1823
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
1824
  msgstr ""
1825
 
 
 
1826
  msgid "API Key"
1827
  msgstr ""
1828
 
 
1829
  msgid "API secret key"
1830
  msgstr ""
1831
 
 
1832
  msgid "Profile image size"
1833
  msgstr ""
1834
 
 
1835
  msgid "Original"
1836
  msgstr ""
1837
 
 
1838
  msgid "Continue with <b>Twitter</b>"
1839
  msgstr "Folytatás a <b>Twitter</b>-rel"
1840
 
 
1841
  msgid "Sign up with <b>Twitter</b>"
1842
  msgstr "Regisztrálás a <b>Twitter</b>-rel"
1843
 
 
1844
  msgid "Link account with <b>Twitter</b>"
1845
  msgstr "Fiók összekapcsolása a <b>Twitter</b>-rel"
1846
 
 
1847
  msgid "Unlink account from <b>Twitter</b>"
1848
  msgstr "Szétkapcsolás <b>Twitter</b>-től"
1849
 
 
1850
  #, php-format
1851
  msgid "%s Buttons"
1852
  msgstr "%s Gombok"
1853
 
 
1854
  msgid "Title:"
1855
  msgstr ""
1856
 
 
1857
  msgid "Button style:"
1858
  msgstr "Gomb stílus:"
1859
 
 
1860
  msgid "Button align:"
1861
  msgstr "Gombok igazítása"
1862
 
 
1863
  msgid "Show link buttons"
1864
  msgstr ""
1865
 
 
1866
  msgid "Show unlink buttons"
1867
  msgstr ""
1868
 
 
1869
  msgid "Social login is not allowed with this role!"
1870
  msgstr ""
1871
  "A közösségi fiókkal való belépés nem engedélyezett erre a felhasználói "
1872
  "szintre."
1873
 
 
1874
  msgid "Please enter a username."
1875
  msgstr ""
1876
 
 
1877
  msgid ""
1878
  "This username is invalid because it uses illegal characters. Please enter a "
1879
  "valid username."
1880
  msgstr ""
1881
 
 
1882
  msgid ""
1883
  "<strong>Error</strong>: This username is already registered. Please choose "
1884
  "another one."
1885
  msgstr ""
1886
 
 
1887
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
1888
  msgstr ""
1889
 
 
1890
  msgid "Username"
1891
  msgstr ""
1892
 
 
1893
  msgid "<strong>Error</strong>: Please enter an email address."
1894
  msgstr ""
1895
 
 
1896
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
1897
  msgstr ""
1898
 
 
1899
  msgid ""
1900
  "<strong>Error</strong>: This email is already registered. Please choose "
1901
  "another one."
1902
  msgstr ""
1903
 
 
1904
  msgid "Registration confirmation will be emailed to you."
1905
  msgstr ""
1906
 
 
1907
  msgid "<strong>Error</strong>: Please enter a password."
1908
  msgstr ""
1909
 
 
1910
  msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
1911
  msgstr ""
1912
 
 
1913
  msgid ""
1914
  "<strong>Error</strong>: Passwords don&#8217;t match. Please enter the same "
1915
  "password in both password fields."
1916
  msgstr ""
1917
 
 
1918
  msgid "Password"
1919
  msgstr ""
1920
 
 
1921
  msgid "Strength indicator"
1922
  msgstr ""
1923
 
 
1924
  msgid "Confirm use of weak password"
1925
  msgstr ""
1926
 
 
1927
  msgid "Confirm password"
1928
  msgstr ""
1929
 
 
1930
  #, php-format
1931
  msgid ""
1932
  "This email is already registered, please login in to your account to link "
1933
  "with %1$s."
1934
  msgstr ""
1935
 
 
1936
  #, php-format
1937
  msgid "Please install and activate %1$s to use the %2$s"
1938
  msgstr ""
1939
 
 
1940
  msgid "Network Activate"
1941
  msgstr ""
1942
 
 
1943
  msgid "Install now!"
1944
  msgstr ""
1945
 
 
1946
  #, fuzzy
1947
  #| msgid "Providers"
1948
  msgid "Social Providers"
1949
  msgstr "Providerek"
1950
 
 
1951
  #, php-format
1952
  msgid ""
1953
  "The Facebook Sync data needs an approved %1$s and your App must use the "
1954
  "latest %2$s version!"
1955
  msgstr ""
1956
 
 
1957
  #, php-format
1958
  msgid ""
1959
  "Most of these information can only be retrieved, when the field is marked as "
1960
  "Public on the user's %s page!"
1961
  msgstr ""
1962
 
 
 
1963
  #, php-format
1964
  msgid "Visit %s"
1965
  msgstr "Látogass el ide: %s."
1966
 
 
 
1967
  msgid ""
1968
  "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
1969
  "select \"<b>Web Settings</b>\" option."
1970
  msgstr ""
1971
 
 
 
1972
  msgid "Click \"<b>Edit</b>\"."
1973
  msgstr ""
1974
 
 
 
1975
  #, fuzzy
1976
  #| msgid ""
1977
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
1978
  msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
1979
  msgstr "Tedd a következő linket az \"Allowed Return URLs\" mezőbe: <b>%s</b>"
1980
 
 
 
 
 
 
 
 
1981
  #, php-format
1982
  msgid ""
1983
  "To allow your visitors to log in with their %1$s account, first you must "
1992
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
1993
  "alapján."
1994
 
 
1995
  #, fuzzy
1996
  #| msgid ""
1997
  #| "If you don't have a Security Profile yet, you'll need to create one. You "
2006
  "narancssárga \"Create a New Security Profile\" gombra kattintva a bal "
2007
  "oldalon."
2008
 
 
2009
  msgid ""
2010
  "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
2011
  "\" and \"<b>Consent Privacy Notice URL</b>\"."
2012
  msgstr ""
2013
 
 
2014
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
2015
  msgstr ""
2016
 
 
2017
  #, fuzzy, php-format
2018
  #| msgid ""
2019
  #| "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</"
2025
  "Írd be a weboldalad főoldalának címét a \"Allowed Origins\" mezőbe. "
2026
  "Valószínűleg ez lesz az: <b>%s</b>"
2027
 
 
 
2028
  msgid "When all fields are filled, click \"<b>Save</b>\"."
2029
  msgstr ""
2030
 
 
2031
  #, fuzzy
2032
  #| msgid ""
2033
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2039
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
2040
  "Web Settings tab alatt."
2041
 
 
2042
  msgid "Continue with <b>Amazon</b>"
2043
  msgstr "Folytatás az <b>Amazon</b>-nal"
2044
 
 
2045
  msgid "Sign up with <b>Amazon</b>"
2046
  msgstr "Regisztrálás az <b>Amazon</b>-nal"
2047
 
 
2048
  msgid "Link account with <b>Amazon</b>"
2049
  msgstr "Fiók összekapcsolása az <b>Amazon</b>-nal"
2050
 
 
2051
  msgid "Unlink account from <b>Amazon</b>"
2052
  msgstr "Szétkapcsolás <b>Amazon</b>-tól"
2053
 
 
2054
  #, fuzzy
2055
  #| msgid "Click on the name of your %s App."
2056
  msgid "Click on the name of your service."
2057
  msgstr "Kattints az %s Appod nevére."
2058
 
 
2059
  msgid ""
2060
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
2061
  msgstr ""
2062
 
 
 
2063
  #, php-format
2064
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
2065
  msgstr ""
2066
 
 
 
2067
  #, fuzzy, php-format
2068
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
2069
  msgid ""
2073
  "Írd be a weboldalad főoldalának címét a \"Base domain\" mezőbe. Valószínűleg "
2074
  "ez lesz az: <b>%s</b>"
2075
 
 
 
2076
  #, fuzzy
2077
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2078
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2079
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2080
 
 
2081
  msgid ""
2082
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2083
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2084
  msgstr ""
2085
 
 
2086
  #, fuzzy, php-format
2087
  #| msgid ""
2088
  #| "To allow your visitors to log in with their %1$s account, first you must "
2103
  "\"Beállítások\" fülre és állítsd be a \"%2$s\"-t és \"%3$s\"-t a %1$s Appod "
2104
  "alapján."
2105
 
 
2106
  msgid ""
2107
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
2108
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
2110
  "App!"
2111
  msgstr ""
2112
 
 
2113
  msgid ""
2114
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
2115
  "b>!"
2116
  msgstr ""
2117
 
 
2118
  msgid "1.) Create the associated App:"
2119
  msgstr ""
2120
 
 
2121
  #, php-format
2122
  msgid ""
2123
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
2124
  "option and click the \"Continue\" button."
2125
  msgstr ""
2126
 
 
2127
  #, php-format
2128
  msgid ""
2129
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
2130
  "\"<b>Continue</b>\" button."
2131
  msgstr ""
2132
 
 
2133
  msgid "Enter a \"<b>Description</b>\""
2134
  msgstr ""
2135
 
 
2136
  #, php-format
2137
  msgid ""
2138
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
2140
  "app at its end: <b>%s.nslapp</b>"
2141
  msgstr ""
2142
 
 
2143
  msgid ""
2144
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
2145
  "b>\" option."
2146
  msgstr ""
2147
 
 
2148
  msgid ""
2149
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
2150
  "\"<b>Register</b>\" button."
2151
  msgstr ""
2152
 
 
2153
  msgid "2.) Create the Key:"
2154
  msgstr ""
2155
 
 
2156
  #, php-format
2157
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
2158
  msgstr ""
2159
 
 
2160
  msgid "Enter a name in the <b>Key Name</b> field."
2161
  msgstr ""
2162
 
 
2163
  msgid ""
2164
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
2165
  "b>\"."
2166
  msgstr ""
2167
 
 
2168
  msgid ""
2169
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
2170
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
2171
  "\"."
2172
  msgstr ""
2173
 
 
2174
  msgid ""
2175
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
2176
  "\" button."
2177
  msgstr ""
2178
 
 
2179
  msgid "<b>Don't download the key yet!</b>"
2180
  msgstr ""
2181
 
 
2182
  msgid "3.) Create the Service:"
2183
  msgstr ""
2184
 
 
2185
  #, php-format
2186
  msgid ""
2187
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
2188
  "tab."
2189
  msgstr ""
2190
 
 
2191
  #, php-format
2192
  msgid ""
2193
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
2194
  "option and click the \"<b>Continue</b>\" button."
2195
  msgstr ""
2196
 
 
2197
  msgid "Enter a \"<b>Description</b>\"."
2198
  msgstr ""
2199
 
 
2200
  #, php-format
2201
  msgid ""
2202
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
2203
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
2204
  msgstr ""
2205
 
 
2206
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
2207
  msgstr ""
2208
 
 
2209
  msgid ""
2210
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
2211
  msgstr ""
2212
 
 
2213
  #, php-format
2214
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
2215
  msgstr ""
2216
 
 
2217
  msgid ""
2218
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
2219
  "b>\" button next to it."
2220
  msgstr ""
2221
 
 
2222
  msgid ""
2223
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
2224
  "App what you just created."
2225
  msgstr ""
2226
 
 
2227
  #, fuzzy
2228
  #| msgid "Click the \"Create App\" button."
2229
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
2230
  msgstr "Kattints a \"Create App\" gombra"
2231
 
 
2232
  msgid ""
2233
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
2234
  "button."
2235
  msgstr ""
2236
 
 
2237
  msgid "4.) Configure Nextend Social Login with your credentials:"
2238
  msgstr ""
2239
 
 
2240
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
2241
  msgstr ""
2242
 
 
2243
  msgid "<strong><u>Private Key ID:</u></strong>"
2244
  msgstr ""
2245
 
 
 
2246
  #, fuzzy, php-format
2247
  #| msgid "Navigate to %s"
2248
  msgid "Navigate to: <b>%s</b>"
2249
  msgstr "Látogasd meg ezt az oldalt: %s"
2250
 
 
2251
  #, fuzzy
2252
  #| msgid "Click on the name of your %s App."
2253
  msgid "Click on the <b>name of your Key</b>."
2254
  msgstr "Kattints az %s Appod nevére."
2255
 
 
2256
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
2257
  msgstr ""
2258
 
 
2259
  msgid "<strong><u>Private Key:</u></strong>"
2260
  msgstr ""
2261
 
 
2262
  msgid ""
2263
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
2264
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
2265
  "this file safe</b>!</u> "
2266
  msgstr ""
2267
 
 
2268
  msgid ""
2269
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
2270
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
2271
  "\" field of Nextend Social Login."
2272
  msgstr ""
2273
 
 
2274
  msgid "<strong><u>Team Identifier:</u></strong>"
2275
  msgstr ""
2276
 
 
2277
  msgid ""
2278
  "A 10 character long identifier, what you can find on the <b>top-right "
2279
  "corner, just under your name</b>."
2280
  msgstr ""
2281
 
 
2282
  msgid "<strong><u>Service Identifier:</u></strong>"
2283
  msgstr ""
2284
 
 
2285
  #, php-format
2286
  msgid ""
2287
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
2289
  "e.g.: <b>%s.nslclient</b>"
2290
  msgstr ""
2291
 
 
2292
  msgid ""
2293
  "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
2294
  "button."
2295
  msgstr ""
2296
 
 
2297
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
2298
  msgstr ""
2299
 
 
2300
  msgid ""
2301
  "When you need to change your credentials for some reason, then you must "
2302
  "delete the token, copy the new credentials and generate a new token!"
2303
  msgstr ""
2304
 
 
2305
  msgid "Delete credentials"
2306
  msgstr ""
2307
 
 
2308
  msgid "Private Key ID"
2309
  msgstr ""
2310
 
 
2311
  #, fuzzy
2312
  #| msgid "Privacy"
2313
  msgid "Private Key"
2314
  msgstr "Privacy"
2315
 
 
2316
  msgid "Team Identifier"
2317
  msgstr ""
2318
 
 
2319
  msgid "Service Identifier"
2320
  msgstr ""
2321
 
 
2322
  msgid "Generate Token"
2323
  msgstr ""
2324
 
 
2325
  msgid "Continue with <b>Apple</b>"
2326
  msgstr "Folytatás az <b>Apple</b>-lel"
2327
 
 
2328
  msgid "Sign up with <b>Apple</b>"
2329
  msgstr "Regisztrálás az <b>Apple</b>-lel"
2330
 
 
2331
  msgid "Link account with <b>Apple</b>"
2332
  msgstr "Fiók összekapcsolása az <b>Apple</b>-lel"
2333
 
 
2334
  msgid "Unlink account from <b>Apple</b>"
2335
  msgstr "Szétkapcsolás <b>Apple</b>-től"
2336
 
 
2337
  #, php-format
2338
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2339
  msgstr ""
2340
 
 
 
 
 
2341
  #, php-format
2342
  msgid "Token generation failed: %1$s"
2343
  msgstr ""
2344
 
 
2345
  msgid "Please check your credentials!"
2346
  msgstr ""
2347
 
 
2348
  msgid "Private key format is not valid!"
2349
  msgstr ""
2350
 
 
2351
  #, php-format
2352
  msgid ""
2353
  "%s detected that your Apple credentials have expired. Please delete the "
2354
  "current credentials and generate new one!"
2355
  msgstr ""
2356
 
 
2357
  msgid "Apple Credentials"
2358
  msgstr ""
2359
 
 
 
2360
  #, php-format
2361
  msgid "Click on the name of your %s App."
2362
  msgstr "Kattints az %s Appod nevére."
2363
 
 
2364
  #, fuzzy
2365
  #| msgid ""
2366
  #| "Select \"Read only\" at Default Access under the Authentication section."
2371
  "Válaszd ki a \"Read only\"-t a Default Access-nél az Authentication "
2372
  "szekcióban."
2373
 
 
 
 
2374
  #, fuzzy
2375
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2376
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2377
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2378
 
 
2379
  #, fuzzy
2380
  #| msgid "Click on the \"Save Changes\" button."
2381
  msgid "Click on the \"<b>Save Changes</b>\" button."
2382
  msgstr "Kattints a \"Save Changes\" gombra."
2383
 
 
2384
  #, fuzzy
2385
  #| msgid ""
2386
  #| "Click on the link \"registering an application\" under the Applications "
2391
  msgstr ""
2392
  "Kattints a \"registering an application\" linker az Aplications tab alatt."
2393
 
 
2394
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
2395
  msgstr ""
2396
 
 
2397
  #, fuzzy, php-format
2398
  #| msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
2399
  msgid ""
2402
  "Írd be a weboldalad főoldalának címét a \"Website\" mezőbe. Valószínűleg ez "
2403
  "lesz az: <b>%s</b>"
2404
 
 
2405
  #, fuzzy
2406
  #| msgid ""
2407
  #| "Complete the Human test and click the \"Register my application\" button."
2412
  "Végezze el az Ember tesztet és kattintson a \"Register my application\" "
2413
  "gombra."
2414
 
 
2415
  #, fuzzy, php-format
2416
  #| msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2417
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
2419
  "Írd be a weboldalad főoldalának címét a \"Domains\" mezőbe. Valószínűleg ez "
2420
  "lesz az: <b>%s</b>"
2421
 
 
2422
  #, fuzzy
2423
  #| msgid ""
2424
  #| "Select \"Read only\" at Default Access under the Authentication section."
2429
  "Válaszd ki a \"Read only\"-t a Default Access-nél az Authentication "
2430
  "szekcióban."
2431
 
 
2432
  #, fuzzy
2433
  #| msgid "Click on the \"Save Changes\" button."
2434
  msgid "Click on the \"<b>Save Changes</b>\" button!"
2435
  msgstr "Kattints a \"Save Changes\" gombra."
2436
 
 
2437
  #, fuzzy
2438
  #| msgid "Navigate to the \"Details\" tab of your Application!"
2439
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
2440
  msgstr "Navigálj az alkalmazásod \"Details\" tabjára."
2441
 
 
2442
  #, fuzzy
2443
  #| msgid ""
2444
  #| "Here you can see your \"API Key\" and \"API Secret:\". These will be "
2450
  "Itt találod az \"API Key\"-t és az \"API Secret\"-et. Ezekre lesz szükséged "
2451
  "a plugin beállításainál."
2452
 
 
2453
  msgid "API Secret"
2454
  msgstr "API Secret"
2455
 
 
2456
  msgid "Continue with <b>Disqus</b>"
2457
  msgstr "Folytatás a <b>Disqus</b>-szal"
2458
 
 
2459
  msgid "Sign up with <b>Disqus</b>"
2460
  msgstr "Regisztrálás a <b>Disqus</b>-szal"
2461
 
 
2462
  msgid "Link account with <b>Disqus</b>"
2463
  msgstr "Fiók összekapcsolása a <b>Disqus</b>-szal"
2464
 
 
2465
  msgid "Unlink account from <b>Disqus</b>"
2466
  msgstr "Szétkapcsolás <b>Disqus</b>-tól"
2467
 
 
2468
  #, fuzzy, php-format
2469
  #| msgid "Click on the name of your %s App."
2470
  msgid "Click on the name of the App you configured %s with."
2471
  msgstr "Kattints az %s Appod nevére."
2472
 
 
2473
  #, fuzzy, php-format
2474
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2475
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2476
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2477
 
 
 
2478
  #, fuzzy
2479
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2480
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2481
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2482
 
 
2483
  #, fuzzy
2484
  #| msgid "Hit update to save the changes"
2485
  msgid "Press the <b>Update application</b> button to save the changes."
2486
  msgstr "Kattints az \"update\" gombra és mentsd el a beállításaidat."
2487
 
 
2488
  #, php-format
2489
  msgid ""
2490
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
2491
  "button."
2492
  msgstr ""
2493
 
 
2494
  msgid ""
2495
  "Enter a name into the <b>Application name</b> field. Users will see this "
2496
  "name, when they authorize your app at the OAuth consent screen!"
2497
  msgstr ""
2498
 
 
2499
  #, fuzzy, php-format
2500
  #| msgid ""
2501
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2505
  "Írd be a weboldalad főoldalának címét a \"Website URL\" mezőbe. "
2506
  "Valószínűleg ez lesz az: <b>%s</b>"
2507
 
 
2508
  msgid ""
2509
  "In the <b>Description</b> field you should explain what this App will be "
2510
  "used for."
2511
  msgstr ""
2512
 
 
2513
  #, fuzzy
2514
  #| msgid "Click on the \"Create New Application\" button."
2515
  msgid "Click the <b>Register application</b> button."
2516
  msgstr "Kattints a \"Create New Application\" gombra."
2517
 
 
2518
  #, fuzzy
2519
  #| msgid ""
2520
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2526
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
2527
  "Web Settings tab alatt."
2528
 
 
2529
  #, php-format
2530
  msgid ""
2531
  "<b>Important note:</b> The email address is only retrievable, if there is a "
2532
  "public email address set at the %1$s profile page%2$s!"
2533
  msgstr ""
2534
 
 
2535
  msgid "Continue with <b>GitHub</b>"
2536
  msgstr "Folytatás a <b>GitHub</b>-bal"
2537
 
 
2538
  msgid "Sign up with <b>GitHub</b>"
2539
  msgstr "Regisztrálás a <b>GitHub</b>-bal"
2540
 
 
2541
  msgid "Link account with <b>GitHub</b>"
2542
  msgstr "Fiók összekapcsolása a <b>GitHub</b>-bal"
2543
 
 
2544
  msgid "Unlink account from <b>GitHub</b>"
2545
  msgstr "Szétkapcsolás <b>GitHub</b>-tól"
2546
 
 
2547
  #, fuzzy, php-format
2548
  #| msgid "Navigate to %s"
2549
  msgid "Navigate to your %s"
2550
  msgstr "Látogasd meg ezt az oldalt: %s"
2551
 
 
2552
  #, php-format
2553
  msgid "Select your %s App and click on the LINE Login section."
2554
  msgstr ""
2555
 
 
2556
  #, fuzzy
2557
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2558
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2559
  msgstr "Tedd a következő linket az \"Callback URL\" mezőbe: <b>%s</b>"
2560
 
 
2561
  #, php-format
2562
  msgid ""
2563
  "Editing Live Apps are only possible with a %s. So please make sure you own "
2564
  "one!"
2565
  msgstr ""
2566
 
 
2567
  #, fuzzy
2568
  #| msgid "Click the \"Create\" button!"
2569
  msgid "Click the \"<b>Create a new provider</b>\" button."
2570
  msgstr "Kattints a \"Create\" gombra"
2571
 
 
2572
  #, fuzzy
2573
  #| msgid "Read the Developer Terms and click the Create button again!"
2574
  msgid ""
2576
  "button."
2577
  msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
2578
 
 
2579
  msgid ""
2580
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
2581
  "channel</b>\" option."
2582
  msgstr ""
2583
 
 
2584
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
2585
  msgstr ""
2586
 
 
2587
  msgid ""
2588
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
2589
  "created."
2590
  msgstr ""
2591
 
 
2592
  #, fuzzy
2593
  #| msgid "Click on \"Save\""
2594
  msgid "Select your \"<b>Region</b>\"."
2595
  msgstr "Kattints a \"Save\" gombra"
2596
 
 
2597
  msgid ""
2598
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
2599
  "description</b>\". These will appear on your Consent Screen!"
2600
  msgstr ""
2601
 
 
2602
  #, fuzzy
2603
  #| msgid "At the \"Type\" make sure \"Web\" is selected!"
2604
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
2605
  msgstr "Győződjön meg hogy a \"Típusnál\" a \"Web\" van kiválasztva!"
2606
 
 
2607
  #, fuzzy
2608
  #| msgid "Read the Developer Terms and click the Create button again!"
2609
  msgid ""
2611
  "\"<b>Create</b>\" button."
2612
  msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
2613
 
 
2614
  msgid ""
2615
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
2616
  "near the \"<b>Email address permission</b>\" label."
2617
  msgstr ""
2618
 
 
2619
  #, fuzzy
2620
  #| msgid ""
2621
  #| "Complete the Human test and click the \"Register my application\" button."
2624
  "Végezze el az Ember tesztet és kattintson a \"Register my application\" "
2625
  "gombra."
2626
 
 
2627
  msgid ""
2628
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
2629
  "section."
2630
  msgstr ""
2631
 
 
2632
  msgid ""
2633
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
2634
  "Channel!"
2635
  msgstr ""
2636
 
 
2637
  #, fuzzy
2638
  #| msgid ""
2639
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2646
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
2647
  "szükséged a plugin beállításainál."
2648
 
 
2649
  msgid "Channel ID"
2650
  msgstr ""
2651
 
 
2652
  #, fuzzy
2653
  #| msgid "Consumer Secret"
2654
  msgid "Channel Secret"
2655
  msgstr "Consumer Secret"
2656
 
 
2657
  #, fuzzy
2658
  #| msgid "Continue with <b>LinkedIn</b>"
2659
  msgid "Continue with <b>Line</b>"
2660
  msgstr "Folytatás a <b>LinkedIn</b>-nel"
2661
 
 
2662
  #, fuzzy
2663
  #| msgid "Sign up with <b>LinkedIn</b>"
2664
  msgid "Sign up with <b>Line</b>"
2665
  msgstr "Folytatás a <b>LinkedIn</b>-nel"
2666
 
 
2667
  #, fuzzy
2668
  #| msgid "Link account with <b>LinkedIn</b>"
2669
  msgid "Link account with <b>Line</b>"
2670
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
2671
 
 
2672
  #, fuzzy
2673
  #| msgid "Unlink account from <b>LinkedIn</b>"
2674
  msgid "Unlink account from <b>Line</b>"
2675
  msgstr "Szétkapcsolás <b>LinkedIn</b>-től"
2676
 
 
2677
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2678
  msgstr ""
2679
 
 
 
 
2680
  #, fuzzy
2681
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2682
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2683
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2684
 
 
 
 
 
 
2685
  #, fuzzy
2686
  #| msgid "Hit update to save the changes"
2687
  msgid "Click on \"<b>Update</b>\" to save the changes"
2688
  msgstr "Kattints az \"update\" gombra és mentsd el a beállításaidat."
2689
 
 
2690
  #, fuzzy
2691
  #| msgid "Locate the blue \"Create application\" button and click on it."
2692
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
2693
  msgstr "Keresd meg a kék \"Create application\" gombot és kattints rá."
2694
 
 
2695
  msgid "Enter the name of your App to the \"App name\" field."
2696
  msgstr ""
2697
 
 
2698
  #, php-format
2699
  msgid ""
2700
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
2701
  "one yet, create new one at: %s"
2702
  msgstr ""
2703
 
 
2704
  msgid ""
2705
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
2706
  msgstr ""
2707
 
 
2708
  #, fuzzy
2709
  #| msgid "Read the Developer Terms and click the Create button again!"
2710
  msgid ""
2712
  "App</b>\" button!"
2713
  msgstr "Olvasd el a Fejlesztői feltételeket és kattints a Create gombra újra."
2714
 
 
2715
  msgid ""
2716
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
2717
  "tab."
2718
  msgstr ""
2719
 
 
2720
  #, php-format
2721
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
2722
  msgstr ""
2723
 
 
2724
  msgid ""
2725
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
2726
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
2727
  "button."
2728
  msgstr ""
2729
 
 
2730
  #, fuzzy
2731
  #| msgid "Click on the Create button"
2732
  msgid "Click on the \"<b>Auth</b>\" tab."
2733
  msgstr "Kattints a \"Create\" gombra"
2734
 
 
2735
  #, fuzzy
2736
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2737
  msgid ""
2739
  "\"<b>Redirect URLs</b>\" field:"
2740
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2741
 
 
2742
  #, fuzzy
2743
  #| msgid ""
2744
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2750
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
2751
  "Web Settings tab alatt."
2752
 
 
2753
  msgid "Continue with <b>LinkedIn</b>"
2754
  msgstr "Folytatás a <b>LinkedIn</b>-nel"
2755
 
 
2756
  msgid "Sign up with <b>LinkedIn</b>"
2757
  msgstr "Folytatás a <b>LinkedIn</b>-nel"
2758
 
 
2759
  msgid "Link account with <b>LinkedIn</b>"
2760
  msgstr "Fiók összekapcsolása a <b>LinkedIn</b>-nel"
2761
 
 
2762
  msgid "Unlink account from <b>LinkedIn</b>"
2763
  msgstr "Szétkapcsolás <b>LinkedIn</b>-től"
2764
 
 
2765
  #, fuzzy, php-format
2766
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2767
  msgid "Log in with your %s credentials if you are not logged in yet."
2768
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2769
 
 
 
2770
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
2771
  msgstr ""
2772
 
 
2773
  #, php-format
2774
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
2775
  msgstr ""
2776
 
 
2777
  #, fuzzy
2778
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2779
  msgid "Click on the link next to the Redirect URIs label."
2780
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2781
 
 
2782
  #, fuzzy
2783
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2784
  msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2785
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2786
 
 
2787
  #, fuzzy, php-format
2788
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2789
  msgid ""
2791
  "account."
2792
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2793
 
 
2794
  #, fuzzy
2795
  #| msgid "Click on \"Save\""
2796
  msgid "Click on \"<b>New registration</b>\"."
2797
  msgstr "Kattints a \"Save\" gombra"
2798
 
 
2799
  #, fuzzy
2800
  #| msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2801
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2803
  "Írd be a weboldalad főoldalának címét a \"Domains\" mezőbe. Valószínűleg ez "
2804
  "lesz az: <b>%s</b>"
2805
 
 
2806
  msgid ""
2807
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2808
  "account types."
2809
  msgstr ""
2810
 
 
2811
  #, fuzzy
2812
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2813
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2814
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2815
 
 
2816
  #, fuzzy
2817
  #| msgid "Click on the \"Create New Application\" button."
2818
  msgid "Create your App with the \"<b>Register</b>\" button."
2819
  msgstr "Kattints a \"Create New Application\" gombra."
2820
 
 
2821
  #, fuzzy
2822
  #| msgid "Click on the Create button"
2823
  msgid "You land on the \"<b>Overview</b>\" page."
2824
  msgstr "Kattints a \"Create\" gombra"
2825
 
 
2826
  msgid ""
2827
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
2828
  "(client) ID</b> in the plugin settings."
2829
  msgstr ""
2830
 
 
2831
  msgid ""
2832
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
2833
  "Client credentials label."
2834
  msgstr ""
2835
 
 
2836
  #, fuzzy
2837
  #| msgid "Click on \"Save\""
2838
  msgid "Click on \"<b>New client secret</b>\"."
2839
  msgstr "Kattints a \"Save\" gombra"
2840
 
 
2841
  msgid "Fill the \"<b>Description</b>\" field."
2842
  msgstr ""
2843
 
 
2844
  #, fuzzy
2845
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2846
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
2847
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
2848
 
 
2849
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
2850
  msgstr ""
2851
 
 
2852
  #, fuzzy
2853
  #| msgid ""
2854
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2860
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
2861
  "szükséged a plugin beállításainál."
2862
 
 
2863
  msgid "Application (client) ID"
2864
  msgstr ""
2865
 
 
2866
  #, fuzzy
2867
  #| msgid "Client Secret"
2868
  msgid "Client secret"
2869
  msgstr "Client Secret"
2870
 
 
2871
  #, fuzzy
2872
  #| msgid "Continue with <b>Yahoo</b>"
2873
  msgid "Continue with <b>Microsoft</b>"
2874
  msgstr "Folytatás a <b>Yahoo</b>-val"
2875
 
 
2876
  #, fuzzy
2877
  #| msgid "Sign up with <b>Yahoo</b>"
2878
  msgid "Sign up with <b>Microsoft</b>"
2879
  msgstr "Regisztrálás a <b>Yahool</b>-val"
2880
 
 
2881
  #, fuzzy
2882
  #| msgid "Link account with <b>Yahoo</b>"
2883
  msgid "Link account with <b>Microsoft</b>"
2884
  msgstr "Fiók összekapcsolása a <b>Yahoo</b>-val"
2885
 
 
2886
  #, fuzzy
2887
  #| msgid "Unlink account from <b>Yahoo</b>"
2888
  msgid "Unlink account from <b>Microsoft</b>"
2889
  msgstr "Szétkapcsolás <b>Yahoo</b>-tól"
2890
 
 
 
2891
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
2892
  msgstr ""
2893
 
 
2894
  #, fuzzy, php-format
2895
  #| msgid "Click on the name of your %s App."
2896
  msgid "Click on the name of your %s App, under the REST API apps section."
2897
  msgstr "Kattints az %s Appod nevére."
2898
 
 
2899
  msgid ""
2900
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
2901
  "b>\" heading and click \"<b>Show</b>\"."
2902
  msgstr ""
2903
 
 
 
2904
  #, fuzzy
2905
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2906
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
2907
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
2908
 
 
2909
  msgid "Click on \"Save\""
2910
  msgstr "Kattints a \"Save\" gombra"
2911
 
 
2912
  #, php-format
2913
  msgid ""
2914
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
2915
  "step, if not click on the link!"
2916
  msgstr ""
2917
 
 
2918
  msgid "Click on Registration and create a Business account."
2919
  msgstr ""
2920
 
 
2921
  msgid "If you are done, follow the guide from the 5. step."
2922
  msgstr ""
2923
 
 
2924
  #, fuzzy, php-format
2925
  #| msgid "Log in with your %s credentials if you are not logged in."
2926
  msgid "Log in with your %s credentials."
2927
  msgstr "Lépj be a %s fiókoddal ha még nem vagy belépve."
2928
 
 
2929
  #, fuzzy
2930
  #| msgid "Click the \"Create App\" button."
2931
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
2932
  msgstr "Kattints a \"Create App\" gombra"
2933
 
 
2934
  msgid ""
2935
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
2936
  msgstr ""
2937
 
 
2938
  msgid ""
2939
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
2940
  "b>\" heading then click \"<b>Show</b>\"."
2941
  msgstr ""
2942
 
 
2943
  msgid ""
2944
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
2945
  "with PayPal</b>\"."
2946
  msgstr ""
2947
 
 
2948
  msgid ""
2949
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
2950
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
2951
  msgstr ""
2952
 
 
2953
  msgid "Tick \"<b>Full name</b>\"."
2954
  msgstr ""
2955
 
 
2956
  msgid ""
2957
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
2958
  "email address as well, <b>please submit your App for a review</b> after your "
2961
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
2962
  msgstr ""
2963
 
 
2964
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
2965
  msgstr ""
2966
 
 
2967
  msgid ""
2968
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
2969
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
2970
  "\"<b>Live</b>\" mode and not \"Sandbox\". )"
2971
  msgstr ""
2972
 
 
2973
  msgid "Secret"
2974
  msgstr "Secret"
2975
 
 
2976
  msgid "Email scope"
2977
  msgstr "Email scope"
2978
 
 
2979
  msgid "Disable, when you have no rights for email address."
2980
  msgstr ""
2981
 
 
2982
  msgid "Continue with <b>PayPal</b>"
2983
  msgstr "Folytatás a <b>PayPal</b>-al"
2984
 
 
2985
  msgid "Sign up with <b>PayPal</b>"
2986
  msgstr "Regisztrálás a <b>PayPal</b>-al"
2987
 
 
2988
  msgid "Link account with <b>PayPal</b>"
2989
  msgstr "Fiók összekapcsolása a <b>PayPal</b>-al"
2990
 
 
2991
  msgid "Unlink account from <b>PayPal</b>"
2992
  msgstr "Szétkapcsolás <b>PayPal</b>-tól"
2993
 
 
2994
  #, fuzzy
2995
  #| msgid "Click on the Manage button at the App"
2996
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
2997
  msgstr "Kattints a \"Manage \" gombra az Appban."
2998
 
 
2999
  #, fuzzy
3000
  #| msgid "Go to the Settings menu"
3001
  msgid "Go to the \"<b>Settings</b>\" menu"
3002
  msgstr "Menj a \"Settings\" menübe."
3003
 
 
 
3004
  #, fuzzy
3005
  #| msgid ""
3006
  #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
3008
  msgstr ""
3009
  "Tedd a következő linket az \"Authorized redirect URI:\" mezőbe: <b>%s</b>"
3010
 
 
3011
  #, fuzzy
3012
  #| msgid "Locate the blue \"Create application\" button and click on it."
3013
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3014
  msgstr "Keresd meg a kék \"Create application\" gombot és kattints rá."
3015
 
 
3016
  msgid ""
3017
  "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
3018
  "platform."
3019
  msgstr ""
3020
 
 
3021
  #, fuzzy, php-format
3022
  #| msgid ""
3023
  #| "Fill \"Site address\" with the url of your homepage, probably: <b>%s</b>"
3028
  "Írd be a weboldalad főoldalának címét a \"Site address\" mezőbe. "
3029
  "Valószínűleg ez lesz az: <b>%s</b>"
3030
 
 
3031
  #, fuzzy, php-format
3032
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
3033
  msgid ""
3036
  "Írd be a weboldalad főoldalának címét a \"Base domain\" mezőbe. Valószínűleg "
3037
  "ez lesz az: <b>%s</b>"
3038
 
 
3039
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
3040
  msgstr ""
3041
 
 
3042
  msgid ""
3043
  "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
3044
  "click <b>Save</b>."
3045
  msgstr ""
3046
 
 
3047
  #, fuzzy
3048
  #| msgid "Pick Settings at the left-hand menu "
3049
  msgid "Pick <b>Settings</b> at the left-hand menu "
3050
  msgstr "Válaszd ki a \"Settings\"-t a bal oldali menüből."
3051
 
 
3052
  #, fuzzy
3053
  #| msgid "Save your app"
3054
  msgid "<b>Save</b> your app"
3055
  msgstr "Ments el az appot."
3056
 
 
3057
  #, fuzzy
3058
  #| msgid ""
3059
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
3065
  "Itt találod a \"Client ID\"-t és a \"Client Secret\"-et az oldal közepén, a "
3066
  "Web Settings tab alatt."
3067
 
 
3068
  msgid "Secure key"
3069
  msgstr ""
3070
 
 
3071
  msgid "Continue with <b>VK</b>"
3072
  msgstr "Folytatás a <b>VK</b>-val"
3073
 
 
3074
  msgid "Sign up with <b>VK</b>"
3075
  msgstr "Regisztrálás a <b>VK</b>-val"
3076
 
 
3077
  msgid "Link account with <b>VK</b>"
3078
  msgstr "Fiók összekapcsolása a <b>VK</b>-val"
3079
 
 
3080
  msgid "Unlink account from <b>VK</b>"
3081
  msgstr "Szétkapcsolás <b>VK</b>-tól"
3082
 
 
3083
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
3084
  msgstr ""
3085
 
 
3086
  #, fuzzy
3087
  #| msgid "Click on the \"Create New Application\" button."
3088
  msgid "Click on the \"<b>Create New Application</b>\" button."
3089
  msgstr "Kattints a \"Create New Application\" gombra."
3090
 
 
3091
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
3092
  msgstr ""
3093
 
 
3094
  #, fuzzy, php-format
3095
  #| msgid ""
3096
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
3101
  "Írd be a weboldalad főoldalának címét a \"Website URL\" mezőbe. "
3102
  "Valószínűleg ez lesz az: <b>%s</b>"
3103
 
 
3104
  msgid "You can leave the \"Javascript Origins\" field blank!"
3105
  msgstr ""
3106
 
 
3107
  msgid "Complete the human verification test."
3108
  msgstr ""
3109
 
 
3110
  #, fuzzy
3111
  #| msgid "At the \"Type\" make sure \"Web\" is selected!"
3112
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
3113
  msgstr "Győződjön meg hogy a \"Típusnál\" a \"Web\" van kiválasztva!"
3114
 
 
3115
  #, fuzzy
3116
  #| msgid "Click the \"Create\" button!"
3117
  msgid "Click the \"<b>Create</b>\" button!"
3118
  msgstr "Kattints a \"Create\" gombra"
3119
 
 
3120
  msgid ""
3121
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
3122
  "next to Editing!"
3123
  msgstr ""
3124
 
 
3125
  #, fuzzy
3126
  #| msgid ""
3127
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
3133
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
3134
  "szükséged a plugin beállításainál."
3135
 
 
3136
  msgid "Continue with <b>WordPress.com</b>"
3137
  msgstr "Folytatás a <b>WordPress.com</b>-al"
3138
 
 
3139
  msgid "Sign up with <b>WordPress.com</b>"
3140
  msgstr "Regisztrálás a <b>WordPress.com</b>-al"
3141
 
 
3142
  msgid "Link account with <b>WordPress.com</b>"
3143
  msgstr "Fiók összekapcsolása a <b>WordPress.com</b>-al"
3144
 
 
3145
  msgid "Unlink account from <b>WordPress.com</b>"
3146
  msgstr "Szétkapcsolás <b>WordPress.com</b>-tól"
3147
 
 
3148
  msgid "Click on the App which has its credentials associated with the plugin."
3149
  msgstr ""
3150
 
 
 
3151
  #, fuzzy
3152
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3153
  msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3154
  msgstr "Tedd a következő linket az \"Redirect URLs:\" mezőbe: <b>%s</b>"
3155
 
 
3156
  #, fuzzy
3157
  #| msgid "Click the \"Create App\" button."
3158
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3159
  msgstr "Kattints a \"Create App\" gombra"
3160
 
 
3161
  msgid ""
3162
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
3163
  "at \"<b>Application Type</b>\"."
3164
  msgstr ""
3165
 
 
3166
  msgid "Enter a \"<b>Description</b>\" for your app!"
3167
  msgstr ""
3168
 
 
3169
  #, fuzzy, php-format
3170
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3171
  msgid ""
3172
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
3173
  msgstr "Tedd a következő linket az \"Live Return URL\" mezőbe: <b>%s</b>"
3174
 
 
3175
  msgid ""
3176
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3177
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3178
  msgstr ""
3179
 
 
3180
  #, fuzzy
3181
  #| msgid "Click the \"Create App\" button."
3182
  msgid "Click \"<b>Create App</b>\"."
3183
  msgstr "Kattints a \"Create App\" gombra"
3184
 
 
3185
  #, fuzzy
3186
  #| msgid ""
3187
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
3193
  "Itt találod az \"Client ID\"-t és az \"Client Secret\"-et. Ezekre lesz "
3194
  "szükséged a plugin beállításainál."
3195
 
 
3196
  msgid "Continue with <b>Yahoo</b>"
3197
  msgstr "Folytatás a <b>Yahoo</b>-val"
3198
 
 
3199
  msgid "Sign up with <b>Yahoo</b>"
3200
  msgstr "Regisztrálás a <b>Yahool</b>-val"
3201
 
 
3202
  msgid "Link account with <b>Yahoo</b>"
3203
  msgstr "Fiók összekapcsolása a <b>Yahoo</b>-val"
3204
 
 
3205
  msgid "Unlink account from <b>Yahoo</b>"
3206
  msgstr "Szétkapcsolás <b>Yahoo</b>-tól"
3207
 
 
3208
  #, fuzzy, php-format
3209
  #| msgid "Required API: %1$s"
3210
  msgid "Required permission: %1$s"
3211
  msgstr "Szükséges API: %1$s"
3212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3213
  msgid "OR"
3214
  msgstr "VAGY"
3215
 
 
 
 
 
3216
  msgid "Social accounts"
3217
  msgstr "Közösségi fiókok"
3218
 
languages/nextend-facebook-connect-it_IT.mo CHANGED
Binary file
languages/nextend-facebook-connect-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-09-08 13:29+0200\n"
5
- "PO-Revision-Date: 2021-09-08 13:29+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\n"
@@ -17,15 +17,13 @@ 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-Flags-xgettext: −−default-domain=nextend-facebook-connect\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
24
- #: nextend-facebook-connect/NSL/GDPR.php:34
25
  msgid "What personal data we collect and why we collect it"
26
  msgstr "Quali dati personali raccogliamo e perché li raccogliamo"
27
 
28
- #: nextend-facebook-connect/NSL/GDPR.php:35
29
  #, php-format
30
  msgid ""
31
  "%1$s collects data when a visitor register, login or link the account with "
@@ -40,11 +38,9 @@ msgstr ""
40
  "raccogliere immagini e altri campi mediante la funzionalità di "
41
  "sincronizzazione Pro Addon's."
42
 
43
- #: nextend-facebook-connect/NSL/GDPR.php:37
44
  msgid "Who we share your data with"
45
  msgstr "Con chi condividiamo i tuoi dati"
46
 
47
- #: nextend-facebook-connect/NSL/GDPR.php:38
48
  #, php-format
49
  msgid ""
50
  "%1$s stores the personal data on your site and does not share it with anyone "
@@ -55,11 +51,9 @@ msgstr ""
55
  "nessun altro ad eccezione del token d'accesso che è impiegato per "
56
  "autenticare le comunicazioni col social provider."
57
 
58
- #: nextend-facebook-connect/NSL/GDPR.php:40
59
  msgid "Does the plugin share personal data with third parties"
60
  msgstr "Il plugin condivide dati personali con terze parti"
61
 
62
- #: nextend-facebook-connect/NSL/GDPR.php:41
63
  #, php-format
64
  msgid ""
65
  "%1$s use the access token what the social provider gave to communicate with "
@@ -69,11 +63,9 @@ msgstr ""
69
  "col provider per verificare l'account e accedere in sicurezza ai dati "
70
  "personali."
71
 
72
- #: nextend-facebook-connect/NSL/GDPR.php:43
73
  msgid "How long we retain your data"
74
  msgstr "Per quanto tempo conserviamo i tuoi dati"
75
 
76
- #: nextend-facebook-connect/NSL/GDPR.php:44
77
  #, php-format
78
  msgid ""
79
  "%1$s removes the collected personal data when the user deleted from "
@@ -82,11 +74,9 @@ msgstr ""
82
  "%1$s rimuove i dati personali raccolti quando l'utente è cancellato da "
83
  "WordPress."
84
 
85
- #: nextend-facebook-connect/NSL/GDPR.php:46
86
  msgid "Does the plugin use personal data collected by others?"
87
  msgstr "Il plugin impiega dati personali raccolti da altri?"
88
 
89
- #: nextend-facebook-connect/NSL/GDPR.php:47
90
  #, php-format
91
  msgid ""
92
  "%1$s use the personal data collected by the social providers to create "
@@ -95,11 +85,9 @@ msgstr ""
95
  "Quando il visitatore lo autorizza, %1$s impiega i dati personali raccolti "
96
  "dai social provider per creare un account sul tuo sito."
97
 
98
- #: nextend-facebook-connect/NSL/GDPR.php:49
99
  msgid "Does the plugin store things in the browser?"
100
  msgstr "Il plugin memorizza \"cose\" sul browser?"
101
 
102
- #: nextend-facebook-connect/NSL/GDPR.php:50
103
  #, php-format
104
  msgid ""
105
  "Yes, %1$s must create a cookie for visitors who use the social login "
@@ -111,18 +99,14 @@ msgstr ""
111
  "sicura la comunicazione e per rimandare l'utente indietro all'ultima pagina "
112
  "del sito."
113
 
114
- #: nextend-facebook-connect/NSL/GDPR.php:52
115
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
116
  msgstr ""
117
  "Il plugin raccoglie informazioni sulla telemetria, direttamente o "
118
  "indirettamente?"
119
 
120
- #: nextend-facebook-connect/NSL/GDPR.php:53
121
- #: nextend-facebook-connect/NSL/GDPR.php:56
122
  msgid "No"
123
  msgstr "No"
124
 
125
- #: nextend-facebook-connect/NSL/GDPR.php:55
126
  msgid ""
127
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
128
  "third party?"
@@ -130,55 +114,33 @@ msgstr ""
130
  "Il plugin include JavaScript, pixel di tracciamento o iframes incorporati da "
131
  "terze parti?"
132
 
133
- #: nextend-facebook-connect/NSL/GDPR.php:99
134
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57
135
  msgid "User"
136
  msgstr "Utente"
137
 
138
- #: nextend-facebook-connect/admin/admin.php:206
139
  #, php-format
140
  msgid "%s needs json_decode function."
141
  msgstr "%s necessita della funzione json_decode."
142
 
143
- #: nextend-facebook-connect/admin/admin.php:206
144
  msgid "Please contact your server administrator and ask for solution!"
145
  msgstr ""
146
  "Per favore contatta l'amministratore del tuo server e chiedi una soluzione!"
147
 
148
- #: nextend-facebook-connect/admin/admin.php:250
149
- #: nextend-facebook-connect/admin/admin.php:280
150
  msgid "Settings saved."
151
  msgstr "Settaggio salvato."
152
 
153
- #: nextend-facebook-connect/admin/admin.php:259
154
  msgid "The activation was successful"
155
  msgstr "Attivazione completata"
156
 
157
- #: nextend-facebook-connect/admin/admin.php:270
158
  msgid "Deactivate completed."
159
  msgstr "Disattivazione completata."
160
 
161
- #: nextend-facebook-connect/admin/admin.php:449
162
- #: nextend-facebook-connect/admin/templates-provider/menu.php:15
163
- #: nextend-facebook-connect/admin/templates/providers.php:89
164
- #: nextend-facebook-connect/admin/templates/providers.php:101
165
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
166
  msgid "Settings"
167
  msgstr "Settaggi"
168
 
169
- #: nextend-facebook-connect/admin/admin.php:532
170
- #: nextend-facebook-connect/includes/oauth2.php:143
171
- #: nextend-facebook-connect/includes/oauth2.php:288
172
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
173
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
174
- #: nextend-social-login-pro/providers/apple/apple-client.php:87
175
- #: nextend-social-login-pro/providers/github/github-client.php:87
176
  #, php-format
177
  msgid "Unexpected response: %s"
178
  msgstr "Unexpected response: %s"
179
 
180
- #: nextend-facebook-connect/admin/admin.php:593
181
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
182
  #, php-format
183
  msgid ""
184
  "%s detected that your login url changed. You must update the Oauth redirect "
@@ -187,16 +149,12 @@ msgstr ""
187
  "%s ha rilevato che la tua url di login è cambiata. Devi aggiornare il "
188
  "redirect Oauth URIs nella relative applicazioni social."
189
 
190
- #: nextend-facebook-connect/admin/admin.php:594
191
- #: nextend-social-login-pro/providers/apple/apple.php:294
192
  msgid "Fix Error"
193
  msgstr "Ripara Errore"
194
 
195
- #: nextend-facebook-connect/admin/admin.php:594
196
  msgid "Oauth Redirect URI"
197
  msgstr "Oauth Redirect URI"
198
 
199
- #: nextend-facebook-connect/admin/admin.php:611
200
  #, php-format
201
  msgid ""
202
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -205,15 +163,12 @@ msgstr ""
205
  "%1$s ha rilevato che %2$s è installato sul tuo sito. Hai bisogno di Pro "
206
  "Addon per mostrare i bottoni Social Login nel form di login di %2$s!"
207
 
208
- #: nextend-facebook-connect/admin/admin.php:612
209
  msgid "Dismiss and check Pro Addon"
210
  msgstr ""
211
 
212
- #: nextend-facebook-connect/admin/admin.php:612
213
  msgid "Dismiss"
214
  msgstr ""
215
 
216
- #: nextend-facebook-connect/admin/admin.php:618
217
  #, php-format
218
  msgid ""
219
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -224,15 +179,12 @@ msgstr ""
224
  "\"<b>Pagina per il flusso di registrazione</b>\" e \"<b>OAuth redirect uri "
225
  "proxy page</b>\" in %1$s per funzionare correttamente."
226
 
227
- #: nextend-facebook-connect/admin/admin.php:619
228
  msgid "Fix now"
229
  msgstr "Ripara ora"
230
 
231
- #: nextend-facebook-connect/admin/admin.php:643
232
  msgid "Activate your Pro Addon"
233
  msgstr "Attiva il tuo Pro Addon"
234
 
235
- #: nextend-facebook-connect/admin/admin.php:644
236
  msgid ""
237
  "To be able to use the Pro features, you need to activate Nextend Social "
238
  "Login Pro Addon. You can do this by clicking on the Activate button below "
@@ -242,24 +194,18 @@ msgstr ""
242
  "Login Pro. Puoi farlo cliccando sul bottone Attiva in basso e selezionare il "
243
  "relativo acquisto."
244
 
245
- #: nextend-facebook-connect/admin/admin.php:649
246
- #: nextend-social-login-pro/nextend-social-login-pro.php:110
247
  msgid "Activate"
248
  msgstr "Attiva"
249
 
250
- #: nextend-facebook-connect/admin/admin.php:747
251
  msgid "License key"
252
  msgstr "Chiave di licenza"
253
 
254
- #: nextend-facebook-connect/admin/admin.php:770
255
  msgid "OAuth proxy page"
256
  msgstr "Pagina OAuth proxy"
257
 
258
- #: nextend-facebook-connect/admin/admin.php:773
259
  msgid "Register flow page"
260
  msgstr "Pagina del flusso di registrazione"
261
 
262
- #: nextend-facebook-connect/admin/admin.php:780
263
  #, php-format
264
  msgid ""
265
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
@@ -267,367 +213,209 @@ msgid ""
267
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
268
  msgstr ""
269
 
270
- #: nextend-facebook-connect/admin/interim.php:12
271
- #: nextend-facebook-connect/admin/interim.php:23
272
  msgid "You have logged in successfully."
273
  msgstr "Ti sei loggato."
274
 
275
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
276
  msgid "Login label"
277
  msgstr "Etichetta login"
278
 
279
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
280
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
281
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
282
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
283
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
284
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
285
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
286
  msgid "Reset to default"
287
  msgstr "Ripristina predefiniti"
288
 
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
290
  #, fuzzy
291
  #| msgid "Register layout"
292
  msgid "Register label"
293
  msgstr "Layout registrazione"
294
 
295
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
296
  msgid "Link label"
297
  msgstr "Collega etichetta"
298
 
299
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
300
  msgid "Unlink label"
301
  msgstr "Scollega etichetta"
302
 
303
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
304
  msgid "Default button"
305
  msgstr "Bottone standard"
306
 
307
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
308
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
309
  msgid "Use custom button"
310
  msgstr "Usa bottone personalizzato"
311
 
312
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
313
  #, php-format
314
  msgid "Use the %s in your custom button's code to make the label show up."
315
  msgstr ""
316
  "Utilizza %s nei codici dei tuoi bottoni personalizzati per rendere "
317
  "l'etichetta visibile."
318
 
319
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
320
  msgid "Icon button"
321
  msgstr "Bottone icona"
322
 
323
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
324
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
325
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
326
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:220
327
- #: nextend-facebook-connect/admin/templates/settings/comment.php:79
328
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8
329
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:127
330
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8
331
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:167
332
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:198
333
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
334
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:198
335
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:179
336
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:347
337
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
338
- #: nextend-facebook-connect/providers/google/admin/settings.php:62
339
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
340
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
341
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
342
- #: nextend-social-login-pro/providers/github/admin/settings.php:48
343
- #: nextend-social-login-pro/providers/line/admin/settings.php:47
344
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:57
345
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:48
346
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:60
347
- #: nextend-social-login-pro/providers/vk/admin/settings.php:48
348
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
349
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47
350
  msgid "Save Changes"
351
  msgstr "Salva Modifiche"
352
 
353
- #: nextend-facebook-connect/admin/templates-provider/menu.php:13
354
- #: nextend-facebook-connect/admin/templates/providers.php:69
355
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
356
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
357
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
358
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
359
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28
360
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
361
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:8
362
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:8
363
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
364
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:8
365
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
366
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
367
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
368
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8
369
  msgid "Getting Started"
370
  msgstr "Inizia"
371
 
372
- #: nextend-facebook-connect/admin/templates-provider/menu.php:17
373
  msgid "Buttons"
374
  msgstr "Bottoni"
375
 
376
- #: nextend-facebook-connect/admin/templates-provider/menu.php:21
377
  msgid "Sync data"
378
  msgstr "Sincronizza dati"
379
 
380
- #: nextend-facebook-connect/admin/templates-provider/menu.php:24
381
  msgid "Usage"
382
  msgstr "Utilizzo"
383
 
384
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11
385
  msgid "Other settings"
386
  msgstr "Altri settaggi"
387
 
388
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16
389
  msgid "Username prefix on register"
390
  msgstr "Prefisso allo username alla registrazione"
391
 
392
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
393
  msgid "Fallback username prefix on register"
394
  msgstr ""
395
 
396
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27
397
  msgid "Used when username is invalid or not stored"
398
  msgstr "Usato quando lo username non è valido o non è memorizzato"
399
 
400
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32
401
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
402
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
403
  msgid "Terms and conditions"
404
  msgstr "Termini e condizioni"
405
 
406
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
407
  #, php-format
408
  msgid "Override global \"%1$s\""
409
  msgstr "Sovrascrivi \"%1$s\" globali"
410
 
411
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
412
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12
413
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12
414
  msgid "PRO settings"
415
  msgstr "Settaggi PRO"
416
 
417
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28
418
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32
419
  msgid "Ask E-mail on registration"
420
  msgstr "Chiedi E-mail alla registrazione"
421
 
422
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35
423
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69
424
  msgid "Never"
425
  msgstr "Mai"
426
 
427
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38
428
  msgid "When email is not provided or empty"
429
  msgstr "Quando l'email non è fornita o è vuota"
430
 
431
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41
432
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
433
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72
434
  msgid "Always"
435
  msgstr "Sempre"
436
 
437
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46
438
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50
439
  msgid "Ask Username on registration"
440
  msgstr "Chiedi Username alla registrazione"
441
 
442
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53
443
  msgid "Never, generate automatically"
444
  msgstr "Mai, genera automaticamente"
445
 
446
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
447
  msgid "When username is empty or invalid"
448
  msgstr "Quando lo username è vuoto o non valido"
449
 
450
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
451
  msgid "Ask Password on registration"
452
  msgstr "Chiedi password alla registrazione"
453
 
454
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
455
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
456
  msgid "Automatically connect the existing account upon registration"
457
  msgstr "Alla registrazione connetti automaticamente l'account esistente"
458
 
459
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
460
- #: nextend-facebook-connect/admin/templates/providers.php:47
461
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:86
462
- #: nextend-facebook-connect/admin/templates/settings/general.php:48
463
- #: nextend-facebook-connect/admin/templates/settings/general.php:213
464
- #: nextend-facebook-connect/admin/templates/settings/general.php:228
465
- #: nextend-facebook-connect/admin/templates/settings/general.php:246
466
- #: nextend-facebook-connect/admin/templates/settings/general.php:261
467
- #: nextend-facebook-connect/includes/provider-admin.php:218
468
  msgid "Disabled"
469
  msgstr "Disabilitato"
470
 
471
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88
472
  msgid "Automatic, based on email address"
473
  msgstr "Automatico, basato sull'indirizzo email"
474
 
475
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93
476
  msgid "Disable login for the selected roles"
477
  msgstr "Disabilita login per i seguenti ruoli"
478
 
479
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113
480
  msgid "Default roles for user who registered with this provider"
481
  msgstr "Ruolo default per chi si registra con questi provider"
482
 
483
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
484
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50
485
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:76
486
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:143
487
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:168
488
- #: nextend-facebook-connect/admin/templates/settings/comment.php:39
489
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35
490
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97
491
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:39
492
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:111
493
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
494
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
495
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
496
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
497
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
498
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
499
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
500
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:199
501
- #: nextend-facebook-connect/widget.php:42
502
  msgid "Default"
503
  msgstr "Default"
504
 
505
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
506
  msgid "Register"
507
  msgstr "Registra"
508
 
509
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58
510
  msgid "Login"
511
  msgstr "Login"
512
 
513
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66
514
  msgid "Link"
515
  msgstr "Collega"
516
 
517
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84
518
  msgid "Store in meta key"
519
  msgstr "Memorizza nella meta key"
520
 
521
- #: nextend-facebook-connect/admin/templates-provider/usage.php:9
522
  msgid "Shortcode"
523
  msgstr "Shortcode"
524
 
525
- #: nextend-facebook-connect/admin/templates-provider/usage.php:12
526
  msgid "Important!"
527
  msgstr "Importante!"
528
 
529
- #: nextend-facebook-connect/admin/templates-provider/usage.php:13
530
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
531
  msgstr ""
532
  "Lo shortcode è renderizzato per gli utenti che non si sono ancora loggati!"
533
 
534
- #: nextend-facebook-connect/admin/templates-provider/usage.php:14
535
  msgid "See the full list of shortcode parameters."
536
  msgstr "Guarda la lista completa dei parametri dello shortcode."
537
 
538
- #: nextend-facebook-connect/admin/templates-provider/usage.php:31
539
  msgid "Simple link"
540
  msgstr "Collegamento semplice"
541
 
542
- #: nextend-facebook-connect/admin/templates-provider/usage.php:34
543
  msgid "Click here to login or register"
544
  msgstr "Clicca qui per accedere o registrarti"
545
 
546
- #: nextend-facebook-connect/admin/templates-provider/usage.php:39
547
  msgid "Image button"
548
  msgstr "Bottone immagine"
549
 
550
- #: nextend-facebook-connect/admin/templates-provider/usage.php:42
551
  msgid "Image url"
552
  msgstr "Url immagine"
553
 
554
- #: nextend-facebook-connect/admin/templates/debug.php:7
555
- #: nextend-facebook-connect/admin/templates/header.php:20
556
  msgid "Debug"
557
  msgstr "Debug"
558
 
559
- #: nextend-facebook-connect/admin/templates/debug.php:41
560
  msgid "Test network connection with providers"
561
  msgstr "Testa la connessione con i providers"
562
 
563
- #: nextend-facebook-connect/admin/templates/debug.php:48
564
  msgid "You don't have cURL support, please enable it in php.ini!"
565
  msgstr "Non hai il supporto al cURL, per favore abilitalo nel php.ini!"
566
 
567
- #: nextend-facebook-connect/admin/templates/debug.php:58
568
  #, php-format
569
  msgid "Test %1$s connection"
570
  msgstr "Testa la connessione %1$s"
571
 
572
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
573
  msgid "Fix Oauth Redirect URIs"
574
  msgstr "Correggi Oauth Redirect URIs"
575
 
576
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13
577
  msgid "Every Oauth Redirect URI seems fine"
578
  msgstr "Ogni Oauth Redirect URI sembra corretta"
579
 
580
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32
581
  msgid "Got it"
582
  msgstr "Capito"
583
 
584
- #: nextend-facebook-connect/admin/templates/global-settings.php:28
585
- #: nextend-facebook-connect/admin/templates/menu.php:8
586
  msgid "Global Settings"
587
  msgstr "Settaggi Globali"
588
 
589
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
590
  msgid "General"
591
  msgstr "Generale"
592
 
593
- #: nextend-facebook-connect/admin/templates/global-settings.php:33
594
  msgid "Privacy"
595
  msgstr "Privacy"
596
 
597
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
598
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
599
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
600
  msgid "Login Form"
601
  msgstr "Form di login"
602
 
603
- #: nextend-facebook-connect/admin/templates/global-settings.php:39
604
  msgid "Comment"
605
  msgstr "Commento"
606
 
607
- #: nextend-facebook-connect/admin/templates/header.php:14
608
  msgid "Docs"
609
  msgstr "Docs"
610
 
611
- #: nextend-facebook-connect/admin/templates/header.php:17
612
  msgid "Support"
613
  msgstr "Supporto"
614
 
615
- #: nextend-facebook-connect/admin/templates/header.php:23
616
- #: nextend-facebook-connect/admin/templates/menu.php:12
617
  msgid "Pro Addon"
618
  msgstr "Pro Addon"
619
 
620
- #: nextend-facebook-connect/admin/templates/menu.php:6
621
  msgid "Providers"
622
  msgstr "Provider"
623
 
624
- #: nextend-facebook-connect/admin/templates/pro-addon.php:13
625
- #: nextend-social-login-pro/class-provider-extension.php:213
626
- #: nextend-social-login-pro/class-provider-extension.php:216
627
  msgid "Error"
628
  msgstr "Errore"
629
 
630
- #: nextend-facebook-connect/admin/templates/pro-addon.php:14
631
  msgid ""
632
  "You don’t have sufficient permissions to install and activate plugins. "
633
  "Please contact your site’s administrator!"
@@ -635,13 +423,9 @@ msgstr ""
635
  "Non hai permessi sufficienti per installare ed attivare il plugin. Per "
636
  "favore contatta l'amministratore del tuo sito!"
637
 
638
- #: nextend-facebook-connect/admin/templates/pro-addon.php:22
639
- #: nextend-facebook-connect/admin/templates/pro-addon.php:32
640
- #: nextend-facebook-connect/admin/templates/pro.php:34
641
  msgid "Activate Pro Addon"
642
  msgstr "Attiva Pro Addon"
643
 
644
- #: nextend-facebook-connect/admin/templates/pro-addon.php:23
645
  msgid ""
646
  "Pro Addon is installed but not activated. To be able to use the Pro "
647
  "features, you need to activate it."
@@ -649,42 +433,31 @@ msgstr ""
649
  "Pro Addon è installato ma non attivto. Per potere usare le funzionalità Pro "
650
  "devi attivarlo."
651
 
652
- #: nextend-facebook-connect/admin/templates/pro-addon.php:37
653
- #: nextend-facebook-connect/admin/templates/pro-addon.php:142
654
  msgid "Deactivate Pro Addon"
655
  msgstr "Disattiva Pro Addon"
656
 
657
- #: nextend-facebook-connect/admin/templates/pro-addon.php:48
658
- #: nextend-facebook-connect/admin/templates/pro.php:43
659
  msgid "Pro Addon is not installed"
660
  msgstr "Pro Addon non è installato"
661
 
662
- #: nextend-facebook-connect/admin/templates/pro-addon.php:50
663
  msgid ""
664
  "To access the Pro features, you need to install and activate the Pro Addon."
665
  msgstr ""
666
  "Per accedere alle funzionalità Pro hai bisogno di installare e attivare Pro "
667
  "Addon."
668
 
669
- #: nextend-facebook-connect/admin/templates/pro-addon.php:59
670
  #, php-format
671
  msgid "Install %s now"
672
  msgstr "Installa %s adesso"
673
 
674
- #: nextend-facebook-connect/admin/templates/pro-addon.php:60
675
- #: nextend-facebook-connect/admin/templates/pro.php:47
676
  msgid "Install Pro Addon"
677
  msgstr "Installa Pro Addon"
678
 
679
- #: nextend-facebook-connect/admin/templates/pro-addon.php:94
680
  msgid "Activating..."
681
  msgstr "Attivazione..."
682
 
683
- #: nextend-facebook-connect/admin/templates/pro-addon.php:118
684
  msgid "Not compatible!"
685
  msgstr "Non compatibile!"
686
 
687
- #: nextend-facebook-connect/admin/templates/pro-addon.php:119
688
  #, php-format
689
  msgid ""
690
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
@@ -693,15 +466,12 @@ msgstr ""
693
  "%1$s e %2$s non sono compatibili. Per favore aggiorna %2$s alla versione "
694
  "%3$s o più recente."
695
 
696
- #: nextend-facebook-connect/admin/templates/pro-addon.php:123
697
  msgid "Update Pro Addon"
698
  msgstr "Aggiorna Pro Addon"
699
 
700
- #: nextend-facebook-connect/admin/templates/pro-addon.php:133
701
  msgid "Pro Addon is installed and activated"
702
  msgstr "Pro Addon è installato e attivo"
703
 
704
- #: nextend-facebook-connect/admin/templates/pro-addon.php:135
705
  msgid ""
706
  "You installed and activated the Pro Addon. If you don’t want to use it "
707
  "anymore, you can deactivate using the button below."
@@ -709,11 +479,9 @@ msgstr ""
709
  "Hai installato ed attivato il Pro Addon. Se non volessi più usarlo, puoi "
710
  "disattivarlo usando il bottone in basso."
711
 
712
- #: nextend-facebook-connect/admin/templates/pro.php:8
713
  msgid "Get Pro Addon to unlock more features"
714
  msgstr "Passa a Pro Addon per sbloccare più funzionalità"
715
 
716
- #: nextend-facebook-connect/admin/templates/pro.php:9
717
  #, php-format
718
  msgid ""
719
  "The features below are available in %s Pro Addon. Get it today and tweak the "
@@ -722,7 +490,6 @@ msgstr ""
722
  "Le funzionalità qui sotto sono disponibili in %s Pro Addon. Acquistalo oggi "
723
  "e accedi ai settaggi più avanzati."
724
 
725
- #: nextend-facebook-connect/admin/templates/pro.php:10
726
  msgid ""
727
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
728
  "you can purchase it using the button below."
@@ -730,20 +497,15 @@ msgstr ""
730
  "Se hai già una licenza, puoi autorizzare il tuo Pro Addon. Altrimenti potrai "
731
  "comprarla dal bottone in basso."
732
 
733
- #: nextend-facebook-connect/admin/templates/pro.php:14
734
  msgid "Buy Pro Addon"
735
  msgstr "Compra Pro Addon"
736
 
737
- #: nextend-facebook-connect/admin/templates/pro.php:16
738
  msgid "Authorize Pro Addon"
739
  msgstr "Autorizza Pro Addon"
740
 
741
- #: nextend-facebook-connect/admin/templates/pro.php:25
742
  msgid "Pro Addon is not activated"
743
  msgstr "Pro Addon non è attivato"
744
 
745
- #: nextend-facebook-connect/admin/templates/pro.php:26
746
- #: nextend-facebook-connect/admin/templates/pro.php:44
747
  msgid ""
748
  "To be able to use the Pro features, you need to install and activate the "
749
  "Nextend Social Login Pro Addon."
@@ -751,7 +513,6 @@ msgstr ""
751
  "Per potere usare le funzionalità Pro, devi installare e attivare il Nextend "
752
  "Social Login Pro Addon."
753
 
754
- #: nextend-facebook-connect/admin/templates/providers.php:8
755
  #, php-format
756
  msgid ""
757
  "%1$s detected that you have providers configured but none of them are "
@@ -762,86 +523,57 @@ msgstr ""
762
  "visualizzare i bottoni social accertati di avere almeno un provider "
763
  "abilitato!"
764
 
765
- #: nextend-facebook-connect/admin/templates/providers.php:38
766
  msgid "Not Available"
767
  msgstr "Non disponibile"
768
 
769
- #: nextend-facebook-connect/admin/templates/providers.php:41
770
  msgid "Not Configured"
771
  msgstr "Non Configurato"
772
 
773
- #: nextend-facebook-connect/admin/templates/providers.php:44
774
  msgid "Not Verified"
775
  msgstr "Non Verificato"
776
 
777
- #: nextend-facebook-connect/admin/templates/providers.php:50
778
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:89
779
- #: nextend-facebook-connect/admin/templates/settings/general.php:51
780
- #: nextend-facebook-connect/admin/templates/settings/general.php:216
781
- #: nextend-facebook-connect/admin/templates/settings/general.php:231
782
- #: nextend-facebook-connect/admin/templates/settings/general.php:249
783
- #: nextend-facebook-connect/admin/templates/settings/general.php:264
784
- #: nextend-facebook-connect/includes/provider-admin.php:221
785
- #: nextend-facebook-connect/providers/google/admin/settings.php:53
786
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
787
  msgid "Enabled"
788
  msgstr "Abilitato"
789
 
790
- #: nextend-facebook-connect/admin/templates/providers.php:62
791
  msgid "Upgrade Now"
792
  msgstr "Aggiorna adesso"
793
 
794
- #: nextend-facebook-connect/admin/templates/providers.php:77
795
- #: nextend-facebook-connect/includes/provider-admin.php:205
796
  msgid "Verify Settings"
797
  msgstr "Verifica Settaggi"
798
 
799
- #: nextend-facebook-connect/admin/templates/providers.php:85
800
- #: nextend-facebook-connect/includes/provider-admin.php:250
801
  msgid "Enable"
802
  msgstr "Abilita"
803
 
804
- #: nextend-facebook-connect/admin/templates/providers.php:97
805
- #: nextend-facebook-connect/includes/provider-admin.php:258
806
  msgid "Disable"
807
  msgstr "Disabilita"
808
 
809
- #: nextend-facebook-connect/admin/templates/providers.php:122
810
  msgid "Stay Updated"
811
  msgstr "Tieniti aggiornato"
812
 
813
- #: nextend-facebook-connect/admin/templates/providers.php:123
814
  msgid ""
815
  "Receive info on the latest plugin updates and social provider related "
816
  "changes."
817
  msgstr ""
818
  "Ricevi informazioni sugli aggiornamenti del plugin e quelli dei providers."
819
 
820
- #: nextend-facebook-connect/admin/templates/providers.php:124
821
  msgid "Enter your email address"
822
  msgstr "Inserisci il tuo indirizzo Email"
823
 
824
- #: nextend-facebook-connect/admin/templates/providers.php:128
825
  msgid "Subscribe"
826
  msgstr "Sottoscrivi"
827
 
828
- #: nextend-facebook-connect/admin/templates/providers.php:144
829
  msgid "Saving..."
830
  msgstr "Salvando..."
831
 
832
- #: nextend-facebook-connect/admin/templates/providers.php:145
833
  msgid "Saving failed"
834
  msgstr "Salvataggio fallito"
835
 
836
- #: nextend-facebook-connect/admin/templates/providers.php:146
837
  msgid "Order Saved"
838
  msgstr "Ordine Salvato"
839
 
840
- #: nextend-facebook-connect/admin/templates/providers.php:215
841
  msgid "Successfully subscribed!"
842
  msgstr "Abbonato correttamente!"
843
 
844
- #: nextend-facebook-connect/admin/templates/providers.php:215
845
  msgid ""
846
  "We'll be bringing you all the latest news and updates about Social Login - "
847
  "right to your inbox."
@@ -849,39 +581,30 @@ msgstr ""
849
  "Ti forniremo tutte le ultime novità e gli aggiornamenti su Social Login - "
850
  "proprio nella tua posta in arrivo."
851
 
852
- #: nextend-facebook-connect/admin/templates/providers.php:222
853
  msgid "The entered email address is invalid!"
854
  msgstr "L'email inserita non è valida!"
855
 
856
- #: nextend-facebook-connect/admin/templates/review.php:14
857
  msgid "Rate your experience!"
858
  msgstr "Vota la tua esperienza!"
859
 
860
- #: nextend-facebook-connect/admin/templates/review.php:15
861
  msgid "Hated it"
862
  msgstr "Odiato"
863
 
864
- #: nextend-facebook-connect/admin/templates/review.php:16
865
  msgid "Disliked it"
866
  msgstr "Non piaciuto"
867
 
868
- #: nextend-facebook-connect/admin/templates/review.php:17
869
  msgid "It was ok"
870
  msgstr "Ok"
871
 
872
- #: nextend-facebook-connect/admin/templates/review.php:18
873
  msgid "Liked it"
874
  msgstr "Mi è piaciuto"
875
 
876
- #: nextend-facebook-connect/admin/templates/review.php:19
877
  msgid "Loved it"
878
  msgstr "Adorabile"
879
 
880
- #: nextend-facebook-connect/admin/templates/review.php:31
881
  msgid "Please Leave a Review"
882
  msgstr "Per Favore Lascia una Recensione"
883
 
884
- #: nextend-facebook-connect/admin/templates/review.php:32
885
  msgid ""
886
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
887
  "please leave us a review. It will be a tremendous help for us!"
@@ -889,191 +612,60 @@ msgstr ""
889
  "Se sei soddisfatto con <b>Nextend Social Login</b> e puoi prenderti un "
890
  "minuto per favore lascia una recensione. Sarà un aiuto enorme per noi!"
891
 
892
- #: nextend-facebook-connect/admin/templates/review.php:34
893
  msgid "Ok, you deserve it"
894
  msgstr "Ok, me lo merito"
895
 
896
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
897
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:90
898
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:102
899
  msgid "Register form"
900
  msgstr "Form di registrazione"
901
 
902
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
903
  msgid "No Connect button"
904
  msgstr ""
905
 
906
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
907
  msgid "Connect button before register"
908
  msgstr ""
909
 
910
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
911
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
912
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
913
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:27
914
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:99
915
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171
916
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
917
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
918
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171
919
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
920
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
921
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:111
922
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
923
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:169
924
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
925
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
926
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
927
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:248
928
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:299
929
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:304
930
  msgid "Action:"
931
  msgstr "Azione:"
932
 
933
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
934
  msgid "Connect button before account details"
935
  msgstr ""
936
 
937
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
938
  msgid "Connect button after register"
939
  msgstr "Bottone connetti dopo la registrazione"
940
 
941
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44
942
  msgid "Register button style"
943
  msgstr "Stile del bottone di registrazione"
944
 
945
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56
946
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:149
947
- #: nextend-facebook-connect/admin/templates/settings/comment.php:45
948
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41
949
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:103
950
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:45
951
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:117
952
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
953
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:117
954
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
955
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:114
956
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
957
  msgid "Fullwidth"
958
  msgstr ""
959
 
960
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:62
961
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155
962
- #: nextend-facebook-connect/admin/templates/settings/comment.php:51
963
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:47
964
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:109
965
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:51
966
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:123
967
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:51
968
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:123
969
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:63
970
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:120
971
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:36
972
- #: nextend-facebook-connect/widget.php:47
973
  msgid "Icon"
974
  msgstr "Icona"
975
 
976
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:70
977
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
978
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
979
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
980
  msgid "Register layout"
981
  msgstr "Layout registrazione"
982
 
983
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:82
984
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:174
985
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60
986
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122
987
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:64
988
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:136
989
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
990
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
991
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
992
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
993
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
994
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
995
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:211
996
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:261
997
  msgid "Below"
998
  msgstr "Sotto"
999
 
1000
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88
1001
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:180
1002
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66
1003
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128
1004
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:70
1005
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:142
1006
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1007
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1008
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1009
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1010
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1011
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1012
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1013
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:267
1014
  msgid "Below with separator"
1015
  msgstr "Sotto con separatore"
1016
 
1017
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:94
1018
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:186
1019
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78
1020
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:134
1021
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
1022
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:148
1023
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1024
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:148
1025
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1026
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:145
1027
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1028
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1029
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
1030
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:273
1031
  msgid "Above"
1032
  msgstr "Sopra"
1033
 
1034
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:100
1035
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:192
1036
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:84
1037
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140
1038
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:82
1039
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:154
1040
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:82
1041
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:154
1042
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:94
1043
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:151
1044
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
1045
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:152
1046
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:229
1047
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:279
1048
  msgid "Above with separator"
1049
  msgstr "Sopra con separatore"
1050
 
1051
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:108
1052
  msgid "Sidebar Login form"
1053
  msgstr ""
1054
 
1055
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:113
1056
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:129
1057
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
1058
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
1059
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
1060
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:26
1061
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:39
1062
  msgid "Hide login buttons"
1063
  msgstr "Nascondi bottone login"
1064
 
1065
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:116
1066
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:132
1067
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
1068
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
1069
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
1070
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:23
1071
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:36
1072
- #: nextend-facebook-connect/widget.php:76
1073
  msgid "Show login buttons"
1074
  msgstr "Mostra bottone login"
1075
 
1076
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:117
1077
  msgid ""
1078
  "Some themes that use BuddyPress, display the social buttons twice in the "
1079
  "same login form. This option can disable the one for: "
@@ -1083,181 +675,121 @@ msgstr ""
1083
  "stesso form di login. Questa opzione può disabilitarne un set per: "
1084
  "<b>bp_sidebar_login_form action</b>. "
1085
 
1086
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124
1087
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1088
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1089
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
1090
  msgid "Login form"
1091
  msgstr "Form di login"
1092
 
1093
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:137
1094
  msgid "Login button style"
1095
  msgstr "Stile del bottone di login"
1096
 
1097
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162
1098
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54
1099
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:58
1100
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1101
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1102
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
1103
  msgid "Login layout"
1104
  msgstr "Layout del login"
1105
 
1106
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:200
1107
- #: nextend-facebook-connect/admin/templates/settings/comment.php:59
1108
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:53
1109
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:178
1110
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178
1111
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:159
1112
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:311
1113
  msgid "Button alignment"
1114
  msgstr "Allineamento bottone"
1115
 
1116
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:205
1117
- #: nextend-facebook-connect/admin/templates/settings/comment.php:64
1118
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:152
1119
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:58
1120
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:183
1121
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:183
1122
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:164
1123
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:316
1124
- #: nextend-facebook-connect/widget.php:57
1125
  msgid "Left"
1126
  msgstr "Sinistra"
1127
 
1128
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:208
1129
- #: nextend-facebook-connect/admin/templates/settings/comment.php:67
1130
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155
1131
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:61
1132
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:186
1133
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
1134
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
1135
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:319
1136
- #: nextend-facebook-connect/widget.php:62
1137
  msgid "Center"
1138
  msgstr "Centro"
1139
 
1140
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:212
1141
- #: nextend-facebook-connect/admin/templates/settings/comment.php:71
1142
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:159
1143
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:65
1144
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:190
1145
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:190
1146
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:171
1147
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1148
- #: nextend-facebook-connect/widget.php:67
1149
  msgid "Right"
1150
  msgstr "Destra"
1151
 
1152
- #: nextend-facebook-connect/admin/templates/settings/comment.php:18
1153
  msgid "Login button"
1154
  msgstr "Bottone login"
1155
 
1156
- #: nextend-facebook-connect/admin/templates/settings/comment.php:23
1157
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
1158
  msgid "Show"
1159
  msgstr "Mostra"
1160
 
1161
- #: nextend-facebook-connect/admin/templates/settings/comment.php:26
1162
  msgid "Hide"
1163
  msgstr "Nascondi"
1164
 
1165
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1166
  #, php-format
1167
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
1168
  msgstr ""
1169
  "Hai bisogno di attivare ' %1$s > %2$s > %3$s ' per fare funzionare questa "
1170
  "caratteristica"
1171
 
1172
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1173
  msgid "Discussion"
1174
  msgstr "Discussione"
1175
 
1176
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1177
  msgid "Users must be registered and logged in to comment"
1178
  msgstr "Gli utenti devono essere registrati e loggati per commentare"
1179
 
1180
- #: nextend-facebook-connect/admin/templates/settings/comment.php:33
1181
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
1182
  msgid "Button style"
1183
  msgstr "Stile bottone"
1184
 
1185
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1186
  msgid "Target window"
1187
  msgstr "Finestra target"
1188
 
1189
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34
1190
  msgid "Prefer popup"
1191
  msgstr "Preferisci popup"
1192
 
1193
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37
1194
  msgid "Prefer new tab"
1195
  msgstr "Preferisci nuova tab"
1196
 
1197
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40
1198
  msgid "Prefer same window"
1199
  msgstr "Preferisci stessa finestra"
1200
 
1201
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46
1202
  msgid "Registration notification sent to"
1203
  msgstr "Invia notifica di registrazione a"
1204
 
1205
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51
1206
- #: nextend-facebook-connect/admin/templates/settings/general.php:243
1207
  msgid "WordPress default"
1208
  msgstr "Default WordPress"
1209
 
1210
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
1211
  msgid "Nobody"
1212
  msgstr "Nessuno"
1213
 
1214
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60
1215
  msgid "Admin"
1216
  msgstr "Admin"
1217
 
1218
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63
1219
  msgid "User and Admin"
1220
  msgstr "Utente e Admin"
1221
 
1222
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69
1223
  msgid "Unlink"
1224
  msgstr "Scollega"
1225
 
1226
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75
1227
  msgid "Allow Social account unlink"
1228
  msgstr "Consenti di scollegare gli account Social"
1229
 
1230
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
1231
  msgid "Show linked providers"
1232
  msgstr "Mostra providers collegati"
1233
 
1234
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1235
  #, php-format
1236
  msgid "Providers linked to the account will appear in the %1$s."
1237
  msgstr "I providers collegati all'account appariranno in %1$s."
1238
 
1239
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1240
  msgid "Users table"
1241
  msgstr "Tabella utenti"
1242
 
1243
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:96
1244
  msgid "Disable Admin bar for roles"
1245
  msgstr "Disabilita l'amministrazione per i ruoli"
1246
 
1247
- #: nextend-facebook-connect/admin/templates/settings/general.php:43
1248
  msgid "Debug mode"
1249
  msgstr "Modalità debug"
1250
 
1251
- #: nextend-facebook-connect/admin/templates/settings/general.php:57
1252
  msgid "Page for register flow"
1253
  msgstr "Pagina per il flusso di registrazione"
1254
 
1255
- #: nextend-facebook-connect/admin/templates/settings/general.php:67
1256
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
1257
  msgid "None"
1258
  msgstr "Nessuno"
1259
 
1260
- #: nextend-facebook-connect/admin/templates/settings/general.php:75
1261
  msgid ""
1262
  "This setting is used when you request additional data from the users (such "
1263
  "as email address) and to display the Terms and conditions."
@@ -1265,7 +797,6 @@ msgstr ""
1265
  "Questo settaggio è usato quando richiedi più informazioni dagli utenti (come "
1266
  "l'indirizzo email) per mostrare i Termini e condizioni."
1267
 
1268
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1269
  #, php-format
1270
  msgid ""
1271
  "%2$s First create a new page and insert the following shortcode: %1$s then "
@@ -1274,13 +805,9 @@ msgstr ""
1274
  "%2$s Prima crea una nuova pagina e inserisci il seguente shortcode: %1$s, "
1275
  "dopo seleziona una voce dal menù sopra"
1276
 
1277
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1278
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1279
  msgid "Usage:"
1280
  msgstr "Utilizzo:"
1281
 
1282
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1283
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1284
  #, php-format
1285
  msgid ""
1286
  "%1$s You won't be able to reach the selected page unless a social login/"
@@ -1289,16 +816,12 @@ msgstr ""
1289
  "%1$s Non potrai raggiungere la pagina selezionata fino a quando un login, o "
1290
  "un accesso social non avvengono."
1291
 
1292
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1293
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1294
  msgid "Important:"
1295
  msgstr "Importante:"
1296
 
1297
- #: nextend-facebook-connect/admin/templates/settings/general.php:81
1298
  msgid "OAuth redirect uri proxy page"
1299
  msgstr "Pagina proxy OAuth redirect uri"
1300
 
1301
- #: nextend-facebook-connect/admin/templates/settings/general.php:101
1302
  msgid ""
1303
  "You can use this setting when wp-login.php page is not available to handle "
1304
  "the OAuth flow."
@@ -1306,61 +829,46 @@ msgstr ""
1306
  "Puoi usare questo settaggio quando wp-login.php non è disponibile per "
1307
  "gestire il flusso OAuth."
1308
 
1309
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1310
  #, php-format
1311
  msgid "%1$s First create a new page then select this page above."
1312
  msgstr "%1$s Crea una nuova pagina e poi una voce dal menù sopra."
1313
 
1314
- #: nextend-facebook-connect/admin/templates/settings/general.php:109
1315
  msgid "Prevent external redirect overrides"
1316
  msgstr "Impedisci overrides di redirect esterni"
1317
 
1318
- #: nextend-facebook-connect/admin/templates/settings/general.php:115
1319
  msgid "Disable external redirects"
1320
  msgstr "Disabilita redirect esterni"
1321
 
1322
- #: nextend-facebook-connect/admin/templates/settings/general.php:122
1323
  msgid "Default redirect url"
1324
  msgstr "Url di redirect default"
1325
 
1326
- #: nextend-facebook-connect/admin/templates/settings/general.php:135
1327
- #: nextend-facebook-connect/admin/templates/settings/general.php:173
1328
  msgid "for Login"
1329
  msgstr "per Accedere"
1330
 
1331
- #: nextend-facebook-connect/admin/templates/settings/general.php:150
1332
- #: nextend-facebook-connect/admin/templates/settings/general.php:188
1333
  msgid "for Register"
1334
  msgstr "per Regisstrarsi"
1335
 
1336
- #: nextend-facebook-connect/admin/templates/settings/general.php:160
1337
  msgid "Fixed redirect url"
1338
  msgstr "Url di redirect fissa"
1339
 
1340
- #: nextend-facebook-connect/admin/templates/settings/general.php:197
1341
  msgid "Blacklisted redirects"
1342
  msgstr "Redirect in blacklist"
1343
 
1344
- #: nextend-facebook-connect/admin/templates/settings/general.php:203
1345
  msgid "If you want to blacklist redirect url params. One pattern per line."
1346
  msgstr ""
1347
  "Se vuoi mettere in blacklist dei parametri url. Inserisci un pattern per "
1348
  "linea."
1349
 
1350
- #: nextend-facebook-connect/admin/templates/settings/general.php:208
1351
  msgid "Support login restrictions"
1352
  msgstr "Restrizioni al login"
1353
 
1354
- #: nextend-facebook-connect/admin/templates/settings/general.php:218
1355
  #, php-format
1356
  msgid "Please visit to our %1$s to check what plugins are supported!"
1357
  msgstr "Per favore, visita %1$s per verificare quali plugins sono supportati!"
1358
 
1359
- #: nextend-facebook-connect/admin/templates/settings/general.php:223
1360
  msgid "Display avatars in \"All media items\""
1361
  msgstr "Mostra avatars in \"Libreria Media\""
1362
 
1363
- #: nextend-facebook-connect/admin/templates/settings/general.php:233
1364
  msgid ""
1365
  "Enabling this option can speed up loading images in Media Library - Grid "
1366
  "view!"
@@ -1368,21 +876,17 @@ msgstr ""
1368
  "Abilitando questa opzione potrai velocizzare il caricamento delle immagini "
1369
  "nella Libreria Media - vista a Griglia!"
1370
 
1371
- #: nextend-facebook-connect/admin/templates/settings/general.php:238
1372
  msgid "Membership"
1373
  msgstr "Abbonamento"
1374
 
1375
- #: nextend-facebook-connect/admin/templates/settings/general.php:251
1376
  msgid "Allow registration with Social login."
1377
  msgstr "Consenti la registrazione con Social login."
1378
 
1379
- #: nextend-facebook-connect/admin/templates/settings/general.php:256
1380
  #, fuzzy
1381
  #| msgid "Page for register flow"
1382
  msgid "Custom label for register buttons"
1383
  msgstr "Pagina per il flusso di registrazione"
1384
 
1385
- #: nextend-facebook-connect/admin/templates/settings/general.php:266
1386
  #, php-format
1387
  msgid ""
1388
  "Set a custom label for the social buttons in registration forms and for "
@@ -1390,93 +894,45 @@ msgid ""
1390
  "can be modified at the Buttons tab of each provider."
1391
  msgstr ""
1392
 
1393
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1394
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1395
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1396
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1397
- msgid "Login form button style"
1398
- msgstr "Stile del bottone del form di login"
1399
-
1400
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72
1401
  msgid "Below and floating"
1402
  msgstr "Sotto e fluttuante"
1403
 
1404
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91
1405
  msgid "Embedded Login form button style"
1406
  msgstr "Stile del bottone del form di login incorporato"
1407
 
1408
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116
1409
  msgid "Embedded Login layout"
1410
  msgstr "Layout del login incorporato"
1411
 
1412
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147
1413
  msgid "Embedded login form button alignment"
1414
  msgstr "Allineamento del bottone del login incorporato"
1415
 
1416
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1417
- #: nextend-facebook-connect/includes/userData.php:152
1418
  msgid "Registration Form"
1419
  msgstr "Form di Registrazione"
1420
 
1421
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
1422
  msgid "Embedded login form"
1423
  msgstr "Form di login incorporato"
1424
 
1425
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:23
1426
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1427
- msgid "No Connect button in Login form"
1428
- msgstr "Non connettere bottone nel form di Login"
1429
-
1430
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:26
1431
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:98
1432
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1433
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:98
1434
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
1435
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:57
1436
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
1437
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
1438
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
1439
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:173
1440
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:179
1441
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:185
1442
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:247
1443
- msgid "Connect button on"
1444
- msgstr "Connetti bottone a"
1445
-
1446
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
1447
  msgid "Sign Up form"
1448
  msgstr "Form di Iscrizione"
1449
 
1450
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:95
1451
  msgid "No Connect button in Sign Up form"
1452
  msgstr ""
1453
 
1454
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:105
1455
  msgid "Sign Up form button style"
1456
  msgstr "Stile del bottone Iscriviti"
1457
 
1458
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:130
1459
  msgid "Sign Up layout"
1460
  msgstr "Layout di Iscrizione"
1461
 
1462
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:162
1463
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:162
1464
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:290
1465
  msgid "Account details"
1466
  msgstr "Dettagli account"
1467
 
1468
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:167
1469
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:167
1470
  msgid "No link buttons"
1471
  msgstr "Non collegare bottoni"
1472
 
1473
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:170
1474
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:170
1475
  msgid "Link buttons after account details"
1476
  msgstr "Collega bottoni dopo i dettagli dell'account"
1477
 
1478
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1479
- #: nextend-facebook-connect/nextend-social-login.php:152
1480
  msgid ""
1481
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1482
  "\"_blank\">Privacy Policy</a>"
@@ -1484,131 +940,92 @@ msgstr ""
1484
  "Cliccando su Registrati, accetti la nostra <a href=\"#privacy_policy_url\" "
1485
  "target=\"_blank\">Privacy Policy</a>"
1486
 
1487
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1488
  msgid "Store"
1489
  msgstr "Memorizza"
1490
 
1491
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1492
  msgid "First and last name"
1493
  msgstr "Nome e cognome"
1494
 
1495
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1496
  msgid "When not enabled, username will be randomly generated."
1497
  msgstr "Quando non abilitato, lo username sarà generato casualmente."
1498
 
1499
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1500
- #: nextend-social-login-pro/class-provider-extension.php:322
1501
  msgid "Email"
1502
  msgstr "Email"
1503
 
1504
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1505
  msgid "When not enabled, email will be empty."
1506
  msgstr "Quando non abilitato, l'email sarà vuota."
1507
 
1508
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1509
- #: nextend-facebook-connect/includes/avatar.php:49
1510
  msgid "Avatar"
1511
  msgstr "Avatar"
1512
 
1513
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1514
- #: nextend-facebook-connect/includes/provider.php:1108
1515
  msgid "Access token"
1516
  msgstr "Token d'accesso"
1517
 
1518
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:95
1519
- msgid "No Connect button in Register form"
1520
- msgstr ""
1521
-
1522
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
1523
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
1524
- msgid "Register form button style"
1525
- msgstr "Stile del bottone del form registrati"
1526
-
1527
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1528
  msgid "Register Form"
1529
  msgstr "Form di Registrazione"
1530
 
1531
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:49
1532
  msgid "No Connect button in login form"
1533
  msgstr ""
1534
 
1535
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:107
1536
  msgid "No Connect button in register form"
1537
  msgstr ""
1538
 
1539
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:160
1540
  msgid "Billing form"
1541
  msgstr "Form pagamento"
1542
 
1543
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:165
1544
  msgid "No Connect button in billing form"
1545
  msgstr ""
1546
 
1547
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:193
1548
  msgid "Billing layout"
1549
  msgstr "Layout accesso"
1550
 
1551
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:205
1552
  msgid "Default with separator"
1553
  msgstr "Default con separatore"
1554
 
1555
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:239
1556
  msgid "Checkout for WooCommerce"
1557
  msgstr "Checkout per WooCommerce"
1558
 
1559
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:244
1560
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1561
  msgstr ""
1562
 
1563
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:255
1564
  msgid "Checkout for WooCommerce layout"
1565
  msgstr ""
1566
 
1567
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:295
1568
  msgid "No Connect buttons in account details form"
1569
  msgstr ""
1570
 
1571
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:298
1572
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:303
1573
  msgid "Link buttons on"
1574
  msgstr "Collega bottoni a"
1575
 
1576
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:329
1577
  #, fuzzy
1578
  #| msgid "Ask E-mail on registration"
1579
  msgid "Email template for registration"
1580
  msgstr "Chiedi E-mail alla registrazione"
1581
 
1582
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:334
1583
  #, fuzzy
1584
  #| msgid "WordPress default"
1585
  msgid "WordPress default notification"
1586
  msgstr "Default WordPress"
1587
 
1588
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:337
1589
  #, fuzzy
1590
  #| msgid "Registration notification sent to"
1591
  msgid "WooCommerce registration notification"
1592
  msgstr "Invia notifica di registrazione a"
1593
 
1594
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:339
1595
  #, php-format
1596
  msgid ""
1597
  "Defines whether the registration with %1$s will send the same registration "
1598
  "notification that %2$s does, instead of the %3$s default one."
1599
  msgstr ""
1600
 
1601
- #: nextend-facebook-connect/admin/templates/test-connection.php:42
1602
  #, php-format
1603
  msgid "Network connection successful: %1$s"
1604
  msgstr "Connessione alla rete riuscita: %1$s"
1605
 
1606
- #: nextend-facebook-connect/admin/templates/test-connection.php:49
1607
  #, php-format
1608
  msgid "Network connection failed: %1$s"
1609
  msgstr "Connessione alla rete fallita: %1$s"
1610
 
1611
- #: nextend-facebook-connect/admin/templates/test-connection.php:52
1612
  msgid ""
1613
  "Please contact with your hosting provider to resolve the network issue "
1614
  "between your server and the provider."
@@ -1616,49 +1033,39 @@ msgstr ""
1616
  "Gentilmente contatta il tuo hosting provider per risolvere i problemi di "
1617
  "connettività fra il tuo server e il provider."
1618
 
1619
- #: nextend-facebook-connect/includes/avatar.php:50
1620
  msgid "Manage Avatar"
1621
  msgstr "Gestisci Avatar"
1622
 
1623
- #: nextend-facebook-connect/includes/avatar.php:51
1624
  #, php-format
1625
  msgid "Avatar <span class=\"count\">(%s)</span>"
1626
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1627
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1628
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1629
 
1630
- #: nextend-facebook-connect/includes/avatar.php:399
1631
  msgid "Invalid URL Provided."
1632
  msgstr ""
1633
 
1634
- #: nextend-facebook-connect/includes/avatar.php:404
1635
  msgid "Could not create Temporary file."
1636
  msgstr ""
1637
 
1638
- #: nextend-facebook-connect/includes/compat-wp-login.php:63
1639
  #, php-format
1640
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1641
  msgstr "%1$s &lsaquo; %2$s &#8212; WordPress"
1642
 
1643
- #: nextend-facebook-connect/includes/compat-wp-login.php:129
1644
  msgid "https://wordpress.org/"
1645
  msgstr "https://wordpress.org/"
1646
 
1647
- #: nextend-facebook-connect/includes/compat-wp-login.php:130
1648
  msgid "Powered by WordPress"
1649
  msgstr "Powered by WordPress"
1650
 
1651
- #: nextend-facebook-connect/includes/compat-wp-login.php:284
1652
  #, php-format
1653
  msgctxt "site"
1654
  msgid "&larr; Back to %s"
1655
  msgstr "&larr; Indietro a %s"
1656
 
1657
- #: nextend-facebook-connect/includes/provider-admin.php:199
1658
  msgid "Your configuration needs to be verified"
1659
  msgstr "La tua configurazione deve essere verificata"
1660
 
1661
- #: nextend-facebook-connect/includes/provider-admin.php:200
1662
  msgid ""
1663
  "Before you can start letting your users register with your app it needs to "
1664
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1672,15 +1079,12 @@ msgstr ""
1672
  "popup verifica l'ID copiato e la secret o l'app stessa. Altrimenti i tuoi "
1673
  "settaggi sono corretti."
1674
 
1675
- #: nextend-facebook-connect/includes/provider-admin.php:206
1676
  msgid "Please save your changes to verify settings."
1677
  msgstr "Per favore salva le tue modifiche per verificare i settaggi."
1678
 
1679
- #: nextend-facebook-connect/includes/provider-admin.php:214
1680
  msgid "Works Fine"
1681
  msgstr "Funziona Bene"
1682
 
1683
- #: nextend-facebook-connect/includes/provider-admin.php:228
1684
  #, php-format
1685
  msgid ""
1686
  "This provider is currently disabled, which means that users can’t register "
@@ -1689,7 +1093,6 @@ msgstr ""
1689
  "Questo provider è correntemente disabilitato, e significa che gli utenti non "
1690
  "possono registrarsi o accedere mediante il loro account %s."
1691
 
1692
- #: nextend-facebook-connect/includes/provider-admin.php:231
1693
  #, php-format
1694
  msgid ""
1695
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1698,7 +1101,6 @@ msgstr ""
1698
  "Questo provider funziona bene, ma puoi testarlo di nuovo. Se non vuoi che "
1699
  "gli utenti si registrino o accedano ancora con %s puoi disabilitarlo."
1700
 
1701
- #: nextend-facebook-connect/includes/provider-admin.php:234
1702
  #, php-format
1703
  msgid ""
1704
  "This provider is currently enabled, which means that users can register or "
@@ -1707,54 +1109,38 @@ msgstr ""
1707
  "Questo provider è correntemente abilitato, significa che gli utenti possono "
1708
  "registrarsi o accedere mediante i loro account %s."
1709
 
1710
- #: nextend-facebook-connect/includes/provider-admin.php:242
1711
  msgid "Verify Settings Again"
1712
  msgstr "Verifica nuovamente le impostazioni"
1713
 
1714
- #: nextend-facebook-connect/includes/provider-admin.php:243
1715
  msgid "Please save your changes before verifying settings."
1716
  msgstr "Per favore salva le tue modifiche prima di verificare le impostazioni."
1717
 
1718
- #: nextend-facebook-connect/includes/provider.php:364
1719
- #: nextend-facebook-connect/includes/provider.php:725
1720
- #: nextend-facebook-connect/includes/provider.php:733
1721
  msgid "Authentication successful"
1722
  msgstr "Autenticazione riuscita"
1723
 
1724
- #: nextend-facebook-connect/includes/provider.php:662
1725
- #: nextend-facebook-connect/includes/user.php:170
1726
- #: nextend-facebook-connect/includes/user.php:606
1727
  msgid "Authentication error"
1728
  msgstr "Errore di autenticazione"
1729
 
1730
- #: nextend-facebook-connect/includes/provider.php:677
1731
  msgid "Unlink successful."
1732
  msgstr "Scollegamento riuscito."
1733
 
1734
- #: nextend-facebook-connect/includes/provider.php:679
1735
  msgid "Unlink is not allowed!"
1736
  msgstr "Lo scollegamento non è consentito!"
1737
 
1738
- #: nextend-facebook-connect/includes/provider.php:894
1739
- #: nextend-facebook-connect/includes/provider.php:901
1740
  msgid "The test was successful"
1741
  msgstr "Il test è riuscito"
1742
 
1743
- #: nextend-facebook-connect/includes/provider.php:947
1744
  msgid "Authentication failed"
1745
  msgstr "Autenticazione fallita"
1746
 
1747
- #: nextend-facebook-connect/includes/provider.php:1100
1748
  msgid "Identifier"
1749
  msgstr "Identificatore"
1750
 
1751
- #: nextend-facebook-connect/includes/provider.php:1116
1752
  #, fuzzy
1753
  #| msgid "Profile picture"
1754
  msgid "Profile Picture"
1755
  msgstr "Immagine del profilo"
1756
 
1757
- #: nextend-facebook-connect/includes/user.php:76
1758
  #, php-format
1759
  msgid ""
1760
  "Your %1$s account is successfully linked with your account. Now you can sign "
@@ -1763,7 +1149,6 @@ msgstr ""
1763
  "Il tuo account %1$s è correttamente collegato al tuo account. Adesso puoi "
1764
  "accedere facilmente con %2$s."
1765
 
1766
- #: nextend-facebook-connect/includes/user.php:79
1767
  #, fuzzy, php-format
1768
  #| msgid ""
1769
  #| "You have already linked a(n) %s account. Please unlink the current and "
@@ -1775,17 +1160,14 @@ msgstr ""
1775
  "Hai già collegato un account %s. Per favore scollega quello corrente e "
1776
  "potrai successivamente collegarne un altro a %s."
1777
 
1778
- #: nextend-facebook-connect/includes/user.php:84
1779
  #, fuzzy, php-format
1780
  #| msgid "This %s account is already linked to other user."
1781
  msgid "This %s account is already linked to another user."
1782
  msgstr "Questo account %s è già collegato ad un altro utente."
1783
 
1784
- #: nextend-facebook-connect/includes/user.php:130
1785
  msgid "User registration is currently not allowed."
1786
  msgstr "La registrazione dell'utente non è al momento consentita."
1787
 
1788
- #: nextend-facebook-connect/includes/user.php:681
1789
  #, php-format
1790
  msgid ""
1791
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
@@ -1793,26 +1175,22 @@ msgid ""
1793
  "linked %1$s account or log in with your password!"
1794
  msgstr ""
1795
 
1796
- #: nextend-facebook-connect/includes/userData.php:152
1797
  #, fuzzy
1798
  #| msgid "Register For This Site!"
1799
  msgid "Register For This Site"
1800
  msgstr "Registrati per questo sito!"
1801
 
1802
- #: nextend-facebook-connect/includes/userData.php:204
1803
  #, fuzzy
1804
  #| msgid "Register"
1805
  msgctxt "Register form submit button label"
1806
  msgid "Register"
1807
  msgstr "Registra"
1808
 
1809
- #: nextend-facebook-connect/nextend-facebook-connect.php:37
1810
  #, php-format
1811
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1812
  msgstr ""
1813
  "%1$s richiede una versione PHP %2$s+, il plugin al momento NON È ATTIVO."
1814
 
1815
- #: nextend-facebook-connect/nextend-facebook-connect.php:44
1816
  #, php-format
1817
  msgid ""
1818
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1821,88 +1199,51 @@ msgstr ""
1821
  "%1$s richiede la versione di WordPress %2$s+. Dato che stai usando una "
1822
  "versione precedente, il plugin al momento NON È ATTIVO."
1823
 
1824
- #: nextend-facebook-connect/nextend-social-login.php:56
1825
- #: nextend-facebook-connect/nextend-social-login.php:63
1826
  #, php-format
1827
  msgid "Please update %1$s to version %2$s or newer."
1828
  msgstr "Please update %1$s to version %2$s or newer."
1829
 
1830
- #: nextend-facebook-connect/nextend-social-login.php:56
1831
- #: nextend-facebook-connect/nextend-social-login.php:63
1832
  msgid "Update now!"
1833
  msgstr "Aggiorna adesso!"
1834
 
1835
- #: nextend-facebook-connect/nextend-social-login.php:846
1836
- #: nextend-facebook-connect/nextend-social-login.php:1225
1837
  msgid "Social Login"
1838
  msgstr "Social Login"
1839
 
1840
- #: nextend-facebook-connect/nextend-social-login.php:1206
1841
  msgid "Social Accounts"
1842
  msgstr "Account Social"
1843
 
1844
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:2
1845
- #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1846
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:2
1847
  msgid "Button skin"
1848
  msgstr "Skin del bottone"
1849
 
1850
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:8
1851
- #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1852
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:14
1853
  msgid "Dark"
1854
  msgstr "Scuro"
1855
 
1856
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:14
1857
- #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1858
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:8
1859
  msgid "Light"
1860
  msgstr "Chiaro"
1861
 
1862
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:20
1863
  msgid "Black"
1864
  msgstr "Nero"
1865
 
1866
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:26
1867
  msgid "White"
1868
  msgstr "Bianco"
1869
 
1870
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1871
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1872
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1873
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1874
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8
1875
  #, php-format
1876
  msgid "Navigate to <b>%s</b>"
1877
  msgstr "Naviga in <b>%s</b>"
1878
 
1879
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1880
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1881
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1882
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1883
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1884
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:9
1885
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1886
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18
1887
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9
1888
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9
1889
  #, php-format
1890
  msgid "Log in with your %s credentials if you are not logged in"
1891
  msgstr "Accedi con le tue credenziali %s se non sei loggato"
1892
 
1893
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
1894
  #, php-format
1895
  msgid "Click on the App with App ID: <b>%s</b>"
1896
  msgstr "Clicca sull'App con l'App ID: <b>%s</b>"
1897
 
1898
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
1899
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1900
  msgstr ""
1901
  "Sulla barra laterale clicca clicca su \"<b>Accesso Facebook > Impostazioni</"
1902
  "b>\""
1903
 
1904
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:14
1905
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1906
  #, fuzzy
1907
  #| msgid ""
1908
  #| "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: "
@@ -1913,14 +1254,9 @@ msgstr ""
1913
  "Aggiungi l'URL seguente al campo \"<b>Valid OAuth redirect URIs</b>\": <b>"
1914
  "%s</b>"
1915
 
1916
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:22
1917
  msgid "Click on \"<b>Save Changes</b>\""
1918
  msgstr "Clicca su \"<b>Salva Modifiche</b>\""
1919
 
1920
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11
1921
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:13
1922
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11
1923
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22
1924
  #, php-format
1925
  msgid ""
1926
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
@@ -1929,19 +1265,9 @@ msgstr ""
1929
  "%1$s consenti solo HTTPS OAuth Redirects. Devi portare il tuo sito a HTTPS "
1930
  "per potere accedere con %1$s."
1931
 
1932
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
1933
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:15
1934
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13
1935
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24
1936
  msgid "How to get SSL for my WordPress site?"
1937
  msgstr "Come ottenere l'SSL per il mio sito WordPress?"
1938
 
1939
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1940
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1941
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1942
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:10
1943
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1944
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10
1945
  #, php-format
1946
  msgid ""
1947
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -1956,70 +1282,19 @@ msgstr ""
1956
  "su \"Impostazioni\" e configura il \"%2$s\" ottenuto e \"%3$s\" secondo la "
1957
  "tua App %1$s."
1958
 
1959
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1960
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
1961
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
1962
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1963
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:34
1964
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:14
1965
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:14
1966
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:14
1967
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
1968
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:14
1969
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:14
1970
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:14
1971
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:14
1972
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:15
1973
  #, php-format
1974
  msgctxt "App creation"
1975
  msgid "Create %s"
1976
  msgstr "Crea %s"
1977
 
1978
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
1979
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
1980
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
1981
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
1982
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19
1983
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:39
1984
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
1985
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
1986
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:8
1987
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:17
1988
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
1989
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
1990
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:8
1991
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:17
1992
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
1993
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
1994
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
1995
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
1996
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
1997
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
1998
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18
1999
  #, php-format
2000
  msgid "Navigate to %s"
2001
  msgstr "Naviga a %s"
2002
 
2003
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2004
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2005
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2006
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2007
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:40
2008
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2009
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2010
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:18
2011
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:9
2012
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:18
2013
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2014
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
2015
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2016
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2017
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19
2018
  #, php-format
2019
  msgid "Log in with your %s credentials if you are not logged in."
2020
  msgstr "Accedi con le tue credenziali %s se non sei loggato."
2021
 
2022
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
2023
  #, fuzzy
2024
  #| msgid ""
2025
  #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
@@ -2029,7 +1304,6 @@ msgid ""
2029
  msgstr ""
2030
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
2031
 
2032
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
2033
  msgid ""
2034
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
2035
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
@@ -2039,7 +1313,6 @@ msgstr ""
2039
  "cliccare sul bottone verde \"<b>Registrati Adesso</b>\", compilare il form "
2040
  "ed infine verificare il tuo account."
2041
 
2042
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2043
  #, fuzzy, php-format
2044
  #| msgid ""
2045
  #| "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
@@ -2051,13 +1324,11 @@ msgstr ""
2051
  "Compila \"<b>Nome mostrato</b>\" e \"<b>Email di contatto</b>\". Il \"Nome "
2052
  "mostrato \" apparirà sulla tua %s!"
2053
 
2054
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2055
  msgid ""
2056
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
2057
  "if you have any."
2058
  msgstr ""
2059
 
2060
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2061
  #, fuzzy
2062
  #| msgid ""
2063
  #| "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
@@ -2065,13 +1336,11 @@ msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
2065
  msgstr ""
2066
  "Clicca il bottone \"<b>Crea App ID</b>\" e completa la Verifica di Sicurezza."
2067
 
2068
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2069
  #, fuzzy, php-format
2070
  #| msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
2071
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
2072
  msgstr "Cerca <b>\"%s\"</b> e clicca \"<b>Seleziona</b>\"."
2073
 
2074
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2075
  #, php-format
2076
  msgid ""
2077
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
@@ -2080,13 +1349,11 @@ msgstr ""
2080
  "Seleziona \"<b>Web</b>\" e inserisci la seguente URL nel campo \"<b>URL sito "
2081
  "internet</b>\": <b>%s</b>"
2082
 
2083
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
2084
  #, fuzzy
2085
  #| msgid "Press “<b>Save</b>”"
2086
  msgid "Press “<b>Save</b>”."
2087
  msgstr "Premi “<b>Salva</b>”"
2088
 
2089
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2090
  #, php-format
2091
  msgid ""
2092
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
@@ -2095,14 +1362,11 @@ msgstr ""
2095
  "Clicca sulla opzione “<b>%1$s</b>” che troverai sul lato sinistro, sotto“<b>"
2096
  "%2$s</b> - <b>%3$s</b>”"
2097
 
2098
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:47
2099
  #, fuzzy
2100
  #| msgid "Click on “<b>Save Changes</b>”"
2101
  msgid "Click on “<b>Save Changes</b>”."
2102
  msgstr "Clicca su \"<b>Salva Modifiche</b>”"
2103
 
2104
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:48
2105
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:65
2106
  #, fuzzy, php-format
2107
  #| msgid ""
2108
  #| "On the top left side, click on the “<b>%1$s</b>” menu point, then click "
@@ -2114,7 +1378,6 @@ msgstr ""
2114
  "In alto a sinistra, clicca nel menù su “<b>%1$s</b>”, quindi clicca “<b>"
2115
  "%2$s</b>”"
2116
 
2117
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:49
2118
  #, php-format
2119
  msgid ""
2120
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
@@ -2123,7 +1386,6 @@ msgstr ""
2123
  "Inserisci il nome del tuo dominio nel campo \"<b>Domini App</b>\", "
2124
  "probabilmente: <b>%s</b>"
2125
 
2126
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:50
2127
  msgid ""
2128
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
2129
  "available and easily accessible privacy policy that explains what data you "
@@ -2133,26 +1395,22 @@ msgstr ""
2133
  "privacy policy pubblica e facilmente accessibile, che spieghi quali "
2134
  "informazioni stai raccogliendo e come le userai."
2135
 
2136
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2137
  msgid ""
2138
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2139
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2140
  "instructions on how users can delete their accounts on your site."
2141
  msgstr ""
2142
 
2143
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2144
  msgid ""
2145
  "To comply with GDPR, you should already offer possibility to delete accounts "
2146
  "on your site, either by the user or by the admin:"
2147
  msgstr ""
2148
 
2149
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2150
  msgid ""
2151
  "<u>If each user has an option to delete the account</u>: the URL should "
2152
  "point to a guide showing the way users can delete their accounts."
2153
  msgstr ""
2154
 
2155
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:57
2156
  msgid ""
2157
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
2158
  "section - usually in the Privacy Policy - with the contact details, where "
@@ -2160,7 +1418,6 @@ msgid ""
2160
  "point to this section of the document."
2161
  msgstr ""
2162
 
2163
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:62
2164
  #, fuzzy
2165
  #| msgid ""
2166
  #| "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the "
@@ -2175,7 +1432,6 @@ msgstr ""
2175
  "l'opzione “<b>Uso Commerciale</b>” che descriva al meglio la tua App, poi "
2176
  "premi \"<b>Salva Modifiche</b>\""
2177
 
2178
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2179
  #, fuzzy
2180
  #| msgid ""
2181
  #| "Your application is currently private, which means that only you can log "
@@ -2190,7 +1446,6 @@ msgstr ""
2190
  "accedere con essa. Nella barra in alto clicca sullo switch all'etichetta "
2191
  "\"<b>In sviluppo</b>\", quindi clicca il bottone \"<b>Cambia modalità</b>\"."
2192
 
2193
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:64
2194
  #, php-format
2195
  msgid ""
2196
  "By default, your application only has Standard access for the permissions, "
@@ -2200,7 +1455,6 @@ msgid ""
2200
  "should click on the <strong>%6$s</strong> buttons next to them. "
2201
  msgstr ""
2202
 
2203
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:66
2204
  #, fuzzy, php-format
2205
  #| msgid ""
2206
  #| "At the top of the page you can find your \"<b>App ID</b>\" and you can "
@@ -2215,7 +1469,6 @@ msgstr ""
2215
  "\" se clicchi sul bottone \"Mostra\". Questi ti serviranno per la "
2216
  "configurazione del plugin."
2217
 
2218
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:69
2219
  #, php-format
2220
  msgid ""
2221
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
@@ -2226,11 +1479,9 @@ msgid ""
2226
  "the Facebook App, then please check our %2$sdocumentation%3$s."
2227
  msgstr ""
2228
 
2229
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:73
2230
  msgid "Maintaining the Facebook App:"
2231
  msgstr ""
2232
 
2233
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:74
2234
  #, php-format
2235
  msgid ""
2236
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
@@ -2241,76 +1492,16 @@ msgid ""
2241
  "that we need."
2242
  msgstr ""
2243
 
2244
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:78
2245
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:53
2246
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:46
2247
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:50
2248
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:134
2249
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:41
2250
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:40
2251
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:46
2252
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:43
2253
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:45
2254
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:46
2255
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:41
2256
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:41
2257
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:40
2258
  #, php-format
2259
  msgid "I am done setting up my %s"
2260
  msgstr "Ho completato l'impostazione della mia %s"
2261
 
2262
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:35
2263
- #: nextend-social-login-pro/providers/vk/admin/settings.php:27
2264
  msgid "App ID"
2265
  msgstr "App ID"
2266
 
2267
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:36
2268
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
2269
- #: nextend-facebook-connect/providers/google/admin/settings.php:28
2270
- #: nextend-facebook-connect/providers/google/admin/settings.php:41
2271
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
2272
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
2273
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
2274
- #: nextend-social-login-pro/providers/apple/admin/settings.php:79
2275
- #: nextend-social-login-pro/providers/apple/admin/settings.php:90
2276
- #: nextend-social-login-pro/providers/apple/admin/settings.php:99
2277
- #: nextend-social-login-pro/providers/apple/admin/settings.php:107
2278
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
2279
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
2280
- #: nextend-social-login-pro/providers/github/admin/settings.php:28
2281
- #: nextend-social-login-pro/providers/github/admin/settings.php:40
2282
- #: nextend-social-login-pro/providers/line/admin/settings.php:27
2283
- #: nextend-social-login-pro/providers/line/admin/settings.php:39
2284
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
2285
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
2286
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:27
2287
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:39
2288
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
2289
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
2290
- #: nextend-social-login-pro/providers/vk/admin/settings.php:28
2291
- #: nextend-social-login-pro/providers/vk/admin/settings.php:40
2292
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
2293
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
2294
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27
2295
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39
2296
  msgid "Required"
2297
  msgstr "Richiesto"
2298
 
2299
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:41
2300
- #: nextend-facebook-connect/providers/google/admin/settings.php:35
2301
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
2302
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
2303
- #: nextend-social-login-pro/providers/apple/admin/settings.php:34
2304
- #: nextend-social-login-pro/providers/apple/admin/settings.php:85
2305
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
2306
- #: nextend-social-login-pro/providers/github/admin/settings.php:34
2307
- #: nextend-social-login-pro/providers/line/admin/settings.php:33
2308
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
2309
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:33
2310
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
2311
- #: nextend-social-login-pro/providers/vk/admin/settings.php:34
2312
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
2313
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33
2314
  #, php-format
2315
  msgid ""
2316
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -2319,56 +1510,32 @@ msgstr ""
2319
  "Se non sei sicuro di quale sia il tuo %1$s, gentilmente vai su<a href=\"%2$s"
2320
  "\">Inizia</a>"
2321
 
2322
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:47
2323
  msgid "App Secret"
2324
  msgstr "App Secret"
2325
 
2326
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2327
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:49
2328
  #, php-format
2329
  msgid ""
2330
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2331
  "longer be able to login with %1$s."
2332
  msgstr ""
2333
 
2334
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2335
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:51
2336
  msgid "Find out why?"
2337
  msgstr ""
2338
 
2339
- #: nextend-facebook-connect/providers/facebook/facebook.php:90
2340
  msgid "Continue with <b>Facebook</b>"
2341
  msgstr "Continua con <b>Facebook</b>"
2342
 
2343
- #: nextend-facebook-connect/providers/facebook/facebook.php:91
2344
  #, fuzzy
2345
  #| msgid "Continue with <b>Facebook</b>"
2346
  msgid "Sign up with <b>Facebook</b>"
2347
  msgstr "Continua con <b>Facebook</b>"
2348
 
2349
- #: nextend-facebook-connect/providers/facebook/facebook.php:92
2350
  msgid "Link account with <b>Facebook</b>"
2351
  msgstr "Collega account con <b>Facebook</b>"
2352
 
2353
- #: nextend-facebook-connect/providers/facebook/facebook.php:93
2354
  msgid "Unlink account from <b>Facebook</b>"
2355
  msgstr "Scollega account da <b>Facebook</b>"
2356
 
2357
- #: nextend-facebook-connect/providers/facebook/facebook.php:193
2358
- #: nextend-facebook-connect/providers/google/google.php:168
2359
- #: nextend-facebook-connect/providers/twitter/twitter.php:97
2360
- #: nextend-social-login-pro/providers/amazon/amazon.php:67
2361
- #: nextend-social-login-pro/providers/apple/apple.php:115
2362
- #: nextend-social-login-pro/providers/apple/apple.php:122
2363
- #: nextend-social-login-pro/providers/disqus/disqus.php:114
2364
- #: nextend-social-login-pro/providers/github/github.php:152
2365
- #: nextend-social-login-pro/providers/line/line.php:63
2366
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2367
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:65
2368
- #: nextend-social-login-pro/providers/paypal/paypal.php:92
2369
- #: nextend-social-login-pro/providers/vk/vk.php:63
2370
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2371
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2372
  #, php-format
2373
  msgid ""
2374
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
@@ -2376,21 +1543,16 @@ msgstr ""
2376
  "Il %1$s inserito sembra non essere valido. Per favore inserisci un %2$s "
2377
  "valido."
2378
 
2379
- #: nextend-facebook-connect/providers/facebook/facebook.php:314
2380
- #: nextend-social-login-pro/providers/paypal/paypal.php:172
2381
  #, php-format
2382
  msgid "Required scope: %1$s"
2383
  msgstr "Campo richiesto: %1$s"
2384
 
2385
- #: nextend-facebook-connect/providers/google/admin/buttons.php:20
2386
  msgid "Uniform - Legacy"
2387
  msgstr ""
2388
 
2389
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
2390
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
2391
  msgstr "Clicca su \"<b>Credenziali</b>\" nel menù a sinistra"
2392
 
2393
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
2394
  #, php-format
2395
  msgid ""
2396
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
@@ -2399,8 +1561,6 @@ msgstr ""
2399
  "Sotto la sezione \"<b>OAuth 2.0 Client IDs</b>\" trova il tuo Client ID: <b>"
2400
  "%s</b>"
2401
 
2402
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:14
2403
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2404
  #, fuzzy, php-format
2405
  #| msgid ""
2406
  #| "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
@@ -2412,14 +1572,9 @@ msgstr ""
2412
  "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
2413
  "%2$s</b>."
2414
 
2415
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:22
2416
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:23
2417
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:23
2418
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:23
2419
  msgid "Click on \"<b>Save</b>\""
2420
  msgstr "Clicca su \"<b>Salva</b>\""
2421
 
2422
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2423
  #, fuzzy, php-format
2424
  #| msgid ""
2425
  #| "If you don't have a project yet, you'll need to create one. You can do "
@@ -2438,7 +1593,6 @@ msgstr ""
2438
  "progetto, clicca sul nome del tuo progetto sulla dashboard, ti apparità una "
2439
  "finestra e dovri cliccare su <b>\"Nuovo Progetto\"</b>. )"
2440
 
2441
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2442
  #, fuzzy, php-format
2443
  #| msgid ""
2444
  #| "Name your project and then click on the \"<b>Create</b>\" button again"
@@ -2447,21 +1601,18 @@ msgstr ""
2447
  "Inserisci un nome per il tuo progetto e poi clicca di nuovo sul bottone "
2448
  "\"<b>Crea</b>\""
2449
 
2450
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2451
  msgid ""
2452
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2453
  "have already had a Project, then make sure you select the created project in "
2454
  "the top bar! )"
2455
  msgstr ""
2456
 
2457
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2458
  #, fuzzy, php-format
2459
  #| msgid ""
2460
  #| "Click the “<b>OAuth consent screen</b>” button on the left hand side."
2461
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
2462
  msgstr "Clicca il bottone “<b>OAuth consent screen</b>” sulla sinistra."
2463
 
2464
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2465
  #, fuzzy, php-format
2466
  #| msgid ""
2467
  #| "Choose a <b>User Type</b> according to your needs. If you want to enable "
@@ -2476,7 +1627,6 @@ msgstr ""
2476
  "Social Login con Google per qualunque utente con un account Google, "
2477
  "seleziona l'opzione Esterna!"
2478
 
2479
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2480
  #, php-format
2481
  msgid ""
2482
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
@@ -2484,7 +1634,6 @@ msgid ""
2484
  "%1$s!"
2485
  msgstr ""
2486
 
2487
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2488
  #, fuzzy, php-format
2489
  #| msgid ""
2490
  #| "Enter a name for your App to the \"<b>Application name</b>\" field, which "
@@ -2496,14 +1645,12 @@ msgstr ""
2496
  "Inserisci un nome per la tua App nel campo \"<b>Nome applicazione</b>\", che "
2497
  "apparirà come nome dell'app che chiede per il consenso."
2498
 
2499
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2500
  #, php-format
2501
  msgid ""
2502
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2503
  "contact you with questions about their consent."
2504
  msgstr ""
2505
 
2506
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2507
  #, fuzzy, php-format
2508
  #| msgid ""
2509
  #| "Fill the \"<b>Authorized domains</b>\" field with your domain name "
@@ -2515,21 +1662,18 @@ msgstr ""
2515
  "Compila il campo \"<b>Domini autorizzati</b>\" col tuo nome del tuo dominio, "
2516
  "probabilmente: <b>%s</b> senza sottodomini!"
2517
 
2518
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2519
  #, php-format
2520
  msgid ""
2521
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2522
  "notify you about any changes to your project."
2523
  msgstr ""
2524
 
2525
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2526
  #, php-format
2527
  msgid ""
2528
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2529
  "too!"
2530
  msgstr ""
2531
 
2532
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2533
  #, php-format
2534
  msgid ""
2535
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
@@ -2538,31 +1682,26 @@ msgstr ""
2538
  "Sul lato sinistro, clicca nel menù su \"<b>%1$s</b>\", quindi clicca il "
2539
  "bottone \"<b>%2$s</b>\" nella barra superiore."
2540
 
2541
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2542
  #, fuzzy, php-format
2543
  #| msgid "Choose the \"<b>OAuth client ID</b>\" option."
2544
  msgid "Choose the \"<b>%1$s</b>\" option."
2545
  msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
2546
 
2547
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2548
  #, fuzzy, php-format
2549
  #| msgid "Select the \"<b>Web application</b>\" under Application type."
2550
  msgid "Select the \"<b>%1$s</b>\" under Application type."
2551
  msgstr "Seleziona \"<b>Applicazione web</b>\" sotto Tipo di applicazione."
2552
 
2553
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2554
  #, fuzzy, php-format
2555
  #| msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
2556
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2557
  msgstr "Inserisci un \"<b>Name</b>\" per il tuo OAuth client ID."
2558
 
2559
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:48
2560
  #, fuzzy, php-format
2561
  #| msgid "Click on the \"<b>Create</b>\" button"
2562
  msgid "Click on the \"<b>%1$s</b>\" button"
2563
  msgstr "Clicca sul bottone \"<b>Crea</b>\""
2564
 
2565
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:49
2566
  #, fuzzy, php-format
2567
  #| msgid ""
2568
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
@@ -2580,61 +1719,38 @@ msgstr ""
2580
  "cliccando sul suo nome e sarai in grado di fare copia-incolla del "
2581
  "\"<b>Client ID</b>\" e del \"<b>Client Secret</b>\" da lì."
2582
 
2583
- #: nextend-facebook-connect/providers/google/admin/settings.php:27
2584
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2585
- #: nextend-social-login-pro/providers/apple/admin/settings.php:28
2586
- #: nextend-social-login-pro/providers/github/admin/settings.php:27
2587
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2588
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2589
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2590
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26
2591
  msgid "Client ID"
2592
  msgstr "Client ID"
2593
 
2594
- #: nextend-facebook-connect/providers/google/admin/settings.php:40
2595
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2596
- #: nextend-social-login-pro/providers/apple/admin/settings.php:39
2597
- #: nextend-social-login-pro/providers/github/admin/settings.php:39
2598
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2599
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2600
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38
2601
  msgid "Client Secret"
2602
  msgstr "Client Secret"
2603
 
2604
- #: nextend-facebook-connect/providers/google/admin/settings.php:47
2605
  msgid "Select account on each login"
2606
  msgstr "Scegli un account ad ogni accesso"
2607
 
2608
- #: nextend-facebook-connect/providers/google/admin/settings.php:56
2609
  msgid ""
2610
  "Disable, when you don't want to see the account select prompt on each login."
2611
  msgstr ""
2612
  "Disabilita, quando non vuoi vedere la scelta dell'account ad ogni accesso."
2613
 
2614
- #: nextend-facebook-connect/providers/google/google.php:99
2615
  msgid "Continue with <b>Google</b>"
2616
  msgstr "Continua con <b>Google</b>"
2617
 
2618
- #: nextend-facebook-connect/providers/google/google.php:100
2619
  #, fuzzy
2620
  #| msgid "Continue with <b>Google</b>"
2621
  msgid "Sign up with <b>Google</b>"
2622
  msgstr "Continua con <b>Google</b>"
2623
 
2624
- #: nextend-facebook-connect/providers/google/google.php:101
2625
  msgid "Link account with <b>Google</b>"
2626
  msgstr "Collega account con <b>Google</b>"
2627
 
2628
- #: nextend-facebook-connect/providers/google/google.php:102
2629
  msgid "Unlink account from <b>Google</b>"
2630
  msgstr "Scollega account da <b>Google</b>"
2631
 
2632
- #: nextend-facebook-connect/providers/google/google.php:295
2633
  #, php-format
2634
  msgid "Required API: %1$s"
2635
  msgstr "API richiesta: %1$s"
2636
 
2637
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2638
  #, fuzzy
2639
  #| msgid "Find your App and click on the \"<b>Details</b>\" button"
2640
  msgid ""
@@ -2642,7 +1758,6 @@ msgid ""
2642
  "like a gear.)"
2643
  msgstr "Cerca la tua App e clicca sul bottone \"<b>Dettagli</b>\""
2644
 
2645
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2646
  #, fuzzy
2647
  #| msgid ""
2648
  #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
@@ -2650,14 +1765,11 @@ msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2650
  msgstr ""
2651
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
2652
 
2653
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2654
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2655
  #, fuzzy, php-format
2656
  #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
2657
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
2658
  msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
2659
 
2660
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:22
2661
  #, fuzzy, php-format
2662
  #| msgid ""
2663
  #| "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
@@ -2668,7 +1780,6 @@ msgstr ""
2668
  "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
2669
  "%2$s</b>."
2670
 
2671
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2672
  msgid ""
2673
  "If you don't have a developer account yet, please apply one by filling all "
2674
  "the required details! This is required for the next steps!"
@@ -2676,7 +1787,6 @@ msgstr ""
2676
  "Se non hai ancora un account sviluppatore, creane uno compilando tutti i "
2677
  "dettagli richiesti! Questo sarà necessario per i prossimi passi!"
2678
 
2679
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2680
  #, php-format
2681
  msgid ""
2682
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
@@ -2685,25 +1795,21 @@ msgstr ""
2685
  "Una volta il tuo account sviluppatore sarà completo, naviga indietro a <b>"
2686
  "%s</b> se non sei già lì!"
2687
 
2688
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2689
  #, fuzzy, php-format
2690
  #| msgid "Click on \"<b>Save</b>\""
2691
  msgid "Click on \"<b>%s</b>\"!"
2692
  msgstr "Clicca su \"<b>Salva</b>\""
2693
 
2694
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2695
  msgid ""
2696
  "Name your project, and go through the basic setup. You’ll need to select "
2697
  "your use case, give a description and enter a name for the App as well."
2698
  msgstr ""
2699
 
2700
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2701
  #, fuzzy, php-format
2702
  #| msgid "Click \"<b>Edit</b>\"."
2703
  msgid "Click \"<b>%s</b>\"!"
2704
  msgstr "Clicca \"<b>Modifica</b>\"."
2705
 
2706
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2707
  #, php-format
2708
  msgid ""
2709
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
@@ -2711,14 +1817,12 @@ msgid ""
2711
  "press \"<b>Save Changes</b>\"."
2712
  msgstr ""
2713
 
2714
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2715
  #, php-format
2716
  msgid ""
2717
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2718
  "\" section click on the name of your App."
2719
  msgstr ""
2720
 
2721
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2722
  #, fuzzy, php-format
2723
  #| msgid ""
2724
  #| "Name your project and then click on the \"<b>Create</b>\" button again"
@@ -2727,13 +1831,11 @@ msgstr ""
2727
  "Inserisci un nome per il tuo progetto e poi clicca di nuovo sul bottone "
2728
  "\"<b>Crea</b>\""
2729
 
2730
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2731
  #, fuzzy, php-format
2732
  #| msgid "Choose the \"<b>OAuth client ID</b>\" option."
2733
  msgid "Switch on the \"<b>%s</b>\" option."
2734
  msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
2735
 
2736
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:39
2737
  #, fuzzy, php-format
2738
  #| msgid ""
2739
  #| "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</"
@@ -2742,7 +1844,6 @@ msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2742
  msgstr ""
2743
  "Inserisci l'URL del tuo sito nel campo \"<b>Home Page URL</b>\": <b>%s</b>"
2744
 
2745
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:40
2746
  #, php-format
2747
  msgid ""
2748
  "If you want to get the email address as well, then don’t forget to enable "
@@ -2750,86 +1851,66 @@ msgid ""
2750
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
2751
  msgstr ""
2752
 
2753
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:41
2754
  #, fuzzy, php-format
2755
  #| msgid "Click on \"<b>Save</b>\""
2756
  msgid "Click on \"<b>%s</b>\"."
2757
  msgstr "Clicca su \"<b>Salva</b>\""
2758
 
2759
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:42
2760
  #, php-format
2761
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2762
  msgstr ""
2763
 
2764
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2765
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2766
  msgid "API Key"
2767
  msgstr "API Key"
2768
 
2769
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2770
  msgid "API secret key"
2771
  msgstr "API secret key"
2772
 
2773
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2774
  msgid "Profile image size"
2775
  msgstr "Dimensioni immagine profilo"
2776
 
2777
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2778
  msgid "Original"
2779
  msgstr "Originale"
2780
 
2781
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
2782
  msgid "Continue with <b>Twitter</b>"
2783
  msgstr "Continua con <b>Twitter</b>"
2784
 
2785
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2786
  #, fuzzy
2787
  #| msgid "Continue with <b>Twitter</b>"
2788
  msgid "Sign up with <b>Twitter</b>"
2789
  msgstr "Continua con <b>Twitter</b>"
2790
 
2791
- #: nextend-facebook-connect/providers/twitter/twitter.php:72
2792
  msgid "Link account with <b>Twitter</b>"
2793
  msgstr "Collega account con <b>Twitter</b>"
2794
 
2795
- #: nextend-facebook-connect/providers/twitter/twitter.php:73
2796
  msgid "Unlink account from <b>Twitter</b>"
2797
  msgstr "Scollega account da <b>Twitter</b>"
2798
 
2799
- #: nextend-facebook-connect/widget.php:10
2800
  #, php-format
2801
  msgid "%s Buttons"
2802
  msgstr "%s Bottoni"
2803
 
2804
- #: nextend-facebook-connect/widget.php:30
2805
  msgid "Title:"
2806
  msgstr "Titolo:"
2807
 
2808
- #: nextend-facebook-connect/widget.php:38
2809
  msgid "Button style:"
2810
  msgstr "Stile bottone:"
2811
 
2812
- #: nextend-facebook-connect/widget.php:53
2813
  msgid "Button align:"
2814
  msgstr "Allineamento bottone:"
2815
 
2816
- #: nextend-facebook-connect/widget.php:85
2817
  msgid "Show link buttons"
2818
  msgstr "Mostra bottoni di collegamento"
2819
 
2820
- #: nextend-facebook-connect/widget.php:94
2821
  msgid "Show unlink buttons"
2822
  msgstr "Mostra bottoni di scollegamento"
2823
 
2824
- #: nextend-social-login-pro/class-provider-extension.php:117
2825
  msgid "Social login is not allowed with this role!"
2826
  msgstr "L'accesso con Social Login non è consentito con questo ruolo!"
2827
 
2828
- #: nextend-social-login-pro/class-provider-extension.php:213
2829
  msgid "Please enter a username."
2830
  msgstr "Per favore inserisci uno username."
2831
 
2832
- #: nextend-social-login-pro/class-provider-extension.php:216
2833
  msgid ""
2834
  "This username is invalid because it uses illegal characters. Please enter a "
2835
  "valid username."
@@ -2837,7 +1918,6 @@ msgstr ""
2837
  "Questo username non è valido perché contiene caratteri non consentiti. Per "
2838
  "favore inserisci uno username valido."
2839
 
2840
- #: nextend-social-login-pro/class-provider-extension.php:222
2841
  #, fuzzy
2842
  #| msgid "This username is already registered. Please choose another one."
2843
  msgid ""
@@ -2845,29 +1925,24 @@ msgid ""
2845
  "another one."
2846
  msgstr "Questo username è già registrato. Per favore scegline un altro."
2847
 
2848
- #: nextend-social-login-pro/class-provider-extension.php:229
2849
  #, fuzzy
2850
  #| msgid "Sorry, that username is not allowed."
2851
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
2852
  msgstr "Mi spiace, quello username non è consentito."
2853
 
2854
- #: nextend-social-login-pro/class-provider-extension.php:247
2855
  msgid "Username"
2856
  msgstr "Username"
2857
 
2858
- #: nextend-social-login-pro/class-provider-extension.php:300
2859
  #, fuzzy
2860
  #| msgid "<strong>ERROR</strong>: Please enter a password."
2861
  msgid "<strong>Error</strong>: Please enter an email address."
2862
  msgstr "<strong>ERRORE</strong>: Per favore inserisci una password."
2863
 
2864
- #: nextend-social-login-pro/class-provider-extension.php:303
2865
  #, fuzzy
2866
  #| msgid "The email address isn&#8217;t correct."
2867
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
2868
  msgstr "L'indirizzo email non è corretto."
2869
 
2870
- #: nextend-social-login-pro/class-provider-extension.php:307
2871
  #, fuzzy
2872
  #| msgid "This email is already registered, please choose another one."
2873
  msgid ""
@@ -2875,17 +1950,14 @@ msgid ""
2875
  "another one."
2876
  msgstr "Questa email è già registrata, per favore scegline un'altra."
2877
 
2878
- #: nextend-social-login-pro/class-provider-extension.php:327
2879
  msgid "Registration confirmation will be emailed to you."
2880
  msgstr "La conferma di registrazione ti sarà inviata per email."
2881
 
2882
- #: nextend-social-login-pro/class-provider-extension.php:386
2883
  #, fuzzy
2884
  #| msgid "<strong>ERROR</strong>: Please enter a password."
2885
  msgid "<strong>Error</strong>: Please enter a password."
2886
  msgstr "<strong>ERRORE</strong>: Per favore inserisci una password."
2887
 
2888
- #: nextend-social-login-pro/class-provider-extension.php:392
2889
  #, fuzzy
2890
  #| msgid ""
2891
  #| "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
@@ -2894,7 +1966,6 @@ msgstr ""
2894
  "<strong>ERRORE</strong>: Le password non possono contenere il carattere \"\\"
2895
  "\"."
2896
 
2897
- #: nextend-social-login-pro/class-provider-extension.php:398
2898
  #, fuzzy
2899
  #| msgid ""
2900
  #| "<strong>ERROR</strong>: Please enter the same password in both password "
@@ -2906,23 +1977,18 @@ msgstr ""
2906
  "<strong>ERRORE</strong>: Per favore inserisci la stessa password in entrambi "
2907
  "i campi."
2908
 
2909
- #: nextend-social-login-pro/class-provider-extension.php:415
2910
  msgid "Password"
2911
  msgstr "Password"
2912
 
2913
- #: nextend-social-login-pro/class-provider-extension.php:425
2914
  msgid "Strength indicator"
2915
  msgstr "Indicatore di forza"
2916
 
2917
- #: nextend-social-login-pro/class-provider-extension.php:430
2918
  msgid "Confirm use of weak password"
2919
  msgstr "Conferma l'utilizzo di una password debole"
2920
 
2921
- #: nextend-social-login-pro/class-provider-extension.php:436
2922
  msgid "Confirm password"
2923
  msgstr "Conferma password"
2924
 
2925
- #: nextend-social-login-pro/class-provider-extension.php:448
2926
  #, php-format
2927
  msgid ""
2928
  "This email is already registered, please login in to your account to link "
@@ -2930,31 +1996,25 @@ msgid ""
2930
  msgstr ""
2931
  "Questa email è già registrata, per favore accedi al tuo account con %1$s."
2932
 
2933
- #: nextend-social-login-pro/nextend-social-login-pro.php:104
2934
  #, php-format
2935
  msgid "Please install and activate %1$s to use the %2$s"
2936
  msgstr "Per favore installa e attiva %1$s per usare %2$s"
2937
 
2938
- #: nextend-social-login-pro/nextend-social-login-pro.php:118
2939
  msgid "Network Activate"
2940
  msgstr ""
2941
 
2942
- #: nextend-social-login-pro/nextend-social-login-pro.php:130
2943
  msgid "Install now!"
2944
  msgstr "Installa ora!"
2945
 
2946
- #: nextend-social-login-pro/nextend-social-login-pro.php:826
2947
  msgid "Social Providers"
2948
  msgstr "Social Provider"
2949
 
2950
- #: nextend-social-login-pro/provider-extensions/facebook.php:74
2951
  #, php-format
2952
  msgid ""
2953
  "The Facebook Sync data needs an approved %1$s and your App must use the "
2954
  "latest %2$s version!"
2955
  msgstr ""
2956
 
2957
- #: nextend-social-login-pro/provider-extensions/google.php:187
2958
  #, php-format
2959
  msgid ""
2960
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2963,14 +2023,10 @@ msgstr ""
2963
  "Molte di queste informazioni possono essere recuperate quando il campo è "
2964
  "markato come Pubblico sulla pagina utente %s!"
2965
 
2966
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2967
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2968
  #, php-format
2969
  msgid "Visit %s"
2970
  msgstr "Visita %s"
2971
 
2972
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2973
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2974
  msgid ""
2975
  "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
2976
  "select \"<b>Web Settings</b>\" option."
@@ -2978,13 +2034,9 @@ msgstr ""
2978
  "Sul lato destro, sotto \"<b>Gestisci</b>\", vai sull'icona ad ingranaggio e "
2979
  "seleziona l'opzione \"<b>Impostazioni Web</b>\"."
2980
 
2981
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2982
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2983
  msgid "Click \"<b>Edit</b>\"."
2984
  msgstr "Clicca \"<b>Modifica</b>\"."
2985
 
2986
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:15
2987
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
2988
  #, fuzzy
2989
  #| msgid ""
2990
  #| "Add the following URL to the \"<b>Allowed Return URLs</b>\" field <b>%s</"
@@ -2994,13 +2046,6 @@ msgstr ""
2994
  "Aggiungi l'url seguente alle \"<b>URL di Ritorno consentite</b>\" campo <b>"
2995
  "%s</b> "
2996
 
2997
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
2998
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2999
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:10
3000
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:10
3001
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
3002
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
3003
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10
3004
  #, php-format
3005
  msgid ""
3006
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -3015,24 +2060,20 @@ msgstr ""
3015
  "vai sopra \"Impostazioni\" e configura i \"%2$s\" and \"%3$s\" ottenuti "
3016
  "secondo la tua App %1$s."
3017
 
3018
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
3019
  msgid ""
3020
  "If you don't have a Security Profile yet, you'll need to create one. You can "
3021
  "do this by clicking on the orange \"<b>Create a New Security Profile</b>\" "
3022
  "button on the left side."
3023
  msgstr ""
3024
 
3025
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
3026
  msgid ""
3027
  "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
3028
  "\" and \"<b>Consent Privacy Notice URL</b>\"."
3029
  msgstr ""
3030
 
3031
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
3032
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
3033
  msgstr "Una volta compilati tutti i campi richiesti, clicca \"<b>Salva</b>\"."
3034
 
3035
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
3036
  #, php-format
3037
  msgid ""
3038
  "Fill \"<b>Allowed Origins</b>\" with the url of your homepage, probably: <b>"
@@ -3041,12 +2082,9 @@ msgstr ""
3041
  "Compila \"<b>Origini Consentite</b>\" con l'url della tua homepage, "
3042
  "probabilmente: <b>%s</b>"
3043
 
3044
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:45
3045
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:41
3046
  msgid "When all fields are filled, click \"<b>Save</b>\"."
3047
  msgstr "Quando tutti i campi sono compilati, clicca \"<b>Salva</b>\"."
3048
 
3049
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:46
3050
  msgid ""
3051
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" at the "
3052
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
@@ -3054,42 +2092,32 @@ msgstr ""
3054
  "Cerca i necessari \"<b>Client ID</b>\" e \"<b>Client Secret</b>\" al centro "
3055
  "della pagina, sotto la tab \"<b>Settaggi Web</b>\"."
3056
 
3057
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
3058
  msgid "Continue with <b>Amazon</b>"
3059
  msgstr "Continua con <b>Amazon</b>"
3060
 
3061
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
3062
  #, fuzzy
3063
  #| msgid "Continue with <b>Amazon</b>"
3064
  msgid "Sign up with <b>Amazon</b>"
3065
  msgstr "Continua con <b>Amazon</b>"
3066
 
3067
- #: nextend-social-login-pro/providers/amazon/amazon.php:42
3068
  msgid "Link account with <b>Amazon</b>"
3069
  msgstr "Collega account con <b>Amazon</b>"
3070
 
3071
- #: nextend-social-login-pro/providers/amazon/amazon.php:43
3072
  msgid "Unlink account from <b>Amazon</b>"
3073
  msgstr "Scollega account da <b>Amazon</b>"
3074
 
3075
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
3076
  msgid "Click on the name of your service."
3077
  msgstr "Clicca sul nome del tuo servizio."
3078
 
3079
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22
3080
  msgid ""
3081
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
3082
  msgstr ""
3083
  "Clicca il bottone \"<b>Configura</b>\" vicino a \"<b>Accedi con Apple</b>\"."
3084
 
3085
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23
3086
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56
3087
  #, php-format
3088
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
3089
  msgstr ""
3090
 
3091
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24
3092
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:82
3093
  #, php-format
3094
  msgid ""
3095
  "Fill the \"<b>Domains and Subdomains</b>\" field with your domain name "
@@ -3098,14 +2126,11 @@ msgstr ""
3098
  "Compila il campo \"<b>Domini e Sottodomini</b>\" col nome del tuo dominio, "
3099
  "probabilmente: <b>%s</b>"
3100
 
3101
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:27
3102
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:85
3103
  #, fuzzy
3104
  #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
3105
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3106
  msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
3107
 
3108
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:35
3109
  msgid ""
3110
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
3111
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
@@ -3113,7 +2138,6 @@ msgstr ""
3113
  "Premi \"<b>Avanti</b>\" poi \"<b>Fatto</b>\" e infine sul bottone "
3114
  "\"<b>Continua</b>\" e poi su \"<b>Salva</b>\"!"
3115
 
3116
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30
3117
  #, php-format
3118
  msgid ""
3119
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -3128,7 +2152,6 @@ msgstr ""
3128
  "su \"Impostazioni\" e configura i \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s\" "
3129
  "ottenuti secondo la tua App %1$s."
3130
 
3131
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37
3132
  msgid ""
3133
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
3134
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
@@ -3136,36 +2159,30 @@ msgid ""
3136
  "App!"
3137
  msgstr ""
3138
 
3139
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
3140
  msgid ""
3141
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
3142
  "b>!"
3143
  msgstr ""
3144
  "Accertati di avere <b>SSL</b>, perché <b>Apple consentirà solo url HTTPS</b>!"
3145
 
3146
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43
3147
  msgid "1.) Create the associated App:"
3148
  msgstr "1.) Crea l'App associata:"
3149
 
3150
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45
3151
  #, php-format
3152
  msgid ""
3153
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
3154
  "option and click the \"Continue\" button."
3155
  msgstr ""
3156
 
3157
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46
3158
  #, php-format
3159
  msgid ""
3160
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
3161
  "\"<b>Continue</b>\" button."
3162
  msgstr ""
3163
 
3164
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47
3165
  msgid "Enter a \"<b>Description</b>\""
3166
  msgstr "Inserisci una \"<b>Descrizione</b>\""
3167
 
3168
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:48
3169
  #, php-format
3170
  msgid ""
3171
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
@@ -3176,7 +2193,6 @@ msgstr ""
3176
  "inserisci il nome del tuo dominio come reverse-domain, col nome dell'app "
3177
  "alla fine: <b>%s.nslapp</b>"
3178
 
3179
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:49
3180
  msgid ""
3181
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
3182
  "b>\" option."
@@ -3184,7 +2200,6 @@ msgstr ""
3184
  "Sotto la sezione \"<b>Capacità</b>\", spunta l'opzione \"<b>Accedi con "
3185
  "Apple</b>\"."
3186
 
3187
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50
3188
  msgid ""
3189
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
3190
  "\"<b>Register</b>\" button."
@@ -3192,20 +2207,16 @@ msgstr ""
3192
  "Scrolla su e clicca sul bottone \"<b>Continua</b>\", e dopo clicca sul "
3193
  "bottone \"<b>Registra</b>\"."
3194
 
3195
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53
3196
  msgid "2.) Create the Key:"
3197
  msgstr "2.) Crea la Chiave:"
3198
 
3199
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55
3200
  #, php-format
3201
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
3202
  msgstr "Sulla sinistra, clicca sulla tab \"<b>%s</b>\"."
3203
 
3204
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57
3205
  msgid "Enter a name in the <b>Key Name</b> field."
3206
  msgstr "Inserisci un nome nel campo <b>Nome Chiave</b> ."
3207
 
3208
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58
3209
  msgid ""
3210
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
3211
  "b>\"."
@@ -3213,7 +2224,6 @@ msgstr ""
3213
  "Spunta l'opzione \"<b>Accedi con Apple</b>\", poi clicca su \"<b>Configura</"
3214
  "b>\"."
3215
 
3216
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:59
3217
  msgid ""
3218
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
3219
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
@@ -3222,7 +2232,6 @@ msgstr ""
3222
  "Se hai App multiple, nel campo \"<b>Scegli ID App Primaria</b>\" "
3223
  "<b>seleziona l'App che hai creato</b>, poi clicca \"<b>Salva</b>\"."
3224
 
3225
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:60
3226
  msgid ""
3227
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
3228
  "\" button."
@@ -3230,15 +2239,12 @@ msgstr ""
3230
  "Concludi premendo il bottone \"<b>Continua</b>\" e poi il bottone "
3231
  "\"<b>Register</b>\"."
3232
 
3233
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61
3234
  msgid "<b>Don't download the key yet!</b>"
3235
  msgstr "<b>Non scaricare la chiave ancora!</b>"
3236
 
3237
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64
3238
  msgid "3.) Create the Service:"
3239
  msgstr "3.) Crea il Servizio:"
3240
 
3241
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66
3242
  #, php-format
3243
  msgid ""
3244
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
@@ -3247,18 +2253,15 @@ msgstr ""
3247
  "Vai alla sezione \"<b>%1$s</b>\", che troverai all'interno della tab \"%2$s"
3248
  "\"."
3249
 
3250
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:67
3251
  #, php-format
3252
  msgid ""
3253
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
3254
  "option and click the \"<b>Continue</b>\" button."
3255
  msgstr ""
3256
 
3257
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:68
3258
  msgid "Enter a \"<b>Description</b>\"."
3259
  msgstr "Inserisci una \"<b>Descrizione</b>\"."
3260
 
3261
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69
3262
  #, php-format
3263
  msgid ""
3264
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
@@ -3267,24 +2270,20 @@ msgstr ""
3267
  "Nel campo \"<b>Identificatore</b>\" inserisci il nome del tuo dominio come "
3268
  "reverse-domain, col nome del client alla fine: <b>%s.nslclient</b>"
3269
 
3270
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72
3271
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
3272
  msgstr ""
3273
  "<b>Nota:</b> Questo sarà usato come Identificatore di Servizio "
3274
  "successivamente!"
3275
 
3276
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:75
3277
  msgid ""
3278
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
3279
  msgstr "Premi il bottone \"<b>Continua</b>\" e poi quello \"<b>Registra</b>\"."
3280
 
3281
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76
3282
  #, php-format
3283
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
3284
  msgstr ""
3285
  "Nella sezione \"<b>%1$s</b>\", clicca il servizio che hai appena creato."
3286
 
3287
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79
3288
  msgid ""
3289
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
3290
  "b>\" button next to it."
@@ -3292,7 +2291,6 @@ msgstr ""
3292
  "Spunta l'opzione \"<b>Accedi con Apple</b>\" e clicca il bottone vicino "
3293
  "\"<b>Configura</b>\"."
3294
 
3295
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:81
3296
  msgid ""
3297
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
3298
  "App what you just created."
@@ -3300,7 +2298,6 @@ msgstr ""
3300
  "Se hai App multiple, nel campo \"Primary App ID\" seleziona l'App che hai "
3301
  "appena creato."
3302
 
3303
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:95
3304
  #, fuzzy
3305
  #| msgid ""
3306
  #| "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" "
@@ -3308,7 +2305,6 @@ msgstr ""
3308
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
3309
  msgstr "Premi il bottone \"<b>Continua</b>\" e poi quello \"<b>Registra</b>\"."
3310
 
3311
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:96
3312
  msgid ""
3313
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
3314
  "button."
@@ -3316,37 +2312,28 @@ msgstr ""
3316
  "Concludi premendo il bottone \"<b>Continua</b>\" e quindi sul bottone "
3317
  "\"<b>Salva</b>\"."
3318
 
3319
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99
3320
  msgid "4.) Configure Nextend Social Login with your credentials:"
3321
  msgstr "4.) Configura Nextend Social Login con le tue credenziali:"
3322
 
3323
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:101
3324
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
3325
  msgstr "Vai sulla tab Nextend Social Login > Provider > Apple > Impostazioni."
3326
 
3327
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:102
3328
  msgid "<strong><u>Private Key ID:</u></strong>"
3329
  msgstr "<strong><u>ID Chiave Privata:</u></strong>"
3330
 
3331
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:104
3332
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
3333
  #, php-format
3334
  msgid "Navigate to: <b>%s</b>"
3335
  msgstr "Naviga a: <b>%s</b>"
3336
 
3337
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105
3338
  msgid "Click on the <b>name of your Key</b>."
3339
  msgstr "Chicca sul <b>nome della tua Chiave</b>."
3340
 
3341
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:106
3342
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
3343
  msgstr "Troverai l'\"<b>ID Chiave Privata</b>\" sotto \"<b>ID Chiave</b>\"."
3344
 
3345
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:109
3346
  msgid "<strong><u>Private Key:</u></strong>"
3347
  msgstr "<strong><u>Chiave Privata:</u></strong>"
3348
 
3349
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111
3350
  msgid ""
3351
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
3352
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
@@ -3356,7 +2343,6 @@ msgstr ""
3356
  "volta scaricato il file, non sarà più disponibile, quindi <b>accertati di "
3357
  "conservare questo file al sicuro</b>!</u> "
3358
 
3359
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:112
3360
  msgid ""
3361
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
3362
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
@@ -3366,11 +2352,9 @@ msgstr ""
3366
  "<b><u>copia tutti i suoi contenuti</u></b> e <b>incollali</b> nel campo "
3367
  "\"<b>Chiave Privata</b>\" di Nextend Social Login."
3368
 
3369
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115
3370
  msgid "<strong><u>Team Identifier:</u></strong>"
3371
  msgstr "<strong><u>Identificatore Team:</u></strong>"
3372
 
3373
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:117
3374
  msgid ""
3375
  "A 10 character long identifier, what you can find on the <b>top-right "
3376
  "corner, just under your name</b>."
@@ -3378,11 +2362,9 @@ msgstr ""
3378
  "Un identificatore lungo 10 caratteri, che puoi trovare <b>nell'angolo "
3379
  "superiore destro, proprio sotto il tuo nome</b>."
3380
 
3381
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:120
3382
  msgid "<strong><u>Service Identifier:</u></strong>"
3383
  msgstr "<strong><u>Identificatore Servizio:</u></strong>"
3384
 
3385
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:123
3386
  #, php-format
3387
  msgid ""
3388
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
@@ -3393,7 +2375,6 @@ msgstr ""
3393
  "il servizio come da suggerimenti, probabilmente finirà con .nslclient, per "
3394
  "esempio.: <b>%s.nslclient</b>"
3395
 
3396
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:126
3397
  msgid ""
3398
  "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
3399
  "button."
@@ -3401,11 +2382,9 @@ msgstr ""
3401
  "Una volta compilati tutti i campi, clicca sul bottone \"<b>Genera Token</b>"
3402
  "\"."
3403
 
3404
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:127
3405
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
3406
  msgstr "Infine <b>verifica le impostazioni</b> e <b>abilita il provider</b>!"
3407
 
3408
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:128
3409
  msgid ""
3410
  "When you need to change your credentials for some reason, then you must "
3411
  "delete the token, copy the new credentials and generate a new token!"
@@ -3413,71 +2392,53 @@ msgstr ""
3413
  "Se dovessi cambiare le tue credenziali per qualsiasi ragione, devi "
3414
  "cancellare il token, copiare le nuove credenziali e generare un nuovo token!"
3415
 
3416
- #: nextend-social-login-pro/providers/apple/admin/settings.php:48
3417
  msgid "Delete credentials"
3418
  msgstr "Cancella credenziali"
3419
 
3420
- #: nextend-social-login-pro/providers/apple/admin/settings.php:78
3421
  msgid "Private Key ID"
3422
  msgstr "ID Chiave Privata"
3423
 
3424
- #: nextend-social-login-pro/providers/apple/admin/settings.php:89
3425
  msgid "Private Key"
3426
  msgstr "Chiave Privata"
3427
 
3428
- #: nextend-social-login-pro/providers/apple/admin/settings.php:98
3429
  msgid "Team Identifier"
3430
  msgstr "Identificatore Team"
3431
 
3432
- #: nextend-social-login-pro/providers/apple/admin/settings.php:106
3433
  msgid "Service Identifier"
3434
  msgstr "Identificatore Servizio"
3435
 
3436
- #: nextend-social-login-pro/providers/apple/admin/settings.php:116
3437
  msgid "Generate Token"
3438
  msgstr "Genera Token"
3439
 
3440
- #: nextend-social-login-pro/providers/apple/apple.php:67
3441
  msgid "Continue with <b>Apple</b>"
3442
  msgstr "Continua con <b>Apple</b>"
3443
 
3444
- #: nextend-social-login-pro/providers/apple/apple.php:68
3445
  #, fuzzy
3446
  #| msgid "Continue with <b>Apple</b>"
3447
  msgid "Sign up with <b>Apple</b>"
3448
  msgstr "Continua con <b>Apple</b>"
3449
 
3450
- #: nextend-social-login-pro/providers/apple/apple.php:69
3451
  msgid "Link account with <b>Apple</b>"
3452
  msgstr "Collega account con <b>Apple</b>"
3453
 
3454
- #: nextend-social-login-pro/providers/apple/apple.php:70
3455
  msgid "Unlink account from <b>Apple</b>"
3456
  msgstr "Scollega account da <b>Apple</b>"
3457
 
3458
- #: nextend-social-login-pro/providers/apple/apple.php:164
3459
  #, php-format
3460
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3461
  msgstr ""
3462
  "C'è stato un errore durante la memorizzazione del timestamp di scadenza: %1$s"
3463
 
3464
- #: nextend-social-login-pro/providers/apple/apple.php:168
3465
- #: nextend-social-login-pro/providers/apple/apple.php:266
3466
- #: nextend-social-login-pro/providers/apple/apple.php:281
3467
- #: nextend-social-login-pro/providers/apple/apple.php:325
3468
  #, php-format
3469
  msgid "Token generation failed: %1$s"
3470
  msgstr "Generazione del Token fallita: %1$s"
3471
 
3472
- #: nextend-social-login-pro/providers/apple/apple.php:168
3473
  msgid "Please check your credentials!"
3474
  msgstr "Gentilmente verifica le tue credenziali!"
3475
 
3476
- #: nextend-social-login-pro/providers/apple/apple.php:266
3477
  msgid "Private key format is not valid!"
3478
  msgstr "Il formato Chiave Privata non è valido!"
3479
 
3480
- #: nextend-social-login-pro/providers/apple/apple.php:292
3481
  #, php-format
3482
  msgid ""
3483
  "%s detected that your Apple credentials have expired. Please delete the "
@@ -3486,17 +2447,13 @@ msgstr ""
3486
  "%s ha rilevato che le tue credenziali Apple sono scadute. Gentilmente "
3487
  "elimina le credenziali correnti e generane delle nuove!"
3488
 
3489
- #: nextend-social-login-pro/providers/apple/apple.php:294
3490
  msgid "Apple Credentials"
3491
  msgstr "Credenziali Apple"
3492
 
3493
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
3494
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
3495
  #, php-format
3496
  msgid "Click on the name of your %s App."
3497
  msgstr "Clicca sul nome della tua %s App."
3498
 
3499
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:11
3500
  msgid ""
3501
  "Select the \"<b>Settings</b>\" tab and scroll down to the Authentication "
3502
  "section!"
@@ -3504,20 +2461,15 @@ msgstr ""
3504
  "Seleziona la tab \"<b>Settaggi</b>\" e scrolla giù alla sezione "
3505
  "Autenticazione!"
3506
 
3507
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
3508
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:27
3509
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:33
3510
  #, fuzzy
3511
  #| msgid ""
3512
  #| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
3513
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3514
  msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
3515
 
3516
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:22
3517
  msgid "Click on the \"<b>Save Changes</b>\" button."
3518
  msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
3519
 
3520
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
3521
  msgid ""
3522
  "Click on the \"<b>Registering new application</b>\" button under the "
3523
  "Applications tab."
@@ -3525,13 +2477,11 @@ msgstr ""
3525
  "Clicca sul bottone \"<b>Registra nuova applicazione</b>\" sotto la tab "
3526
  "Applicazioni."
3527
 
3528
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
3529
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
3530
  msgstr ""
3531
  "Inserisci una \"<b>Etichetta</b>\" e una \"<b>Descrizione</b>\" per la tua "
3532
  "App."
3533
 
3534
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
3535
  #, php-format
3536
  msgid ""
3537
  "Fill \"<b>Website</b>\" with the url of your homepage, probably: <b>%s</b>"
@@ -3539,7 +2489,6 @@ msgstr ""
3539
  "Compila \"<b>Sito Internet</b>\" con la url della tua homepage, "
3540
  "probabilmente: <b>%s</b>"
3541
 
3542
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
3543
  msgid ""
3544
  "Complete the Human test and click the \"<b>Register my application</b>\" "
3545
  "button."
@@ -3547,13 +2496,11 @@ msgstr ""
3547
  "Completa il \"Test Umano\" e clicca il bottone \"<b>Registra la mia "
3548
  "applicazione</b>\"."
3549
 
3550
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
3551
  #, php-format
3552
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
3553
  msgstr ""
3554
  "Compila il campo \"<b>Domini</b>\" col nome del tuo dominio, come: <b>%s</b>"
3555
 
3556
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
3557
  msgid ""
3558
  "Select \"<b>Read only</b>\" as Default Access under the Authentication "
3559
  "section."
@@ -3561,15 +2508,12 @@ msgstr ""
3561
  "Seleziona \"<b>Solo lettura</b>\" come Accesso Default nella sezione "
3562
  "Authentication."
3563
 
3564
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:35
3565
  msgid "Click on the \"<b>Save Changes</b>\" button!"
3566
  msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"!"
3567
 
3568
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:36
3569
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
3570
  msgstr "Naviga alla tab \"<b>Dettagli</b>\" della tua Applicazione!"
3571
 
3572
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:37
3573
  msgid ""
3574
  "Here you can see your \"<b>API Key</b>\" and \"<b>API Secret</b>\". These "
3575
  "will be needed in the plugin's settings."
@@ -3577,40 +2521,31 @@ msgstr ""
3577
  "Qui puoi vedere la tua \"<b>Chiave API</b>\" e \"<b>API Secret</b>\". Queste "
3578
  "serviranno nei settaggi del plugin."
3579
 
3580
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
3581
  msgid "API Secret"
3582
  msgstr "API Secret"
3583
 
3584
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
3585
  msgid "Continue with <b>Disqus</b>"
3586
  msgstr "Continua con <b>Disqus</b>"
3587
 
3588
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3589
  #, fuzzy
3590
  #| msgid "Continue with <b>Disqus</b>"
3591
  msgid "Sign up with <b>Disqus</b>"
3592
  msgstr "Continua con <b>Disqus</b>"
3593
 
3594
- #: nextend-social-login-pro/providers/disqus/disqus.php:89
3595
  msgid "Link account with <b>Disqus</b>"
3596
  msgstr "Collega account con <b>Disqus</b>"
3597
 
3598
- #: nextend-social-login-pro/providers/disqus/disqus.php:90
3599
  msgid "Unlink account from <b>Disqus</b>"
3600
  msgstr "Scollega account da <b>Disqus</b>"
3601
 
3602
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
3603
  #, php-format
3604
  msgid "Click on the name of the App you configured %s with."
3605
  msgstr "Clicca sul nome dell'App che hai configurato per %s."
3606
 
3607
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:11
3608
  #, php-format
3609
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
3610
  msgstr "Accertati che l'<b>URL della Homepage</b> coincida con: <b>%s</b>"
3611
 
3612
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:14
3613
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:25
3614
  #, fuzzy
3615
  #| msgid ""
3616
  #| "Add the following URL to the <b>Authorization callback URL</b> field: <b>"
@@ -3620,12 +2555,10 @@ msgstr ""
3620
  "Aggiungi questa URL nel campo della <b>Authorization callback URL</b>: <b>"
3621
  "%s</b>"
3622
 
3623
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:22
3624
  msgid "Press the <b>Update application</b> button to save the changes."
3625
  msgstr ""
3626
  "Clicca sul botton <b>Aggiorna applicatione</b>per salvare le modifiche."
3627
 
3628
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:19
3629
  #, php-format
3630
  msgid ""
3631
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
@@ -3634,7 +2567,6 @@ msgstr ""
3634
  "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
3635
  "%2$s</b>."
3636
 
3637
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:20
3638
  msgid ""
3639
  "Enter a name into the <b>Application name</b> field. Users will see this "
3640
  "name, when they authorize your app at the OAuth consent screen!"
@@ -3642,7 +2574,6 @@ msgstr ""
3642
  "Inserisci un nome nel campo <b>Nome Applicazione</b>. Gli utenti vedranno "
3643
  "questo nome, quando autorizzeranno la tua app nella schermata OAuth!"
3644
 
3645
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:21
3646
  #, php-format
3647
  msgid ""
3648
  "Fill <b>Homepage URL</b> with the url of your homepage, probably: <b>%s</b>"
@@ -3650,7 +2581,6 @@ msgstr ""
3650
  "Compila <b>Homepage URL</b> con l'url della tua homepage, probabilmente: <b>"
3651
  "%s</b>"
3652
 
3653
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:22
3654
  msgid ""
3655
  "In the <b>Description</b> field you should explain what this App will be "
3656
  "used for."
@@ -3658,11 +2588,9 @@ msgstr ""
3658
  "Nel campo <b>Descrizione</b> dovresti spiegare per cosa è impiegata questa "
3659
  "App."
3660
 
3661
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:33
3662
  msgid "Click the <b>Register application</b> button."
3663
  msgstr "Clicca il bottone <b>Regisstra applicazione</b>."
3664
 
3665
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:34
3666
  msgid ""
3667
  "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the middle "
3668
  "of the page. These will be needed in the plugin's settings!"
@@ -3670,50 +2598,41 @@ msgstr ""
3670
  "Cerca il <b>Client ID</b> and il <b>Client Secret</b>richiesti al centro "
3671
  "della pagina. Questi saranno necessari nei settaggi del plugin!"
3672
 
3673
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:37
3674
  #, php-format
3675
  msgid ""
3676
  "<b>Important note:</b> The email address is only retrievable, if there is a "
3677
  "public email address set at the %1$s profile page%2$s!"
3678
  msgstr ""
3679
 
3680
- #: nextend-social-login-pro/providers/github/github.php:125
3681
  msgid "Continue with <b>GitHub</b>"
3682
  msgstr "Continua con <b>GitHub</b>"
3683
 
3684
- #: nextend-social-login-pro/providers/github/github.php:126
3685
  #, fuzzy
3686
  #| msgid "Continue with <b>GitHub</b>"
3687
  msgid "Sign up with <b>GitHub</b>"
3688
  msgstr "Continua con <b>GitHub</b>"
3689
 
3690
- #: nextend-social-login-pro/providers/github/github.php:127
3691
  msgid "Link account with <b>GitHub</b>"
3692
  msgstr "Collega account con <b>GitHub</b>"
3693
 
3694
- #: nextend-social-login-pro/providers/github/github.php:128
3695
  msgid "Unlink account from <b>GitHub</b>"
3696
  msgstr "Scollega account da <b>GitHub</b>"
3697
 
3698
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:8
3699
  #, fuzzy, php-format
3700
  #| msgid "Navigate to %s"
3701
  msgid "Navigate to your %s"
3702
  msgstr "Naviga a %s"
3703
 
3704
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:10
3705
  #, php-format
3706
  msgid "Select your %s App and click on the LINE Login section."
3707
  msgstr ""
3708
 
3709
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:13
3710
  #, fuzzy
3711
  #| msgid ""
3712
  #| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
3713
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
3714
  msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
3715
 
3716
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:17
3717
  #, php-format
3718
  msgid ""
3719
  "Editing Live Apps are only possible with a %s. So please make sure you own "
@@ -3722,13 +2641,11 @@ msgstr ""
3722
  "La modifica delle Live Apps sono possibili solo con un %s. Gentilmente "
3723
  "accertati di possederne uno!"
3724
 
3725
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:19
3726
  #, fuzzy
3727
  #| msgid "Click the \"<b>Create</b>\" button!"
3728
  msgid "Click the \"<b>Create a new provider</b>\" button."
3729
  msgstr "Clicca il bottone\"<b>Crea</b>\"!"
3730
 
3731
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:20
3732
  #, fuzzy
3733
  #| msgid ""
3734
  #| "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
@@ -3738,7 +2655,6 @@ msgid ""
3738
  msgstr ""
3739
  "Compila il campo \"<b>Nome App</b>\" e clicca il bottone \"<b>Crea App</b>\"."
3740
 
3741
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:21
3742
  #, fuzzy
3743
  #| msgid ""
3744
  #| "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with "
@@ -3750,29 +2666,24 @@ msgstr ""
3750
  "Sotto la sezione \"<b>Capacità</b>\", spunta l'opzione \"<b>Accedi con "
3751
  "Apple</b>\"."
3752
 
3753
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:22
3754
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
3755
  msgstr ""
3756
 
3757
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:23
3758
  msgid ""
3759
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
3760
  "created."
3761
  msgstr ""
3762
 
3763
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:24
3764
  #, fuzzy
3765
  #| msgid "Click on \"<b>Save</b>\""
3766
  msgid "Select your \"<b>Region</b>\"."
3767
  msgstr "Clicca su \"<b>Salva</b>\""
3768
 
3769
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:25
3770
  msgid ""
3771
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
3772
  "description</b>\". These will appear on your Consent Screen!"
3773
  msgstr ""
3774
 
3775
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:26
3776
  #, fuzzy
3777
  #| msgid ""
3778
  #| "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with "
@@ -3782,7 +2693,6 @@ msgstr ""
3782
  "Sotto la sezione \"<b>Capacità</b>\", spunta l'opzione \"<b>Accedi con "
3783
  "Apple</b>\"."
3784
 
3785
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:27
3786
  #, fuzzy
3787
  #| msgid ""
3788
  #| "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
@@ -3794,13 +2704,11 @@ msgstr ""
3794
  "Leggi e acconsenti ai \"<b>Termini di Utilizzo delle API</b>\" poi clicca il "
3795
  "bottone \"<b>Crea App</b>\"!"
3796
 
3797
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:28
3798
  msgid ""
3799
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
3800
  "near the \"<b>Email address permission</b>\" label."
3801
  msgstr ""
3802
 
3803
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:29
3804
  #, fuzzy
3805
  #| msgid ""
3806
  #| "Complete the Human test and click the \"<b>Register my application</b>\" "
@@ -3810,19 +2718,16 @@ msgstr ""
3810
  "Completa il \"Test Umano\" e clicca il bottone \"<b>Registra la mia "
3811
  "applicazione</b>\"."
3812
 
3813
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:30
3814
  msgid ""
3815
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
3816
  "section."
3817
  msgstr ""
3818
 
3819
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:41
3820
  msgid ""
3821
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
3822
  "Channel!"
3823
  msgstr ""
3824
 
3825
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:42
3826
  #, fuzzy
3827
  #| msgid ""
3828
  #| "On the top of the page, you will find the necessary \"<b>Client ID</b>\" "
@@ -3837,70 +2742,52 @@ msgstr ""
3837
  "\"<b>Client Secret</b>\"! Questi ti serviranno nella configurazione del "
3838
  "plugin."
3839
 
3840
- #: nextend-social-login-pro/providers/line/admin/settings.php:26
3841
  msgid "Channel ID"
3842
  msgstr ""
3843
 
3844
- #: nextend-social-login-pro/providers/line/admin/settings.php:38
3845
  #, fuzzy
3846
  #| msgid "Client Secret"
3847
  msgid "Channel Secret"
3848
  msgstr "Client Secret"
3849
 
3850
- #: nextend-social-login-pro/providers/line/line.php:36
3851
  #, fuzzy
3852
  #| msgid "Continue with <b>LinkedIn</b>"
3853
  msgid "Continue with <b>Line</b>"
3854
  msgstr "Continua con <b>LinkedIn</b>"
3855
 
3856
- #: nextend-social-login-pro/providers/line/line.php:37
3857
  #, fuzzy
3858
  #| msgid "Continue with <b>LinkedIn</b>"
3859
  msgid "Sign up with <b>Line</b>"
3860
  msgstr "Continua con <b>LinkedIn</b>"
3861
 
3862
- #: nextend-social-login-pro/providers/line/line.php:38
3863
  #, fuzzy
3864
  #| msgid "Link account with <b>LinkedIn</b>"
3865
  msgid "Link account with <b>Line</b>"
3866
  msgstr "Collega account con <b>LinkedIn</b>"
3867
 
3868
- #: nextend-social-login-pro/providers/line/line.php:39
3869
  #, fuzzy
3870
  #| msgid "Unlink account from <b>LinkedIn</b>"
3871
  msgid "Unlink account from <b>Line</b>"
3872
  msgstr "Scollega account da <b>LinkedIn</b>"
3873
 
3874
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3875
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3876
  msgstr "Clicca sulla tua App e vai nella tab \"<b>Auth</b>\"."
3877
 
3878
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:13
3879
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
3880
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
3881
  #, fuzzy
3882
  #| msgid ""
3883
  #| "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
3884
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3885
  msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
3886
 
3887
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:21
3888
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:38
3889
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:22
3890
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:22
3891
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:21
3892
  msgid "Click on \"<b>Update</b>\" to save the changes"
3893
  msgstr "Clicca su \"<b>Aggiorna</b>\" per salvare le modifiche"
3894
 
3895
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
3896
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
3897
  msgstr "Cerca il bottone \"<b>Crea app</b>\" e cliccaci."
3898
 
3899
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
3900
  msgid "Enter the name of your App to the \"App name\" field."
3901
  msgstr "Inserisci il nome della tua App nel campo \"Nome App\"."
3902
 
3903
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
3904
  #, php-format
3905
  msgid ""
3906
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
@@ -3909,14 +2796,12 @@ msgstr ""
3909
  "Cerca la pagina della tua azienda nel campo \"<b>Azienda</b>\". Se non ne "
3910
  "hai ancora una, creane una nuova qui: %s"
3911
 
3912
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
3913
  msgid ""
3914
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
3915
  msgstr ""
3916
  "Inserisci l'URL della tua \"<b>Privacy policy</b>\" e carica un \"<b>logo "
3917
  "per l'App</b>\""
3918
 
3919
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
3920
  msgid ""
3921
  "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
3922
  "App</b>\" button!"
@@ -3924,7 +2809,6 @@ msgstr ""
3924
  "Leggi e acconsenti ai \"<b>Termini di Utilizzo delle API</b>\" poi clicca il "
3925
  "bottone \"<b>Crea App</b>\"!"
3926
 
3927
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24
3928
  msgid ""
3929
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
3930
  "tab."
@@ -3932,12 +2816,10 @@ msgstr ""
3932
  "Finirai nell'area delle impostazioni dell'App. Clicca sulla tab "
3933
  "\"<b>Prodotti</b>\"."
3934
 
3935
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25
3936
  #, php-format
3937
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
3938
  msgstr "Cerca <b>\"%s\"</b> e clicca \"<b>Seleziona</b>\"."
3939
 
3940
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:26
3941
  msgid ""
3942
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
3943
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
@@ -3947,11 +2829,9 @@ msgstr ""
3947
  "letto e accetto questi termini</b>\", in conclusione premi il bottone "
3948
  "\"<b>Aggiungi prodotto</b>\"."
3949
 
3950
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
3951
  msgid "Click on the \"<b>Auth</b>\" tab."
3952
  msgstr "Clicca sulla tab \"<b>Auth</b>\"."
3953
 
3954
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:30
3955
  #, fuzzy
3956
  #| msgid ""
3957
  #| "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to "
@@ -3963,7 +2843,6 @@ msgstr ""
3963
  "Cerca la sezione \"<b>OAuth 2.0 settings</b>\" e aggiungi l'URL seguente al "
3964
  "campo \"<b>Redirect URLs</b>\": <b>%s</b>"
3965
 
3966
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:39
3967
  msgid ""
3968
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" under "
3969
  "the Application credentials section, on the <b>Auth</b> tab."
@@ -3971,42 +2850,33 @@ msgstr ""
3971
  "Cerca il \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" richiesti sotto "
3972
  "la sezione Credenziali applicazione, nella tab <b>Auth</b>."
3973
 
3974
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3975
  msgid "Continue with <b>LinkedIn</b>"
3976
  msgstr "Continua con <b>LinkedIn</b>"
3977
 
3978
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3979
  #, fuzzy
3980
  #| msgid "Continue with <b>LinkedIn</b>"
3981
  msgid "Sign up with <b>LinkedIn</b>"
3982
  msgstr "Continua con <b>LinkedIn</b>"
3983
 
3984
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3985
  msgid "Link account with <b>LinkedIn</b>"
3986
  msgstr "Collega account con <b>LinkedIn</b>"
3987
 
3988
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3989
  msgid "Unlink account from <b>LinkedIn</b>"
3990
  msgstr "Scollega account da <b>LinkedIn</b>"
3991
 
3992
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:9
3993
  #, fuzzy, php-format
3994
  #| msgid "Log in with your %s credentials if you are not logged in yet"
3995
  msgid "Log in with your %s credentials if you are not logged in yet."
3996
  msgstr "Accedi con le tue credenziali %s se non sei ancora loggato"
3997
 
3998
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:10
3999
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:19
4000
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
4001
  msgstr ""
4002
 
4003
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:11
4004
  #, fuzzy, php-format
4005
  #| msgid "Click on the App with App ID: <b>%s</b>"
4006
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
4007
  msgstr "Clicca sull'App con l'App ID: <b>%s</b>"
4008
 
4009
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:12
4010
  #, fuzzy
4011
  #| msgid ""
4012
  #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
@@ -4014,7 +2884,6 @@ msgid "Click on the link next to the Redirect URIs label."
4014
  msgstr ""
4015
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
4016
 
4017
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:15
4018
  #, fuzzy
4019
  #| msgid ""
4020
  #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
@@ -4022,7 +2891,6 @@ msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
4022
  msgstr ""
4023
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
4024
 
4025
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:18
4026
  #, fuzzy, php-format
4027
  #| msgid "Log in with your %s credentials if you are not logged in yet"
4028
  msgid ""
@@ -4030,13 +2898,11 @@ msgid ""
4030
  "account."
4031
  msgstr "Accedi con le tue credenziali %s se non sei ancora loggato"
4032
 
4033
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:20
4034
  #, fuzzy
4035
  #| msgid "Click on \"<b>Save</b>\""
4036
  msgid "Click on \"<b>New registration</b>\"."
4037
  msgstr "Clicca su \"<b>Salva</b>\""
4038
 
4039
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:21
4040
  #, fuzzy
4041
  #| msgid ""
4042
  #| "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
@@ -4044,13 +2910,11 @@ msgid "Fill the \"<b>Name</b>\" field with your App Name."
4044
  msgstr ""
4045
  "Compila il campo \"<b>Domini</b>\" col nome del tuo dominio, come: <b>%s</b>"
4046
 
4047
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:22
4048
  msgid ""
4049
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
4050
  "account types."
4051
  msgstr ""
4052
 
4053
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:25
4054
  #, fuzzy
4055
  #| msgid ""
4056
  #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
@@ -4058,7 +2922,6 @@ msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
4058
  msgstr ""
4059
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
4060
 
4061
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:33
4062
  #, fuzzy
4063
  #| msgid ""
4064
  #| "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" "
@@ -4066,48 +2929,40 @@ msgstr ""
4066
  msgid "Create your App with the \"<b>Register</b>\" button."
4067
  msgstr "Premi il bottone \"<b>Continua</b>\" e poi quello \"<b>Registra</b>\"."
4068
 
4069
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:34
4070
  #, fuzzy
4071
  #| msgid "Click on the \"<b>Auth</b>\" tab."
4072
  msgid "You land on the \"<b>Overview</b>\" page."
4073
  msgstr "Clicca sulla tab \"<b>Auth</b>\"."
4074
 
4075
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:35
4076
  msgid ""
4077
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
4078
  "(client) ID</b> in the plugin settings."
4079
  msgstr ""
4080
 
4081
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:36
4082
  msgid ""
4083
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
4084
  "Client credentials label."
4085
  msgstr ""
4086
 
4087
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:37
4088
  #, fuzzy
4089
  #| msgid "Click on \"<b>Save</b>\""
4090
  msgid "Click on \"<b>New client secret</b>\"."
4091
  msgstr "Clicca su \"<b>Salva</b>\""
4092
 
4093
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:38
4094
  #, fuzzy
4095
  #| msgid "Enter a \"<b>Description</b>\"."
4096
  msgid "Fill the \"<b>Description</b>\" field."
4097
  msgstr "Inserisci una \"<b>Descrizione</b>\"."
4098
 
4099
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:39
4100
  #, fuzzy
4101
  #| msgid ""
4102
  #| "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
4103
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
4104
  msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
4105
 
4106
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:40
4107
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
4108
  msgstr ""
4109
 
4110
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:41
4111
  #, fuzzy
4112
  #| msgid ""
4113
  #| "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
@@ -4119,52 +2974,42 @@ msgstr ""
4119
  "Qui vedrai il tuo \"<b>Client ID</b>\" e il tuo \"<b>Client Secret</b>\". "
4120
  "Questi saranno richiesti nei settaggi del plugin."
4121
 
4122
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:26
4123
  msgid "Application (client) ID"
4124
  msgstr ""
4125
 
4126
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:38
4127
  #, fuzzy
4128
  #| msgid "Client Secret"
4129
  msgid "Client secret"
4130
  msgstr "Client Secret"
4131
 
4132
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:38
4133
  #, fuzzy
4134
  #| msgid "Continue with <b>Yahoo</b>"
4135
  msgid "Continue with <b>Microsoft</b>"
4136
  msgstr "Continua con <b>Yahoo</b>"
4137
 
4138
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:39
4139
  #, fuzzy
4140
  #| msgid "Continue with <b>Yahoo</b>"
4141
  msgid "Sign up with <b>Microsoft</b>"
4142
  msgstr "Continua con <b>Yahoo</b>"
4143
 
4144
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:40
4145
  #, fuzzy
4146
  #| msgid "Link account with <b>Yahoo</b>"
4147
  msgid "Link account with <b>Microsoft</b>"
4148
  msgstr "Collega account con <b>Yahoo</b>"
4149
 
4150
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:41
4151
  #, fuzzy
4152
  #| msgid "Unlink account from <b>Yahoo</b>"
4153
  msgid "Unlink account from <b>Microsoft</b>"
4154
  msgstr "Scollega account da <b>Yahoo</b>"
4155
 
4156
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
4157
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
4158
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
4159
  msgstr ""
4160
  "C'è uno swich Sandbox/Live. Accertati che \"<b>Live</b>\" sia selezionato!"
4161
 
4162
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
4163
  #, php-format
4164
  msgid "Click on the name of your %s App, under the REST API apps section."
4165
  msgstr "Clicca sul nome della tua %s App, sotto la sezione dell'app REST API."
4166
 
4167
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
4168
  msgid ""
4169
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
4170
  "b>\" heading and click \"<b>Show</b>\"."
@@ -4172,8 +3017,6 @@ msgstr ""
4172
  "Scendi giù fino a \"<b>SETTAGGI APP LIVE</b>\", cerca il titolo \"<b>Live "
4173
  "Return URL</b>\" e clicca su \"<b>Mostra</b>\"."
4174
 
4175
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
4176
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
4177
  #, fuzzy
4178
  #| msgid ""
4179
  #| "Add the following URL to the \"<b>Live Return URL</b>\" field: <b>%s</b> "
@@ -4181,11 +3024,9 @@ msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
4181
  msgstr ""
4182
  "Aggiungi l'URL seguente al campo \"<b>Live Return URL</b>\": <b>%s</b> "
4183
 
4184
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:23
4185
  msgid "Click on \"Save\""
4186
  msgstr "Clicca su \"Salva\""
4187
 
4188
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
4189
  #, fuzzy, php-format
4190
  #| msgid ""
4191
  #| "Editing Live Apps are only possible with a %s. So please make sure you "
@@ -4197,31 +3038,25 @@ msgstr ""
4197
  "La modifica delle Live Apps sono possibili solo con un %s. Gentilmente "
4198
  "accertati di possederne uno!"
4199
 
4200
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
4201
  msgid "Click on Registration and create a Business account."
4202
  msgstr ""
4203
 
4204
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
4205
  msgid "If you are done, follow the guide from the 5. step."
4206
  msgstr ""
4207
 
4208
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
4209
  #, fuzzy, php-format
4210
  #| msgid "Log in with your %s credentials if you are not logged in."
4211
  msgid "Log in with your %s credentials."
4212
  msgstr "Accedi con le tue credenziali %s se non sei loggato."
4213
 
4214
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
4215
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
4216
  msgstr "Clicca il bottone \"<b>Crea App</b>\" nella sezione REST API dell'app."
4217
 
4218
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
4219
  msgid ""
4220
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
4221
  msgstr ""
4222
  "Compila il campo \"<b>Nome App</b>\" e clicca il bottone \"<b>Crea App</b>\"."
4223
 
4224
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
4225
  msgid ""
4226
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
4227
  "b>\" heading then click \"<b>Show</b>\"."
@@ -4229,7 +3064,6 @@ msgstr ""
4229
  "Scendi giù fino a \"<b>LIVE APP SETTINGS</b>\", cerca il titolo \"<b>Live "
4230
  "Return URL</b>\" e poi clicca \"<b>Mostra</b>\"."
4231
 
4232
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:36
4233
  msgid ""
4234
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
4235
  "with PayPal</b>\"."
@@ -4237,7 +3071,6 @@ msgstr ""
4237
  "Scendi giù fino alla sezione \"<b>Caratteristiche e Opzioni dell'App</b>\" e "
4238
  "spunta \"<b>Accedi con PayPal</b>\"."
4239
 
4240
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:37
4241
  msgid ""
4242
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
4243
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
@@ -4245,11 +3078,9 @@ msgstr ""
4245
  "Clicca \"<b>Opzioni Avanzate</b>\" che possono essere trovate alla fine del "
4246
  "testo dopo \"<b>Connettiti con PayPal (formalmente Accedi con PayPal)</b>\"."
4247
 
4248
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:38
4249
  msgid "Tick \"<b>Full name</b>\"."
4250
  msgstr "Spunta \"<b>Nome completo</b>\"."
4251
 
4252
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:39
4253
  msgid ""
4254
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
4255
  "email address as well, <b>please submit your App for a review</b> after your "
@@ -4258,12 +3089,10 @@ msgid ""
4258
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
4259
  msgstr ""
4260
 
4261
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:40
4262
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
4263
  msgstr ""
4264
  "Compila \"<b>URL Privacy policy</b>\" e \"<b>URL Accordo con l'utente</b>\"."
4265
 
4266
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:42
4267
  msgid ""
4268
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
4269
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
@@ -4273,46 +3102,35 @@ msgstr ""
4273
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\" richiesti! (Accertati di trovarti "
4274
  "nella modalità \"<b>Live</b>\" e non quella \"Sandbox\". )"
4275
 
4276
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
4277
  msgid "Secret"
4278
  msgstr "Secret"
4279
 
4280
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:45
4281
  msgid "Email scope"
4282
  msgstr ""
4283
 
4284
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:54
4285
  msgid "Disable, when you have no rights for email address."
4286
  msgstr "Disabilita, quando non hai diritti sull'indirizzo email."
4287
 
4288
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
4289
  msgid "Continue with <b>PayPal</b>"
4290
  msgstr "Continua con <b>PayPal</b>"
4291
 
4292
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
4293
  #, fuzzy
4294
  #| msgid "Continue with <b>PayPal</b>"
4295
  msgid "Sign up with <b>PayPal</b>"
4296
  msgstr "Continua con <b>PayPal</b>"
4297
 
4298
- #: nextend-social-login-pro/providers/paypal/paypal.php:67
4299
  msgid "Link account with <b>PayPal</b>"
4300
  msgstr "Collega account con <b>PayPal</b>"
4301
 
4302
- #: nextend-social-login-pro/providers/paypal/paypal.php:68
4303
  msgid "Unlink account from <b>PayPal</b>"
4304
  msgstr "Scollega account da <b>PayPal</b>"
4305
 
4306
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
4307
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
4308
  msgstr "Clicca sul bottone \"<b>Gestisci</b>\" vicino l'App associata."
4309
 
4310
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
4311
  msgid "Go to the \"<b>Settings</b>\" menu"
4312
  msgstr "Vai al menu \"<b>Settaggi</b>\""
4313
 
4314
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:14
4315
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:28
4316
  #, fuzzy
4317
  #| msgid ""
4318
  #| "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: <b>"
@@ -4322,11 +3140,9 @@ msgstr ""
4322
  "Aggiungi l'URL seguente al campo \"<b>Authorized redirect URI</b>\": <b>%s</"
4323
  "b>"
4324
 
4325
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
4326
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
4327
  msgstr "Cerca il bottone \"<b>Crea app</b>\" e cliccaci."
4328
 
4329
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
4330
  msgid ""
4331
  "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
4332
  "platform."
@@ -4334,7 +3150,6 @@ msgstr ""
4334
  "Inserisci il <b>Titolo</b> per la tua App e seleziona \"<b>Sito internet</b>"
4335
  "\" come piattaforma."
4336
 
4337
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
4338
  #, php-format
4339
  msgid ""
4340
  "Fill \"<b>Website address</b>\" with the url of your homepage, probably: <b>"
@@ -4343,7 +3158,6 @@ msgstr ""
4343
  "Compila \"<b>Indirizzo sito internet</b>\" con l'url della tua homepage, "
4344
  "probabilmente: <b>%s</b>"
4345
 
4346
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
4347
  #, php-format
4348
  msgid ""
4349
  "Fill the \"<b>Base domain</b>\" field with your domain, probably: <b>%s</b>"
@@ -4351,12 +3165,10 @@ msgstr ""
4351
  "Compila il campo \"<b>Dominio base</b>\" col tuo dominio, probabilmente: <b>"
4352
  "%s</b>"
4353
 
4354
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
4355
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
4356
  msgstr ""
4357
  "Quando tutti i campi sono compilati, clicca il bottone \"<b>Carica app</b>\"."
4358
 
4359
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
4360
  msgid ""
4361
  "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
4362
  "click <b>Save</b>."
@@ -4364,15 +3176,12 @@ msgstr ""
4364
  "<b>Compila il form delle informazioni</b> della tua app, <b>carica una icona "
4365
  "per l'app</b> e poi clicca su <b>Salva</b>."
4366
 
4367
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
4368
  msgid "Pick <b>Settings</b> at the left-hand menu "
4369
  msgstr "Seleziona <b>Settaggi</b> nel menu a sinistra "
4370
 
4371
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:36
4372
  msgid "<b>Save</b> your app"
4373
  msgstr "<b>Salva</b> la tua app"
4374
 
4375
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:37
4376
  msgid ""
4377
  "Find the necessary \"<b>App ID</b>\" and \"<b>Secure key</b>\" at the top of "
4378
  "the Settings page where you just hit the save button."
@@ -4380,41 +3189,32 @@ msgstr ""
4380
  "Cerca l'\"<b>App ID</b>\" e la \"<b>Secure key</b>\" richieste in alta nella "
4381
  "pagina Settaggi dove hai premuto il bottone per il salvataggio."
4382
 
4383
- #: nextend-social-login-pro/providers/vk/admin/settings.php:39
4384
  msgid "Secure key"
4385
  msgstr "Secure key"
4386
 
4387
- #: nextend-social-login-pro/providers/vk/vk.php:36
4388
  msgid "Continue with <b>VK</b>"
4389
  msgstr "Continua con <b>VK</b>"
4390
 
4391
- #: nextend-social-login-pro/providers/vk/vk.php:37
4392
  #, fuzzy
4393
  #| msgid "Continue with <b>VK</b>"
4394
  msgid "Sign up with <b>VK</b>"
4395
  msgstr "Continua con <b>VK</b>"
4396
 
4397
- #: nextend-social-login-pro/providers/vk/vk.php:38
4398
  msgid "Link account with <b>VK</b>"
4399
  msgstr "Collega account con <b>VK</b>"
4400
 
4401
- #: nextend-social-login-pro/providers/vk/vk.php:39
4402
  msgid "Unlink account from <b>VK</b>"
4403
  msgstr "Scollega account da <b>VK</b>"
4404
 
4405
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:11
4406
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
4407
  msgstr "Clicca \"<b>Gestisci Settaggi</b>\" sotto la sezione Strumenti!"
4408
 
4409
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
4410
  msgid "Click on the \"<b>Create New Application</b>\" button."
4411
  msgstr "Clicca sul bottone \"<b>Crea Nuova Applicazione</b>\"."
4412
 
4413
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
4414
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
4415
  msgstr "Inserisci \"<b>Nome</b>\" e \"<b>Descrizione</b>\" for la tua App."
4416
 
4417
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
4418
  #, php-format
4419
  msgid ""
4420
  "Fill \"<b>Website URL</b>\" with the url of your homepage, probably: <b>%s</"
@@ -4423,29 +3223,23 @@ msgstr ""
4423
  "Compila \"<b>URL del sito internet</b>\" con l'url della tua homepage, "
4424
  "probabilmente: <b>%s</b>"
4425
 
4426
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:32
4427
  msgid "You can leave the \"Javascript Origins\" field blank!"
4428
  msgstr "Puoi lasciare il campo \"Javascript Origins\" vuoto!"
4429
 
4430
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:33
4431
  msgid "Complete the human verification test."
4432
  msgstr "Completa il test \"verifica umano\"."
4433
 
4434
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:34
4435
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
4436
  msgstr "In \"<b>Tipo</b>\" assicurati che \"<b>Web</b>\" sia selezionato!"
4437
 
4438
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:35
4439
  msgid "Click the \"<b>Create</b>\" button!"
4440
  msgstr "Clicca il bottone\"<b>Crea</b>\"!"
4441
 
4442
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:36
4443
  msgid ""
4444
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
4445
  "next to Editing!"
4446
  msgstr ""
4447
 
4448
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:37
4449
  msgid ""
4450
  "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
4451
  "These will be needed in the plugin's settings."
@@ -4453,30 +3247,23 @@ msgstr ""
4453
  "Qui vedrai il tuo \"<b>Client ID</b>\" e il tuo \"<b>Client Secret</b>\". "
4454
  "Questi saranno richiesti nei settaggi del plugin."
4455
 
4456
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
4457
  msgid "Continue with <b>WordPress.com</b>"
4458
  msgstr "Continua con <b>WordPress.com</b>"
4459
 
4460
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
4461
  #, fuzzy
4462
  #| msgid "Continue with <b>WordPress.com</b>"
4463
  msgid "Sign up with <b>WordPress.com</b>"
4464
  msgstr "Continua con <b>WordPress.com</b>"
4465
 
4466
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
4467
  msgid "Link account with <b>WordPress.com</b>"
4468
  msgstr "Collega account con <b>WordPress.com</b>"
4469
 
4470
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
4471
  msgid "Unlink account from <b>WordPress.com</b>"
4472
  msgstr "Scollega account da <b>WordPress.com</b>"
4473
 
4474
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
4475
  msgid "Click on the App which has its credentials associated with the plugin."
4476
  msgstr "Clicca sull'App che ha le credenziali associate col plugin."
4477
 
4478
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:13
4479
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:26
4480
  #, fuzzy
4481
  #| msgid ""
4482
  #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
@@ -4484,12 +3271,10 @@ msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
4484
  msgstr ""
4485
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
4486
 
4487
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20
4488
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
4489
  msgstr ""
4490
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
4491
 
4492
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21
4493
  msgid ""
4494
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
4495
  "at \"<b>Application Type</b>\"."
@@ -4497,18 +3282,15 @@ msgstr ""
4497
  "Compila \"<b>Nome Applicazione</b>\" e seleziona \"<b>Applicazione Web</b>\" "
4498
  "nei \"<b>Tipi di applicazione</b>\"."
4499
 
4500
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22
4501
  msgid "Enter a \"<b>Description</b>\" for your app!"
4502
  msgstr "Inserisci una \"<b>Descrizione</b>\" per la tua app!"
4503
 
4504
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23
4505
  #, php-format
4506
  msgid ""
4507
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
4508
  msgstr ""
4509
  "Inserisci l'URL del tuo sito nel campo \"<b>Home Page URL</b>\": <b>%s</b>"
4510
 
4511
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:34
4512
  msgid ""
4513
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
4514
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
@@ -4516,11 +3298,9 @@ msgstr ""
4516
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
4517
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
4518
 
4519
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:35
4520
  msgid "Click \"<b>Create App</b>\"."
4521
  msgstr "Clicca \"<b>Crea App</b>\"."
4522
 
4523
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:36
4524
  msgid ""
4525
  "On the top of the page, you will find the necessary \"<b>Client ID</b>\" and "
4526
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
@@ -4529,66 +3309,27 @@ msgstr ""
4529
  "\"<b>Client Secret</b>\"! Questi ti serviranno nella configurazione del "
4530
  "plugin."
4531
 
4532
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
4533
  msgid "Continue with <b>Yahoo</b>"
4534
  msgstr "Continua con <b>Yahoo</b>"
4535
 
4536
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4537
  #, fuzzy
4538
  #| msgid "Continue with <b>Yahoo</b>"
4539
  msgid "Sign up with <b>Yahoo</b>"
4540
  msgstr "Continua con <b>Yahoo</b>"
4541
 
4542
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
4543
  msgid "Link account with <b>Yahoo</b>"
4544
  msgstr "Collega account con <b>Yahoo</b>"
4545
 
4546
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
4547
  msgid "Unlink account from <b>Yahoo</b>"
4548
  msgstr "Scollega account da <b>Yahoo</b>"
4549
 
4550
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4551
  #, php-format
4552
  msgid "Required permission: %1$s"
4553
  msgstr "Permesso richiesto: %1$s"
4554
 
4555
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4556
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4557
- #: nextend-social-login-pro/template-parts/buddypress/register/above-separator.php:25
4558
- #: nextend-social-login-pro/template-parts/buddypress/register/below-separator.php:25
4559
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4560
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4561
- #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4562
- #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4563
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4564
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4565
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4566
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4567
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4568
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4569
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4570
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4571
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4572
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4573
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4574
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4575
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4576
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4577
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4578
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4579
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4580
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4581
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4582
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4583
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4584
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4585
  msgid "OR"
4586
  msgstr "OR"
4587
 
4588
- #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
4589
- #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2
4590
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
4591
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
4592
  msgid "Social accounts"
4593
  msgstr "Account social"
4594
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-09-13 20:37+0200\n"
5
+ "PO-Revision-Date: 2021-09-13 20:42+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: it_IT\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-Flags-xgettext: --no-location\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
 
24
  msgid "What personal data we collect and why we collect it"
25
  msgstr "Quali dati personali raccogliamo e perché li raccogliamo"
26
 
 
27
  #, php-format
28
  msgid ""
29
  "%1$s collects data when a visitor register, login or link the account with "
38
  "raccogliere immagini e altri campi mediante la funzionalità di "
39
  "sincronizzazione Pro Addon's."
40
 
 
41
  msgid "Who we share your data with"
42
  msgstr "Con chi condividiamo i tuoi dati"
43
 
 
44
  #, php-format
45
  msgid ""
46
  "%1$s stores the personal data on your site and does not share it with anyone "
51
  "nessun altro ad eccezione del token d'accesso che è impiegato per "
52
  "autenticare le comunicazioni col social provider."
53
 
 
54
  msgid "Does the plugin share personal data with third parties"
55
  msgstr "Il plugin condivide dati personali con terze parti"
56
 
 
57
  #, php-format
58
  msgid ""
59
  "%1$s use the access token what the social provider gave to communicate with "
63
  "col provider per verificare l'account e accedere in sicurezza ai dati "
64
  "personali."
65
 
 
66
  msgid "How long we retain your data"
67
  msgstr "Per quanto tempo conserviamo i tuoi dati"
68
 
 
69
  #, php-format
70
  msgid ""
71
  "%1$s removes the collected personal data when the user deleted from "
74
  "%1$s rimuove i dati personali raccolti quando l'utente è cancellato da "
75
  "WordPress."
76
 
 
77
  msgid "Does the plugin use personal data collected by others?"
78
  msgstr "Il plugin impiega dati personali raccolti da altri?"
79
 
 
80
  #, php-format
81
  msgid ""
82
  "%1$s use the personal data collected by the social providers to create "
85
  "Quando il visitatore lo autorizza, %1$s impiega i dati personali raccolti "
86
  "dai social provider per creare un account sul tuo sito."
87
 
 
88
  msgid "Does the plugin store things in the browser?"
89
  msgstr "Il plugin memorizza \"cose\" sul browser?"
90
 
 
91
  #, php-format
92
  msgid ""
93
  "Yes, %1$s must create a cookie for visitors who use the social login "
99
  "sicura la comunicazione e per rimandare l'utente indietro all'ultima pagina "
100
  "del sito."
101
 
 
102
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
103
  msgstr ""
104
  "Il plugin raccoglie informazioni sulla telemetria, direttamente o "
105
  "indirettamente?"
106
 
 
 
107
  msgid "No"
108
  msgstr "No"
109
 
 
110
  msgid ""
111
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
112
  "third party?"
114
  "Il plugin include JavaScript, pixel di tracciamento o iframes incorporati da "
115
  "terze parti?"
116
 
 
 
117
  msgid "User"
118
  msgstr "Utente"
119
 
 
120
  #, php-format
121
  msgid "%s needs json_decode function."
122
  msgstr "%s necessita della funzione json_decode."
123
 
 
124
  msgid "Please contact your server administrator and ask for solution!"
125
  msgstr ""
126
  "Per favore contatta l'amministratore del tuo server e chiedi una soluzione!"
127
 
 
 
128
  msgid "Settings saved."
129
  msgstr "Settaggio salvato."
130
 
 
131
  msgid "The activation was successful"
132
  msgstr "Attivazione completata"
133
 
 
134
  msgid "Deactivate completed."
135
  msgstr "Disattivazione completata."
136
 
 
 
 
 
 
137
  msgid "Settings"
138
  msgstr "Settaggi"
139
 
 
 
 
 
 
 
 
140
  #, php-format
141
  msgid "Unexpected response: %s"
142
  msgstr "Unexpected response: %s"
143
 
 
 
144
  #, php-format
145
  msgid ""
146
  "%s detected that your login url changed. You must update the Oauth redirect "
149
  "%s ha rilevato che la tua url di login è cambiata. Devi aggiornare il "
150
  "redirect Oauth URIs nella relative applicazioni social."
151
 
 
 
152
  msgid "Fix Error"
153
  msgstr "Ripara Errore"
154
 
 
155
  msgid "Oauth Redirect URI"
156
  msgstr "Oauth Redirect URI"
157
 
 
158
  #, php-format
159
  msgid ""
160
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
163
  "%1$s ha rilevato che %2$s è installato sul tuo sito. Hai bisogno di Pro "
164
  "Addon per mostrare i bottoni Social Login nel form di login di %2$s!"
165
 
 
166
  msgid "Dismiss and check Pro Addon"
167
  msgstr ""
168
 
 
169
  msgid "Dismiss"
170
  msgstr ""
171
 
 
172
  #, php-format
173
  msgid ""
174
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
179
  "\"<b>Pagina per il flusso di registrazione</b>\" e \"<b>OAuth redirect uri "
180
  "proxy page</b>\" in %1$s per funzionare correttamente."
181
 
 
182
  msgid "Fix now"
183
  msgstr "Ripara ora"
184
 
 
185
  msgid "Activate your Pro Addon"
186
  msgstr "Attiva il tuo Pro Addon"
187
 
 
188
  msgid ""
189
  "To be able to use the Pro features, you need to activate Nextend Social "
190
  "Login Pro Addon. You can do this by clicking on the Activate button below "
194
  "Login Pro. Puoi farlo cliccando sul bottone Attiva in basso e selezionare il "
195
  "relativo acquisto."
196
 
 
 
197
  msgid "Activate"
198
  msgstr "Attiva"
199
 
 
200
  msgid "License key"
201
  msgstr "Chiave di licenza"
202
 
 
203
  msgid "OAuth proxy page"
204
  msgstr "Pagina OAuth proxy"
205
 
 
206
  msgid "Register flow page"
207
  msgstr "Pagina del flusso di registrazione"
208
 
 
209
  #, php-format
210
  msgid ""
211
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
213
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
214
  msgstr ""
215
 
 
 
216
  msgid "You have logged in successfully."
217
  msgstr "Ti sei loggato."
218
 
 
219
  msgid "Login label"
220
  msgstr "Etichetta login"
221
 
 
 
 
 
 
 
 
222
  msgid "Reset to default"
223
  msgstr "Ripristina predefiniti"
224
 
 
225
  #, fuzzy
226
  #| msgid "Register layout"
227
  msgid "Register label"
228
  msgstr "Layout registrazione"
229
 
 
230
  msgid "Link label"
231
  msgstr "Collega etichetta"
232
 
 
233
  msgid "Unlink label"
234
  msgstr "Scollega etichetta"
235
 
 
236
  msgid "Default button"
237
  msgstr "Bottone standard"
238
 
 
 
239
  msgid "Use custom button"
240
  msgstr "Usa bottone personalizzato"
241
 
 
242
  #, php-format
243
  msgid "Use the %s in your custom button's code to make the label show up."
244
  msgstr ""
245
  "Utilizza %s nei codici dei tuoi bottoni personalizzati per rendere "
246
  "l'etichetta visibile."
247
 
 
248
  msgid "Icon button"
249
  msgstr "Bottone icona"
250
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  msgid "Save Changes"
252
  msgstr "Salva Modifiche"
253
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  msgid "Getting Started"
255
  msgstr "Inizia"
256
 
 
257
  msgid "Buttons"
258
  msgstr "Bottoni"
259
 
 
260
  msgid "Sync data"
261
  msgstr "Sincronizza dati"
262
 
 
263
  msgid "Usage"
264
  msgstr "Utilizzo"
265
 
 
266
  msgid "Other settings"
267
  msgstr "Altri settaggi"
268
 
 
269
  msgid "Username prefix on register"
270
  msgstr "Prefisso allo username alla registrazione"
271
 
 
272
  msgid "Fallback username prefix on register"
273
  msgstr ""
274
 
 
275
  msgid "Used when username is invalid or not stored"
276
  msgstr "Usato quando lo username non è valido o non è memorizzato"
277
 
 
 
 
278
  msgid "Terms and conditions"
279
  msgstr "Termini e condizioni"
280
 
 
281
  #, php-format
282
  msgid "Override global \"%1$s\""
283
  msgstr "Sovrascrivi \"%1$s\" globali"
284
 
 
 
 
285
  msgid "PRO settings"
286
  msgstr "Settaggi PRO"
287
 
 
 
288
  msgid "Ask E-mail on registration"
289
  msgstr "Chiedi E-mail alla registrazione"
290
 
 
 
291
  msgid "Never"
292
  msgstr "Mai"
293
 
 
294
  msgid "When email is not provided or empty"
295
  msgstr "Quando l'email non è fornita o è vuota"
296
 
 
 
 
297
  msgid "Always"
298
  msgstr "Sempre"
299
 
 
 
300
  msgid "Ask Username on registration"
301
  msgstr "Chiedi Username alla registrazione"
302
 
 
303
  msgid "Never, generate automatically"
304
  msgstr "Mai, genera automaticamente"
305
 
 
306
  msgid "When username is empty or invalid"
307
  msgstr "Quando lo username è vuoto o non valido"
308
 
 
309
  msgid "Ask Password on registration"
310
  msgstr "Chiedi password alla registrazione"
311
 
 
 
312
  msgid "Automatically connect the existing account upon registration"
313
  msgstr "Alla registrazione connetti automaticamente l'account esistente"
314
 
 
 
 
 
 
 
 
 
 
315
  msgid "Disabled"
316
  msgstr "Disabilitato"
317
 
 
318
  msgid "Automatic, based on email address"
319
  msgstr "Automatico, basato sull'indirizzo email"
320
 
 
321
  msgid "Disable login for the selected roles"
322
  msgstr "Disabilita login per i seguenti ruoli"
323
 
 
324
  msgid "Default roles for user who registered with this provider"
325
  msgstr "Ruolo default per chi si registra con questi provider"
326
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
327
  msgid "Default"
328
  msgstr "Default"
329
 
 
330
  msgid "Register"
331
  msgstr "Registra"
332
 
 
333
  msgid "Login"
334
  msgstr "Login"
335
 
 
336
  msgid "Link"
337
  msgstr "Collega"
338
 
 
339
  msgid "Store in meta key"
340
  msgstr "Memorizza nella meta key"
341
 
 
342
  msgid "Shortcode"
343
  msgstr "Shortcode"
344
 
 
345
  msgid "Important!"
346
  msgstr "Importante!"
347
 
 
348
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
349
  msgstr ""
350
  "Lo shortcode è renderizzato per gli utenti che non si sono ancora loggati!"
351
 
 
352
  msgid "See the full list of shortcode parameters."
353
  msgstr "Guarda la lista completa dei parametri dello shortcode."
354
 
 
355
  msgid "Simple link"
356
  msgstr "Collegamento semplice"
357
 
 
358
  msgid "Click here to login or register"
359
  msgstr "Clicca qui per accedere o registrarti"
360
 
 
361
  msgid "Image button"
362
  msgstr "Bottone immagine"
363
 
 
364
  msgid "Image url"
365
  msgstr "Url immagine"
366
 
 
 
367
  msgid "Debug"
368
  msgstr "Debug"
369
 
 
370
  msgid "Test network connection with providers"
371
  msgstr "Testa la connessione con i providers"
372
 
 
373
  msgid "You don't have cURL support, please enable it in php.ini!"
374
  msgstr "Non hai il supporto al cURL, per favore abilitalo nel php.ini!"
375
 
 
376
  #, php-format
377
  msgid "Test %1$s connection"
378
  msgstr "Testa la connessione %1$s"
379
 
 
380
  msgid "Fix Oauth Redirect URIs"
381
  msgstr "Correggi Oauth Redirect URIs"
382
 
 
383
  msgid "Every Oauth Redirect URI seems fine"
384
  msgstr "Ogni Oauth Redirect URI sembra corretta"
385
 
 
386
  msgid "Got it"
387
  msgstr "Capito"
388
 
 
 
389
  msgid "Global Settings"
390
  msgstr "Settaggi Globali"
391
 
 
392
  msgid "General"
393
  msgstr "Generale"
394
 
 
395
  msgid "Privacy"
396
  msgstr "Privacy"
397
 
 
 
 
398
  msgid "Login Form"
399
  msgstr "Form di login"
400
 
 
401
  msgid "Comment"
402
  msgstr "Commento"
403
 
 
404
  msgid "Docs"
405
  msgstr "Docs"
406
 
 
407
  msgid "Support"
408
  msgstr "Supporto"
409
 
 
 
410
  msgid "Pro Addon"
411
  msgstr "Pro Addon"
412
 
 
413
  msgid "Providers"
414
  msgstr "Provider"
415
 
 
 
 
416
  msgid "Error"
417
  msgstr "Errore"
418
 
 
419
  msgid ""
420
  "You don’t have sufficient permissions to install and activate plugins. "
421
  "Please contact your site’s administrator!"
423
  "Non hai permessi sufficienti per installare ed attivare il plugin. Per "
424
  "favore contatta l'amministratore del tuo sito!"
425
 
 
 
 
426
  msgid "Activate Pro Addon"
427
  msgstr "Attiva Pro Addon"
428
 
 
429
  msgid ""
430
  "Pro Addon is installed but not activated. To be able to use the Pro "
431
  "features, you need to activate it."
433
  "Pro Addon è installato ma non attivto. Per potere usare le funzionalità Pro "
434
  "devi attivarlo."
435
 
 
 
436
  msgid "Deactivate Pro Addon"
437
  msgstr "Disattiva Pro Addon"
438
 
 
 
439
  msgid "Pro Addon is not installed"
440
  msgstr "Pro Addon non è installato"
441
 
 
442
  msgid ""
443
  "To access the Pro features, you need to install and activate the Pro Addon."
444
  msgstr ""
445
  "Per accedere alle funzionalità Pro hai bisogno di installare e attivare Pro "
446
  "Addon."
447
 
 
448
  #, php-format
449
  msgid "Install %s now"
450
  msgstr "Installa %s adesso"
451
 
 
 
452
  msgid "Install Pro Addon"
453
  msgstr "Installa Pro Addon"
454
 
 
455
  msgid "Activating..."
456
  msgstr "Attivazione..."
457
 
 
458
  msgid "Not compatible!"
459
  msgstr "Non compatibile!"
460
 
 
461
  #, php-format
462
  msgid ""
463
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
466
  "%1$s e %2$s non sono compatibili. Per favore aggiorna %2$s alla versione "
467
  "%3$s o più recente."
468
 
 
469
  msgid "Update Pro Addon"
470
  msgstr "Aggiorna Pro Addon"
471
 
 
472
  msgid "Pro Addon is installed and activated"
473
  msgstr "Pro Addon è installato e attivo"
474
 
 
475
  msgid ""
476
  "You installed and activated the Pro Addon. If you don’t want to use it "
477
  "anymore, you can deactivate using the button below."
479
  "Hai installato ed attivato il Pro Addon. Se non volessi più usarlo, puoi "
480
  "disattivarlo usando il bottone in basso."
481
 
 
482
  msgid "Get Pro Addon to unlock more features"
483
  msgstr "Passa a Pro Addon per sbloccare più funzionalità"
484
 
 
485
  #, php-format
486
  msgid ""
487
  "The features below are available in %s Pro Addon. Get it today and tweak the "
490
  "Le funzionalità qui sotto sono disponibili in %s Pro Addon. Acquistalo oggi "
491
  "e accedi ai settaggi più avanzati."
492
 
 
493
  msgid ""
494
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
495
  "you can purchase it using the button below."
497
  "Se hai già una licenza, puoi autorizzare il tuo Pro Addon. Altrimenti potrai "
498
  "comprarla dal bottone in basso."
499
 
 
500
  msgid "Buy Pro Addon"
501
  msgstr "Compra Pro Addon"
502
 
 
503
  msgid "Authorize Pro Addon"
504
  msgstr "Autorizza Pro Addon"
505
 
 
506
  msgid "Pro Addon is not activated"
507
  msgstr "Pro Addon non è attivato"
508
 
 
 
509
  msgid ""
510
  "To be able to use the Pro features, you need to install and activate the "
511
  "Nextend Social Login Pro Addon."
513
  "Per potere usare le funzionalità Pro, devi installare e attivare il Nextend "
514
  "Social Login Pro Addon."
515
 
 
516
  #, php-format
517
  msgid ""
518
  "%1$s detected that you have providers configured but none of them are "
523
  "visualizzare i bottoni social accertati di avere almeno un provider "
524
  "abilitato!"
525
 
 
526
  msgid "Not Available"
527
  msgstr "Non disponibile"
528
 
 
529
  msgid "Not Configured"
530
  msgstr "Non Configurato"
531
 
 
532
  msgid "Not Verified"
533
  msgstr "Non Verificato"
534
 
 
 
 
 
 
 
 
 
 
 
535
  msgid "Enabled"
536
  msgstr "Abilitato"
537
 
 
538
  msgid "Upgrade Now"
539
  msgstr "Aggiorna adesso"
540
 
 
 
541
  msgid "Verify Settings"
542
  msgstr "Verifica Settaggi"
543
 
 
 
544
  msgid "Enable"
545
  msgstr "Abilita"
546
 
 
 
547
  msgid "Disable"
548
  msgstr "Disabilita"
549
 
 
550
  msgid "Stay Updated"
551
  msgstr "Tieniti aggiornato"
552
 
 
553
  msgid ""
554
  "Receive info on the latest plugin updates and social provider related "
555
  "changes."
556
  msgstr ""
557
  "Ricevi informazioni sugli aggiornamenti del plugin e quelli dei providers."
558
 
 
559
  msgid "Enter your email address"
560
  msgstr "Inserisci il tuo indirizzo Email"
561
 
 
562
  msgid "Subscribe"
563
  msgstr "Sottoscrivi"
564
 
 
565
  msgid "Saving..."
566
  msgstr "Salvando..."
567
 
 
568
  msgid "Saving failed"
569
  msgstr "Salvataggio fallito"
570
 
 
571
  msgid "Order Saved"
572
  msgstr "Ordine Salvato"
573
 
 
574
  msgid "Successfully subscribed!"
575
  msgstr "Abbonato correttamente!"
576
 
 
577
  msgid ""
578
  "We'll be bringing you all the latest news and updates about Social Login - "
579
  "right to your inbox."
581
  "Ti forniremo tutte le ultime novità e gli aggiornamenti su Social Login - "
582
  "proprio nella tua posta in arrivo."
583
 
 
584
  msgid "The entered email address is invalid!"
585
  msgstr "L'email inserita non è valida!"
586
 
 
587
  msgid "Rate your experience!"
588
  msgstr "Vota la tua esperienza!"
589
 
 
590
  msgid "Hated it"
591
  msgstr "Odiato"
592
 
 
593
  msgid "Disliked it"
594
  msgstr "Non piaciuto"
595
 
 
596
  msgid "It was ok"
597
  msgstr "Ok"
598
 
 
599
  msgid "Liked it"
600
  msgstr "Mi è piaciuto"
601
 
 
602
  msgid "Loved it"
603
  msgstr "Adorabile"
604
 
 
605
  msgid "Please Leave a Review"
606
  msgstr "Per Favore Lascia una Recensione"
607
 
 
608
  msgid ""
609
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
610
  "please leave us a review. It will be a tremendous help for us!"
612
  "Se sei soddisfatto con <b>Nextend Social Login</b> e puoi prenderti un "
613
  "minuto per favore lascia una recensione. Sarà un aiuto enorme per noi!"
614
 
 
615
  msgid "Ok, you deserve it"
616
  msgstr "Ok, me lo merito"
617
 
 
 
 
618
  msgid "Register form"
619
  msgstr "Form di registrazione"
620
 
 
621
  msgid "No Connect button"
622
  msgstr ""
623
 
 
624
  msgid "Connect button before register"
625
  msgstr ""
626
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
627
  msgid "Action:"
628
  msgstr "Azione:"
629
 
 
630
  msgid "Connect button before account details"
631
  msgstr ""
632
 
 
633
  msgid "Connect button after register"
634
  msgstr "Bottone connetti dopo la registrazione"
635
 
 
636
  msgid "Register button style"
637
  msgstr "Stile del bottone di registrazione"
638
 
 
 
 
 
 
 
 
 
 
 
 
 
639
  msgid "Fullwidth"
640
  msgstr ""
641
 
 
 
 
 
 
 
 
 
 
 
 
 
 
642
  msgid "Icon"
643
  msgstr "Icona"
644
 
 
 
 
 
645
  msgid "Register layout"
646
  msgstr "Layout registrazione"
647
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
648
  msgid "Below"
649
  msgstr "Sotto"
650
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
651
  msgid "Below with separator"
652
  msgstr "Sotto con separatore"
653
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
654
  msgid "Above"
655
  msgstr "Sopra"
656
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
657
  msgid "Above with separator"
658
  msgstr "Sopra con separatore"
659
 
 
660
  msgid "Sidebar Login form"
661
  msgstr ""
662
 
 
 
 
 
 
 
 
663
  msgid "Hide login buttons"
664
  msgstr "Nascondi bottone login"
665
 
 
 
 
 
 
 
 
 
666
  msgid "Show login buttons"
667
  msgstr "Mostra bottone login"
668
 
 
669
  msgid ""
670
  "Some themes that use BuddyPress, display the social buttons twice in the "
671
  "same login form. This option can disable the one for: "
675
  "stesso form di login. Questa opzione può disabilitarne un set per: "
676
  "<b>bp_sidebar_login_form action</b>. "
677
 
 
 
 
 
678
  msgid "Login form"
679
  msgstr "Form di login"
680
 
 
681
  msgid "Login button style"
682
  msgstr "Stile del bottone di login"
683
 
 
 
 
 
 
 
684
  msgid "Login layout"
685
  msgstr "Layout del login"
686
 
 
 
 
 
 
 
 
687
  msgid "Button alignment"
688
  msgstr "Allineamento bottone"
689
 
 
 
 
 
 
 
 
 
 
690
  msgid "Left"
691
  msgstr "Sinistra"
692
 
 
 
 
 
 
 
 
 
 
693
  msgid "Center"
694
  msgstr "Centro"
695
 
 
 
 
 
 
 
 
 
 
696
  msgid "Right"
697
  msgstr "Destra"
698
 
 
699
  msgid "Login button"
700
  msgstr "Bottone login"
701
 
 
 
702
  msgid "Show"
703
  msgstr "Mostra"
704
 
 
705
  msgid "Hide"
706
  msgstr "Nascondi"
707
 
 
708
  #, php-format
709
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
710
  msgstr ""
711
  "Hai bisogno di attivare ' %1$s > %2$s > %3$s ' per fare funzionare questa "
712
  "caratteristica"
713
 
 
714
  msgid "Discussion"
715
  msgstr "Discussione"
716
 
 
717
  msgid "Users must be registered and logged in to comment"
718
  msgstr "Gli utenti devono essere registrati e loggati per commentare"
719
 
 
 
720
  msgid "Button style"
721
  msgstr "Stile bottone"
722
 
723
+ msgid "No Connect button in Login form"
724
+ msgstr "Non connettere bottone nel form di Login"
725
+
726
+ msgid "Connect button on"
727
+ msgstr "Connetti bottone a"
728
+
729
+ msgid "Login form button style"
730
+ msgstr "Stile del bottone del form di login"
731
+
732
+ msgid "No Connect button in Register form"
733
+ msgstr ""
734
+
735
+ msgid "Register form button style"
736
+ msgstr "Stile del bottone del form registrati"
737
+
738
  msgid "Target window"
739
  msgstr "Finestra target"
740
 
 
741
  msgid "Prefer popup"
742
  msgstr "Preferisci popup"
743
 
 
744
  msgid "Prefer new tab"
745
  msgstr "Preferisci nuova tab"
746
 
 
747
  msgid "Prefer same window"
748
  msgstr "Preferisci stessa finestra"
749
 
 
750
  msgid "Registration notification sent to"
751
  msgstr "Invia notifica di registrazione a"
752
 
 
 
753
  msgid "WordPress default"
754
  msgstr "Default WordPress"
755
 
 
756
  msgid "Nobody"
757
  msgstr "Nessuno"
758
 
 
759
  msgid "Admin"
760
  msgstr "Admin"
761
 
 
762
  msgid "User and Admin"
763
  msgstr "Utente e Admin"
764
 
 
765
  msgid "Unlink"
766
  msgstr "Scollega"
767
 
 
768
  msgid "Allow Social account unlink"
769
  msgstr "Consenti di scollegare gli account Social"
770
 
 
771
  msgid "Show linked providers"
772
  msgstr "Mostra providers collegati"
773
 
 
774
  #, php-format
775
  msgid "Providers linked to the account will appear in the %1$s."
776
  msgstr "I providers collegati all'account appariranno in %1$s."
777
 
 
778
  msgid "Users table"
779
  msgstr "Tabella utenti"
780
 
 
781
  msgid "Disable Admin bar for roles"
782
  msgstr "Disabilita l'amministrazione per i ruoli"
783
 
 
784
  msgid "Debug mode"
785
  msgstr "Modalità debug"
786
 
 
787
  msgid "Page for register flow"
788
  msgstr "Pagina per il flusso di registrazione"
789
 
 
 
790
  msgid "None"
791
  msgstr "Nessuno"
792
 
 
793
  msgid ""
794
  "This setting is used when you request additional data from the users (such "
795
  "as email address) and to display the Terms and conditions."
797
  "Questo settaggio è usato quando richiedi più informazioni dagli utenti (come "
798
  "l'indirizzo email) per mostrare i Termini e condizioni."
799
 
 
800
  #, php-format
801
  msgid ""
802
  "%2$s First create a new page and insert the following shortcode: %1$s then "
805
  "%2$s Prima crea una nuova pagina e inserisci il seguente shortcode: %1$s, "
806
  "dopo seleziona una voce dal menù sopra"
807
 
 
 
808
  msgid "Usage:"
809
  msgstr "Utilizzo:"
810
 
 
 
811
  #, php-format
812
  msgid ""
813
  "%1$s You won't be able to reach the selected page unless a social login/"
816
  "%1$s Non potrai raggiungere la pagina selezionata fino a quando un login, o "
817
  "un accesso social non avvengono."
818
 
 
 
819
  msgid "Important:"
820
  msgstr "Importante:"
821
 
 
822
  msgid "OAuth redirect uri proxy page"
823
  msgstr "Pagina proxy OAuth redirect uri"
824
 
 
825
  msgid ""
826
  "You can use this setting when wp-login.php page is not available to handle "
827
  "the OAuth flow."
829
  "Puoi usare questo settaggio quando wp-login.php non è disponibile per "
830
  "gestire il flusso OAuth."
831
 
 
832
  #, php-format
833
  msgid "%1$s First create a new page then select this page above."
834
  msgstr "%1$s Crea una nuova pagina e poi una voce dal menù sopra."
835
 
 
836
  msgid "Prevent external redirect overrides"
837
  msgstr "Impedisci overrides di redirect esterni"
838
 
 
839
  msgid "Disable external redirects"
840
  msgstr "Disabilita redirect esterni"
841
 
 
842
  msgid "Default redirect url"
843
  msgstr "Url di redirect default"
844
 
 
 
845
  msgid "for Login"
846
  msgstr "per Accedere"
847
 
 
 
848
  msgid "for Register"
849
  msgstr "per Regisstrarsi"
850
 
 
851
  msgid "Fixed redirect url"
852
  msgstr "Url di redirect fissa"
853
 
 
854
  msgid "Blacklisted redirects"
855
  msgstr "Redirect in blacklist"
856
 
 
857
  msgid "If you want to blacklist redirect url params. One pattern per line."
858
  msgstr ""
859
  "Se vuoi mettere in blacklist dei parametri url. Inserisci un pattern per "
860
  "linea."
861
 
 
862
  msgid "Support login restrictions"
863
  msgstr "Restrizioni al login"
864
 
 
865
  #, php-format
866
  msgid "Please visit to our %1$s to check what plugins are supported!"
867
  msgstr "Per favore, visita %1$s per verificare quali plugins sono supportati!"
868
 
 
869
  msgid "Display avatars in \"All media items\""
870
  msgstr "Mostra avatars in \"Libreria Media\""
871
 
 
872
  msgid ""
873
  "Enabling this option can speed up loading images in Media Library - Grid "
874
  "view!"
876
  "Abilitando questa opzione potrai velocizzare il caricamento delle immagini "
877
  "nella Libreria Media - vista a Griglia!"
878
 
 
879
  msgid "Membership"
880
  msgstr "Abbonamento"
881
 
 
882
  msgid "Allow registration with Social login."
883
  msgstr "Consenti la registrazione con Social login."
884
 
 
885
  #, fuzzy
886
  #| msgid "Page for register flow"
887
  msgid "Custom label for register buttons"
888
  msgstr "Pagina per il flusso di registrazione"
889
 
 
890
  #, php-format
891
  msgid ""
892
  "Set a custom label for the social buttons in registration forms and for "
894
  "can be modified at the Buttons tab of each provider."
895
  msgstr ""
896
 
 
 
 
 
 
 
 
 
897
  msgid "Below and floating"
898
  msgstr "Sotto e fluttuante"
899
 
 
900
  msgid "Embedded Login form button style"
901
  msgstr "Stile del bottone del form di login incorporato"
902
 
 
903
  msgid "Embedded Login layout"
904
  msgstr "Layout del login incorporato"
905
 
 
906
  msgid "Embedded login form button alignment"
907
  msgstr "Allineamento del bottone del login incorporato"
908
 
 
 
909
  msgid "Registration Form"
910
  msgstr "Form di Registrazione"
911
 
 
912
  msgid "Embedded login form"
913
  msgstr "Form di login incorporato"
914
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
915
  msgid "Sign Up form"
916
  msgstr "Form di Iscrizione"
917
 
 
918
  msgid "No Connect button in Sign Up form"
919
  msgstr ""
920
 
 
921
  msgid "Sign Up form button style"
922
  msgstr "Stile del bottone Iscriviti"
923
 
 
924
  msgid "Sign Up layout"
925
  msgstr "Layout di Iscrizione"
926
 
 
 
 
927
  msgid "Account details"
928
  msgstr "Dettagli account"
929
 
 
 
930
  msgid "No link buttons"
931
  msgstr "Non collegare bottoni"
932
 
 
 
933
  msgid "Link buttons after account details"
934
  msgstr "Collega bottoni dopo i dettagli dell'account"
935
 
 
 
936
  msgid ""
937
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
938
  "\"_blank\">Privacy Policy</a>"
940
  "Cliccando su Registrati, accetti la nostra <a href=\"#privacy_policy_url\" "
941
  "target=\"_blank\">Privacy Policy</a>"
942
 
 
943
  msgid "Store"
944
  msgstr "Memorizza"
945
 
 
946
  msgid "First and last name"
947
  msgstr "Nome e cognome"
948
 
 
949
  msgid "When not enabled, username will be randomly generated."
950
  msgstr "Quando non abilitato, lo username sarà generato casualmente."
951
 
 
 
952
  msgid "Email"
953
  msgstr "Email"
954
 
 
955
  msgid "When not enabled, email will be empty."
956
  msgstr "Quando non abilitato, l'email sarà vuota."
957
 
 
 
958
  msgid "Avatar"
959
  msgstr "Avatar"
960
 
 
 
961
  msgid "Access token"
962
  msgstr "Token d'accesso"
963
 
 
 
 
 
 
 
 
 
 
 
964
  msgid "Register Form"
965
  msgstr "Form di Registrazione"
966
 
 
967
  msgid "No Connect button in login form"
968
  msgstr ""
969
 
 
970
  msgid "No Connect button in register form"
971
  msgstr ""
972
 
 
973
  msgid "Billing form"
974
  msgstr "Form pagamento"
975
 
 
976
  msgid "No Connect button in billing form"
977
  msgstr ""
978
 
 
979
  msgid "Billing layout"
980
  msgstr "Layout accesso"
981
 
 
982
  msgid "Default with separator"
983
  msgstr "Default con separatore"
984
 
 
985
  msgid "Checkout for WooCommerce"
986
  msgstr "Checkout per WooCommerce"
987
 
 
988
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
989
  msgstr ""
990
 
 
991
  msgid "Checkout for WooCommerce layout"
992
  msgstr ""
993
 
 
994
  msgid "No Connect buttons in account details form"
995
  msgstr ""
996
 
 
 
997
  msgid "Link buttons on"
998
  msgstr "Collega bottoni a"
999
 
 
1000
  #, fuzzy
1001
  #| msgid "Ask E-mail on registration"
1002
  msgid "Email template for registration"
1003
  msgstr "Chiedi E-mail alla registrazione"
1004
 
 
1005
  #, fuzzy
1006
  #| msgid "WordPress default"
1007
  msgid "WordPress default notification"
1008
  msgstr "Default WordPress"
1009
 
 
1010
  #, fuzzy
1011
  #| msgid "Registration notification sent to"
1012
  msgid "WooCommerce registration notification"
1013
  msgstr "Invia notifica di registrazione a"
1014
 
 
1015
  #, php-format
1016
  msgid ""
1017
  "Defines whether the registration with %1$s will send the same registration "
1018
  "notification that %2$s does, instead of the %3$s default one."
1019
  msgstr ""
1020
 
 
1021
  #, php-format
1022
  msgid "Network connection successful: %1$s"
1023
  msgstr "Connessione alla rete riuscita: %1$s"
1024
 
 
1025
  #, php-format
1026
  msgid "Network connection failed: %1$s"
1027
  msgstr "Connessione alla rete fallita: %1$s"
1028
 
 
1029
  msgid ""
1030
  "Please contact with your hosting provider to resolve the network issue "
1031
  "between your server and the provider."
1033
  "Gentilmente contatta il tuo hosting provider per risolvere i problemi di "
1034
  "connettività fra il tuo server e il provider."
1035
 
 
1036
  msgid "Manage Avatar"
1037
  msgstr "Gestisci Avatar"
1038
 
 
1039
  #, php-format
1040
  msgid "Avatar <span class=\"count\">(%s)</span>"
1041
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1042
  msgstr[0] "Avatar <span class=\"count\">(%s)</span>"
1043
  msgstr[1] "Avatar <span class=\"count\">(%s)</span>"
1044
 
 
1045
  msgid "Invalid URL Provided."
1046
  msgstr ""
1047
 
 
1048
  msgid "Could not create Temporary file."
1049
  msgstr ""
1050
 
 
1051
  #, php-format
1052
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1053
  msgstr "%1$s &lsaquo; %2$s &#8212; WordPress"
1054
 
 
1055
  msgid "https://wordpress.org/"
1056
  msgstr "https://wordpress.org/"
1057
 
 
1058
  msgid "Powered by WordPress"
1059
  msgstr "Powered by WordPress"
1060
 
 
1061
  #, php-format
1062
  msgctxt "site"
1063
  msgid "&larr; Back to %s"
1064
  msgstr "&larr; Indietro a %s"
1065
 
 
1066
  msgid "Your configuration needs to be verified"
1067
  msgstr "La tua configurazione deve essere verificata"
1068
 
 
1069
  msgid ""
1070
  "Before you can start letting your users register with your app it needs to "
1071
  "be tested. This test makes sure that no users will have troubles with the "
1079
  "popup verifica l'ID copiato e la secret o l'app stessa. Altrimenti i tuoi "
1080
  "settaggi sono corretti."
1081
 
 
1082
  msgid "Please save your changes to verify settings."
1083
  msgstr "Per favore salva le tue modifiche per verificare i settaggi."
1084
 
 
1085
  msgid "Works Fine"
1086
  msgstr "Funziona Bene"
1087
 
 
1088
  #, php-format
1089
  msgid ""
1090
  "This provider is currently disabled, which means that users can’t register "
1093
  "Questo provider è correntemente disabilitato, e significa che gli utenti non "
1094
  "possono registrarsi o accedere mediante il loro account %s."
1095
 
 
1096
  #, php-format
1097
  msgid ""
1098
  "This provider works fine, but you can test it again. If you don’t want to "
1101
  "Questo provider funziona bene, ma puoi testarlo di nuovo. Se non vuoi che "
1102
  "gli utenti si registrino o accedano ancora con %s puoi disabilitarlo."
1103
 
 
1104
  #, php-format
1105
  msgid ""
1106
  "This provider is currently enabled, which means that users can register or "
1109
  "Questo provider è correntemente abilitato, significa che gli utenti possono "
1110
  "registrarsi o accedere mediante i loro account %s."
1111
 
 
1112
  msgid "Verify Settings Again"
1113
  msgstr "Verifica nuovamente le impostazioni"
1114
 
 
1115
  msgid "Please save your changes before verifying settings."
1116
  msgstr "Per favore salva le tue modifiche prima di verificare le impostazioni."
1117
 
 
 
 
1118
  msgid "Authentication successful"
1119
  msgstr "Autenticazione riuscita"
1120
 
 
 
 
1121
  msgid "Authentication error"
1122
  msgstr "Errore di autenticazione"
1123
 
 
1124
  msgid "Unlink successful."
1125
  msgstr "Scollegamento riuscito."
1126
 
 
1127
  msgid "Unlink is not allowed!"
1128
  msgstr "Lo scollegamento non è consentito!"
1129
 
 
 
1130
  msgid "The test was successful"
1131
  msgstr "Il test è riuscito"
1132
 
 
1133
  msgid "Authentication failed"
1134
  msgstr "Autenticazione fallita"
1135
 
 
1136
  msgid "Identifier"
1137
  msgstr "Identificatore"
1138
 
 
1139
  #, fuzzy
1140
  #| msgid "Profile picture"
1141
  msgid "Profile Picture"
1142
  msgstr "Immagine del profilo"
1143
 
 
1144
  #, php-format
1145
  msgid ""
1146
  "Your %1$s account is successfully linked with your account. Now you can sign "
1149
  "Il tuo account %1$s è correttamente collegato al tuo account. Adesso puoi "
1150
  "accedere facilmente con %2$s."
1151
 
 
1152
  #, fuzzy, php-format
1153
  #| msgid ""
1154
  #| "You have already linked a(n) %s account. Please unlink the current and "
1160
  "Hai già collegato un account %s. Per favore scollega quello corrente e "
1161
  "potrai successivamente collegarne un altro a %s."
1162
 
 
1163
  #, fuzzy, php-format
1164
  #| msgid "This %s account is already linked to other user."
1165
  msgid "This %s account is already linked to another user."
1166
  msgstr "Questo account %s è già collegato ad un altro utente."
1167
 
 
1168
  msgid "User registration is currently not allowed."
1169
  msgstr "La registrazione dell'utente non è al momento consentita."
1170
 
 
1171
  #, php-format
1172
  msgid ""
1173
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
1175
  "linked %1$s account or log in with your password!"
1176
  msgstr ""
1177
 
 
1178
  #, fuzzy
1179
  #| msgid "Register For This Site!"
1180
  msgid "Register For This Site"
1181
  msgstr "Registrati per questo sito!"
1182
 
 
1183
  #, fuzzy
1184
  #| msgid "Register"
1185
  msgctxt "Register form submit button label"
1186
  msgid "Register"
1187
  msgstr "Registra"
1188
 
 
1189
  #, php-format
1190
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1191
  msgstr ""
1192
  "%1$s richiede una versione PHP %2$s+, il plugin al momento NON È ATTIVO."
1193
 
 
1194
  #, php-format
1195
  msgid ""
1196
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1199
  "%1$s richiede la versione di WordPress %2$s+. Dato che stai usando una "
1200
  "versione precedente, il plugin al momento NON È ATTIVO."
1201
 
 
 
1202
  #, php-format
1203
  msgid "Please update %1$s to version %2$s or newer."
1204
  msgstr "Please update %1$s to version %2$s or newer."
1205
 
 
 
1206
  msgid "Update now!"
1207
  msgstr "Aggiorna adesso!"
1208
 
 
 
1209
  msgid "Social Login"
1210
  msgstr "Social Login"
1211
 
 
1212
  msgid "Social Accounts"
1213
  msgstr "Account Social"
1214
 
 
 
 
1215
  msgid "Button skin"
1216
  msgstr "Skin del bottone"
1217
 
 
 
 
1218
  msgid "Dark"
1219
  msgstr "Scuro"
1220
 
 
 
 
1221
  msgid "Light"
1222
  msgstr "Chiaro"
1223
 
 
1224
  msgid "Black"
1225
  msgstr "Nero"
1226
 
 
1227
  msgid "White"
1228
  msgstr "Bianco"
1229
 
 
 
 
 
 
1230
  #, php-format
1231
  msgid "Navigate to <b>%s</b>"
1232
  msgstr "Naviga in <b>%s</b>"
1233
 
 
 
 
 
 
 
 
 
 
 
1234
  #, php-format
1235
  msgid "Log in with your %s credentials if you are not logged in"
1236
  msgstr "Accedi con le tue credenziali %s se non sei loggato"
1237
 
 
1238
  #, php-format
1239
  msgid "Click on the App with App ID: <b>%s</b>"
1240
  msgstr "Clicca sull'App con l'App ID: <b>%s</b>"
1241
 
 
1242
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1243
  msgstr ""
1244
  "Sulla barra laterale clicca clicca su \"<b>Accesso Facebook > Impostazioni</"
1245
  "b>\""
1246
 
 
 
1247
  #, fuzzy
1248
  #| msgid ""
1249
  #| "Add the following URL to the \"<b>Valid OAuth redirect URIs</b>\" field: "
1254
  "Aggiungi l'URL seguente al campo \"<b>Valid OAuth redirect URIs</b>\": <b>"
1255
  "%s</b>"
1256
 
 
1257
  msgid "Click on \"<b>Save Changes</b>\""
1258
  msgstr "Clicca su \"<b>Salva Modifiche</b>\""
1259
 
 
 
 
 
1260
  #, php-format
1261
  msgid ""
1262
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1265
  "%1$s consenti solo HTTPS OAuth Redirects. Devi portare il tuo sito a HTTPS "
1266
  "per potere accedere con %1$s."
1267
 
 
 
 
 
1268
  msgid "How to get SSL for my WordPress site?"
1269
  msgstr "Come ottenere l'SSL per il mio sito WordPress?"
1270
 
 
 
 
 
 
 
1271
  #, php-format
1272
  msgid ""
1273
  "To allow your visitors to log in with their %1$s account, first you must "
1282
  "su \"Impostazioni\" e configura il \"%2$s\" ottenuto e \"%3$s\" secondo la "
1283
  "tua App %1$s."
1284
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1285
  #, php-format
1286
  msgctxt "App creation"
1287
  msgid "Create %s"
1288
  msgstr "Crea %s"
1289
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1290
  #, php-format
1291
  msgid "Navigate to %s"
1292
  msgstr "Naviga a %s"
1293
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1294
  #, php-format
1295
  msgid "Log in with your %s credentials if you are not logged in."
1296
  msgstr "Accedi con le tue credenziali %s se non sei loggato."
1297
 
 
1298
  #, fuzzy
1299
  #| msgid ""
1300
  #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
1304
  msgstr ""
1305
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
1306
 
 
1307
  msgid ""
1308
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1309
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1313
  "cliccare sul bottone verde \"<b>Registrati Adesso</b>\", compilare il form "
1314
  "ed infine verificare il tuo account."
1315
 
 
1316
  #, fuzzy, php-format
1317
  #| msgid ""
1318
  #| "Fill \"<b>Display Name</b>\" and \"<b>Contact Email</b>\". The specified "
1324
  "Compila \"<b>Nome mostrato</b>\" e \"<b>Email di contatto</b>\". Il \"Nome "
1325
  "mostrato \" apparirà sulla tua %s!"
1326
 
 
1327
  msgid ""
1328
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1329
  "if you have any."
1330
  msgstr ""
1331
 
 
1332
  #, fuzzy
1333
  #| msgid ""
1334
  #| "Click the \"<b>Create App ID</b>\" button and complete the Security Check."
1336
  msgstr ""
1337
  "Clicca il bottone \"<b>Crea App ID</b>\" e completa la Verifica di Sicurezza."
1338
 
 
1339
  #, fuzzy, php-format
1340
  #| msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
1341
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
1342
  msgstr "Cerca <b>\"%s\"</b> e clicca \"<b>Seleziona</b>\"."
1343
 
 
1344
  #, php-format
1345
  msgid ""
1346
  "Select \"<b>Web</b>\" and enter the following URL to the \"<b>Site URL</b>\" "
1349
  "Seleziona \"<b>Web</b>\" e inserisci la seguente URL nel campo \"<b>URL sito "
1350
  "internet</b>\": <b>%s</b>"
1351
 
 
1352
  #, fuzzy
1353
  #| msgid "Press “<b>Save</b>”"
1354
  msgid "Press “<b>Save</b>”."
1355
  msgstr "Premi “<b>Salva</b>”"
1356
 
 
1357
  #, php-format
1358
  msgid ""
1359
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1362
  "Clicca sulla opzione “<b>%1$s</b>” che troverai sul lato sinistro, sotto“<b>"
1363
  "%2$s</b> - <b>%3$s</b>”"
1364
 
 
1365
  #, fuzzy
1366
  #| msgid "Click on “<b>Save Changes</b>”"
1367
  msgid "Click on “<b>Save Changes</b>”."
1368
  msgstr "Clicca su \"<b>Salva Modifiche</b>”"
1369
 
 
 
1370
  #, fuzzy, php-format
1371
  #| msgid ""
1372
  #| "On the top left side, click on the “<b>%1$s</b>” menu point, then click "
1378
  "In alto a sinistra, clicca nel menù su “<b>%1$s</b>”, quindi clicca “<b>"
1379
  "%2$s</b>”"
1380
 
 
1381
  #, php-format
1382
  msgid ""
1383
  "Enter your domain name to the \"<b>App Domains</b>\" field, probably: <b>%s</"
1386
  "Inserisci il nome del tuo dominio nel campo \"<b>Domini App</b>\", "
1387
  "probabilmente: <b>%s</b>"
1388
 
 
1389
  msgid ""
1390
  "Fill up the \"<b>Privacy Policy URL</b>\" field. Provide a publicly "
1391
  "available and easily accessible privacy policy that explains what data you "
1395
  "privacy policy pubblica e facilmente accessibile, che spieghi quali "
1396
  "informazioni stai raccogliendo e come le userai."
1397
 
 
1398
  msgid ""
1399
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1400
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1401
  "instructions on how users can delete their accounts on your site."
1402
  msgstr ""
1403
 
 
1404
  msgid ""
1405
  "To comply with GDPR, you should already offer possibility to delete accounts "
1406
  "on your site, either by the user or by the admin:"
1407
  msgstr ""
1408
 
 
1409
  msgid ""
1410
  "<u>If each user has an option to delete the account</u>: the URL should "
1411
  "point to a guide showing the way users can delete their accounts."
1412
  msgstr ""
1413
 
 
1414
  msgid ""
1415
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
1416
  "section - usually in the Privacy Policy - with the contact details, where "
1418
  "point to this section of the document."
1419
  msgstr ""
1420
 
 
1421
  #, fuzzy
1422
  #| msgid ""
1423
  #| "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the "
1432
  "l'opzione “<b>Uso Commerciale</b>” che descriva al meglio la tua App, poi "
1433
  "premi \"<b>Salva Modifiche</b>\""
1434
 
 
1435
  #, fuzzy
1436
  #| msgid ""
1437
  #| "Your application is currently private, which means that only you can log "
1446
  "accedere con essa. Nella barra in alto clicca sullo switch all'etichetta "
1447
  "\"<b>In sviluppo</b>\", quindi clicca il bottone \"<b>Cambia modalità</b>\"."
1448
 
 
1449
  #, php-format
1450
  msgid ""
1451
  "By default, your application only has Standard access for the permissions, "
1455
  "should click on the <strong>%6$s</strong> buttons next to them. "
1456
  msgstr ""
1457
 
 
1458
  #, fuzzy, php-format
1459
  #| msgid ""
1460
  #| "At the top of the page you can find your \"<b>App ID</b>\" and you can "
1469
  "\" se clicchi sul bottone \"Mostra\". Questi ti serviranno per la "
1470
  "configurazione del plugin."
1471
 
 
1472
  #, php-format
1473
  msgid ""
1474
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1479
  "the Facebook App, then please check our %2$sdocumentation%3$s."
1480
  msgstr ""
1481
 
 
1482
  msgid "Maintaining the Facebook App:"
1483
  msgstr ""
1484
 
 
1485
  #, php-format
1486
  msgid ""
1487
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1492
  "that we need."
1493
  msgstr ""
1494
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1495
  #, php-format
1496
  msgid "I am done setting up my %s"
1497
  msgstr "Ho completato l'impostazione della mia %s"
1498
 
 
 
1499
  msgid "App ID"
1500
  msgstr "App ID"
1501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1502
  msgid "Required"
1503
  msgstr "Richiesto"
1504
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1505
  #, php-format
1506
  msgid ""
1507
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1510
  "Se non sei sicuro di quale sia il tuo %1$s, gentilmente vai su<a href=\"%2$s"
1511
  "\">Inizia</a>"
1512
 
 
1513
  msgid "App Secret"
1514
  msgstr "App Secret"
1515
 
 
 
1516
  #, php-format
1517
  msgid ""
1518
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
1519
  "longer be able to login with %1$s."
1520
  msgstr ""
1521
 
 
 
1522
  msgid "Find out why?"
1523
  msgstr ""
1524
 
 
1525
  msgid "Continue with <b>Facebook</b>"
1526
  msgstr "Continua con <b>Facebook</b>"
1527
 
 
1528
  #, fuzzy
1529
  #| msgid "Continue with <b>Facebook</b>"
1530
  msgid "Sign up with <b>Facebook</b>"
1531
  msgstr "Continua con <b>Facebook</b>"
1532
 
 
1533
  msgid "Link account with <b>Facebook</b>"
1534
  msgstr "Collega account con <b>Facebook</b>"
1535
 
 
1536
  msgid "Unlink account from <b>Facebook</b>"
1537
  msgstr "Scollega account da <b>Facebook</b>"
1538
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1539
  #, php-format
1540
  msgid ""
1541
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1543
  "Il %1$s inserito sembra non essere valido. Per favore inserisci un %2$s "
1544
  "valido."
1545
 
 
 
1546
  #, php-format
1547
  msgid "Required scope: %1$s"
1548
  msgstr "Campo richiesto: %1$s"
1549
 
 
1550
  msgid "Uniform - Legacy"
1551
  msgstr ""
1552
 
 
1553
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
1554
  msgstr "Clicca su \"<b>Credenziali</b>\" nel menù a sinistra"
1555
 
 
1556
  #, php-format
1557
  msgid ""
1558
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
1561
  "Sotto la sezione \"<b>OAuth 2.0 Client IDs</b>\" trova il tuo Client ID: <b>"
1562
  "%s</b>"
1563
 
 
 
1564
  #, fuzzy, php-format
1565
  #| msgid ""
1566
  #| "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
1572
  "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
1573
  "%2$s</b>."
1574
 
 
 
 
 
1575
  msgid "Click on \"<b>Save</b>\""
1576
  msgstr "Clicca su \"<b>Salva</b>\""
1577
 
 
1578
  #, fuzzy, php-format
1579
  #| msgid ""
1580
  #| "If you don't have a project yet, you'll need to create one. You can do "
1593
  "progetto, clicca sul nome del tuo progetto sulla dashboard, ti apparità una "
1594
  "finestra e dovri cliccare su <b>\"Nuovo Progetto\"</b>. )"
1595
 
 
1596
  #, fuzzy, php-format
1597
  #| msgid ""
1598
  #| "Name your project and then click on the \"<b>Create</b>\" button again"
1601
  "Inserisci un nome per il tuo progetto e poi clicca di nuovo sul bottone "
1602
  "\"<b>Crea</b>\""
1603
 
 
1604
  msgid ""
1605
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
1606
  "have already had a Project, then make sure you select the created project in "
1607
  "the top bar! )"
1608
  msgstr ""
1609
 
 
1610
  #, fuzzy, php-format
1611
  #| msgid ""
1612
  #| "Click the “<b>OAuth consent screen</b>” button on the left hand side."
1613
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
1614
  msgstr "Clicca il bottone “<b>OAuth consent screen</b>” sulla sinistra."
1615
 
 
1616
  #, fuzzy, php-format
1617
  #| msgid ""
1618
  #| "Choose a <b>User Type</b> according to your needs. If you want to enable "
1627
  "Social Login con Google per qualunque utente con un account Google, "
1628
  "seleziona l'opzione Esterna!"
1629
 
 
1630
  #, php-format
1631
  msgid ""
1632
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
1634
  "%1$s!"
1635
  msgstr ""
1636
 
 
1637
  #, fuzzy, php-format
1638
  #| msgid ""
1639
  #| "Enter a name for your App to the \"<b>Application name</b>\" field, which "
1645
  "Inserisci un nome per la tua App nel campo \"<b>Nome applicazione</b>\", che "
1646
  "apparirà come nome dell'app che chiede per il consenso."
1647
 
 
1648
  #, php-format
1649
  msgid ""
1650
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
1651
  "contact you with questions about their consent."
1652
  msgstr ""
1653
 
 
1654
  #, fuzzy, php-format
1655
  #| msgid ""
1656
  #| "Fill the \"<b>Authorized domains</b>\" field with your domain name "
1662
  "Compila il campo \"<b>Domini autorizzati</b>\" col tuo nome del tuo dominio, "
1663
  "probabilmente: <b>%s</b> senza sottodomini!"
1664
 
 
1665
  #, php-format
1666
  msgid ""
1667
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
1668
  "notify you about any changes to your project."
1669
  msgstr ""
1670
 
 
1671
  #, php-format
1672
  msgid ""
1673
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
1674
  "too!"
1675
  msgstr ""
1676
 
 
1677
  #, php-format
1678
  msgid ""
1679
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
1682
  "Sul lato sinistro, clicca nel menù su \"<b>%1$s</b>\", quindi clicca il "
1683
  "bottone \"<b>%2$s</b>\" nella barra superiore."
1684
 
 
1685
  #, fuzzy, php-format
1686
  #| msgid "Choose the \"<b>OAuth client ID</b>\" option."
1687
  msgid "Choose the \"<b>%1$s</b>\" option."
1688
  msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
1689
 
 
1690
  #, fuzzy, php-format
1691
  #| msgid "Select the \"<b>Web application</b>\" under Application type."
1692
  msgid "Select the \"<b>%1$s</b>\" under Application type."
1693
  msgstr "Seleziona \"<b>Applicazione web</b>\" sotto Tipo di applicazione."
1694
 
 
1695
  #, fuzzy, php-format
1696
  #| msgid "Enter a \"<b>Name</b>\" for your OAuth client ID."
1697
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
1698
  msgstr "Inserisci un \"<b>Name</b>\" per il tuo OAuth client ID."
1699
 
 
1700
  #, fuzzy, php-format
1701
  #| msgid "Click on the \"<b>Create</b>\" button"
1702
  msgid "Click on the \"<b>%1$s</b>\" button"
1703
  msgstr "Clicca sul bottone \"<b>Crea</b>\""
1704
 
 
1705
  #, fuzzy, php-format
1706
  #| msgid ""
1707
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
1719
  "cliccando sul suo nome e sarai in grado di fare copia-incolla del "
1720
  "\"<b>Client ID</b>\" e del \"<b>Client Secret</b>\" da lì."
1721
 
 
 
 
 
 
 
 
 
1722
  msgid "Client ID"
1723
  msgstr "Client ID"
1724
 
 
 
 
 
 
 
 
1725
  msgid "Client Secret"
1726
  msgstr "Client Secret"
1727
 
 
1728
  msgid "Select account on each login"
1729
  msgstr "Scegli un account ad ogni accesso"
1730
 
 
1731
  msgid ""
1732
  "Disable, when you don't want to see the account select prompt on each login."
1733
  msgstr ""
1734
  "Disabilita, quando non vuoi vedere la scelta dell'account ad ogni accesso."
1735
 
 
1736
  msgid "Continue with <b>Google</b>"
1737
  msgstr "Continua con <b>Google</b>"
1738
 
 
1739
  #, fuzzy
1740
  #| msgid "Continue with <b>Google</b>"
1741
  msgid "Sign up with <b>Google</b>"
1742
  msgstr "Continua con <b>Google</b>"
1743
 
 
1744
  msgid "Link account with <b>Google</b>"
1745
  msgstr "Collega account con <b>Google</b>"
1746
 
 
1747
  msgid "Unlink account from <b>Google</b>"
1748
  msgstr "Scollega account da <b>Google</b>"
1749
 
 
1750
  #, php-format
1751
  msgid "Required API: %1$s"
1752
  msgstr "API richiesta: %1$s"
1753
 
 
1754
  #, fuzzy
1755
  #| msgid "Find your App and click on the \"<b>Details</b>\" button"
1756
  msgid ""
1758
  "like a gear.)"
1759
  msgstr "Cerca la tua App e clicca sul bottone \"<b>Dettagli</b>\""
1760
 
 
1761
  #, fuzzy
1762
  #| msgid ""
1763
  #| "Click on the \"<b>Create an App</b>\" button on the top right corner."
1765
  msgstr ""
1766
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
1767
 
 
 
1768
  #, fuzzy, php-format
1769
  #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
1770
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1771
  msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
1772
 
 
1773
  #, fuzzy, php-format
1774
  #| msgid ""
1775
  #| "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
1780
  "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
1781
  "%2$s</b>."
1782
 
 
1783
  msgid ""
1784
  "If you don't have a developer account yet, please apply one by filling all "
1785
  "the required details! This is required for the next steps!"
1787
  "Se non hai ancora un account sviluppatore, creane uno compilando tutti i "
1788
  "dettagli richiesti! Questo sarà necessario per i prossimi passi!"
1789
 
 
1790
  #, php-format
1791
  msgid ""
1792
  "Once your developer account is complete, navigate back to <b>%s</b> if you "
1795
  "Una volta il tuo account sviluppatore sarà completo, naviga indietro a <b>"
1796
  "%s</b> se non sei già lì!"
1797
 
 
1798
  #, fuzzy, php-format
1799
  #| msgid "Click on \"<b>Save</b>\""
1800
  msgid "Click on \"<b>%s</b>\"!"
1801
  msgstr "Clicca su \"<b>Salva</b>\""
1802
 
 
1803
  msgid ""
1804
  "Name your project, and go through the basic setup. You’ll need to select "
1805
  "your use case, give a description and enter a name for the App as well."
1806
  msgstr ""
1807
 
 
1808
  #, fuzzy, php-format
1809
  #| msgid "Click \"<b>Edit</b>\"."
1810
  msgid "Click \"<b>%s</b>\"!"
1811
  msgstr "Clicca \"<b>Modifica</b>\"."
1812
 
 
1813
  #, php-format
1814
  msgid ""
1815
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
1817
  "press \"<b>Save Changes</b>\"."
1818
  msgstr ""
1819
 
 
1820
  #, php-format
1821
  msgid ""
1822
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
1823
  "\" section click on the name of your App."
1824
  msgstr ""
1825
 
 
1826
  #, fuzzy, php-format
1827
  #| msgid ""
1828
  #| "Name your project and then click on the \"<b>Create</b>\" button again"
1831
  "Inserisci un nome per il tuo progetto e poi clicca di nuovo sul bottone "
1832
  "\"<b>Crea</b>\""
1833
 
 
1834
  #, fuzzy, php-format
1835
  #| msgid "Choose the \"<b>OAuth client ID</b>\" option."
1836
  msgid "Switch on the \"<b>%s</b>\" option."
1837
  msgstr "Scegli l'opzione \"<b>OAuth client ID</b>\"."
1838
 
 
1839
  #, fuzzy, php-format
1840
  #| msgid ""
1841
  #| "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</"
1844
  msgstr ""
1845
  "Inserisci l'URL del tuo sito nel campo \"<b>Home Page URL</b>\": <b>%s</b>"
1846
 
 
1847
  #, php-format
1848
  msgid ""
1849
  "If you want to get the email address as well, then don’t forget to enable "
1851
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1852
  msgstr ""
1853
 
 
1854
  #, fuzzy, php-format
1855
  #| msgid "Click on \"<b>Save</b>\""
1856
  msgid "Click on \"<b>%s</b>\"."
1857
  msgstr "Clicca su \"<b>Salva</b>\""
1858
 
 
1859
  #, php-format
1860
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
1861
  msgstr ""
1862
 
 
 
1863
  msgid "API Key"
1864
  msgstr "API Key"
1865
 
 
1866
  msgid "API secret key"
1867
  msgstr "API secret key"
1868
 
 
1869
  msgid "Profile image size"
1870
  msgstr "Dimensioni immagine profilo"
1871
 
 
1872
  msgid "Original"
1873
  msgstr "Originale"
1874
 
 
1875
  msgid "Continue with <b>Twitter</b>"
1876
  msgstr "Continua con <b>Twitter</b>"
1877
 
 
1878
  #, fuzzy
1879
  #| msgid "Continue with <b>Twitter</b>"
1880
  msgid "Sign up with <b>Twitter</b>"
1881
  msgstr "Continua con <b>Twitter</b>"
1882
 
 
1883
  msgid "Link account with <b>Twitter</b>"
1884
  msgstr "Collega account con <b>Twitter</b>"
1885
 
 
1886
  msgid "Unlink account from <b>Twitter</b>"
1887
  msgstr "Scollega account da <b>Twitter</b>"
1888
 
 
1889
  #, php-format
1890
  msgid "%s Buttons"
1891
  msgstr "%s Bottoni"
1892
 
 
1893
  msgid "Title:"
1894
  msgstr "Titolo:"
1895
 
 
1896
  msgid "Button style:"
1897
  msgstr "Stile bottone:"
1898
 
 
1899
  msgid "Button align:"
1900
  msgstr "Allineamento bottone:"
1901
 
 
1902
  msgid "Show link buttons"
1903
  msgstr "Mostra bottoni di collegamento"
1904
 
 
1905
  msgid "Show unlink buttons"
1906
  msgstr "Mostra bottoni di scollegamento"
1907
 
 
1908
  msgid "Social login is not allowed with this role!"
1909
  msgstr "L'accesso con Social Login non è consentito con questo ruolo!"
1910
 
 
1911
  msgid "Please enter a username."
1912
  msgstr "Per favore inserisci uno username."
1913
 
 
1914
  msgid ""
1915
  "This username is invalid because it uses illegal characters. Please enter a "
1916
  "valid username."
1918
  "Questo username non è valido perché contiene caratteri non consentiti. Per "
1919
  "favore inserisci uno username valido."
1920
 
 
1921
  #, fuzzy
1922
  #| msgid "This username is already registered. Please choose another one."
1923
  msgid ""
1925
  "another one."
1926
  msgstr "Questo username è già registrato. Per favore scegline un altro."
1927
 
 
1928
  #, fuzzy
1929
  #| msgid "Sorry, that username is not allowed."
1930
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
1931
  msgstr "Mi spiace, quello username non è consentito."
1932
 
 
1933
  msgid "Username"
1934
  msgstr "Username"
1935
 
 
1936
  #, fuzzy
1937
  #| msgid "<strong>ERROR</strong>: Please enter a password."
1938
  msgid "<strong>Error</strong>: Please enter an email address."
1939
  msgstr "<strong>ERRORE</strong>: Per favore inserisci una password."
1940
 
 
1941
  #, fuzzy
1942
  #| msgid "The email address isn&#8217;t correct."
1943
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
1944
  msgstr "L'indirizzo email non è corretto."
1945
 
 
1946
  #, fuzzy
1947
  #| msgid "This email is already registered, please choose another one."
1948
  msgid ""
1950
  "another one."
1951
  msgstr "Questa email è già registrata, per favore scegline un'altra."
1952
 
 
1953
  msgid "Registration confirmation will be emailed to you."
1954
  msgstr "La conferma di registrazione ti sarà inviata per email."
1955
 
 
1956
  #, fuzzy
1957
  #| msgid "<strong>ERROR</strong>: Please enter a password."
1958
  msgid "<strong>Error</strong>: Please enter a password."
1959
  msgstr "<strong>ERRORE</strong>: Per favore inserisci una password."
1960
 
 
1961
  #, fuzzy
1962
  #| msgid ""
1963
  #| "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1966
  "<strong>ERRORE</strong>: Le password non possono contenere il carattere \"\\"
1967
  "\"."
1968
 
 
1969
  #, fuzzy
1970
  #| msgid ""
1971
  #| "<strong>ERROR</strong>: Please enter the same password in both password "
1977
  "<strong>ERRORE</strong>: Per favore inserisci la stessa password in entrambi "
1978
  "i campi."
1979
 
 
1980
  msgid "Password"
1981
  msgstr "Password"
1982
 
 
1983
  msgid "Strength indicator"
1984
  msgstr "Indicatore di forza"
1985
 
 
1986
  msgid "Confirm use of weak password"
1987
  msgstr "Conferma l'utilizzo di una password debole"
1988
 
 
1989
  msgid "Confirm password"
1990
  msgstr "Conferma password"
1991
 
 
1992
  #, php-format
1993
  msgid ""
1994
  "This email is already registered, please login in to your account to link "
1996
  msgstr ""
1997
  "Questa email è già registrata, per favore accedi al tuo account con %1$s."
1998
 
 
1999
  #, php-format
2000
  msgid "Please install and activate %1$s to use the %2$s"
2001
  msgstr "Per favore installa e attiva %1$s per usare %2$s"
2002
 
 
2003
  msgid "Network Activate"
2004
  msgstr ""
2005
 
 
2006
  msgid "Install now!"
2007
  msgstr "Installa ora!"
2008
 
 
2009
  msgid "Social Providers"
2010
  msgstr "Social Provider"
2011
 
 
2012
  #, php-format
2013
  msgid ""
2014
  "The Facebook Sync data needs an approved %1$s and your App must use the "
2015
  "latest %2$s version!"
2016
  msgstr ""
2017
 
 
2018
  #, php-format
2019
  msgid ""
2020
  "Most of these information can only be retrieved, when the field is marked as "
2023
  "Molte di queste informazioni possono essere recuperate quando il campo è "
2024
  "markato come Pubblico sulla pagina utente %s!"
2025
 
 
 
2026
  #, php-format
2027
  msgid "Visit %s"
2028
  msgstr "Visita %s"
2029
 
 
 
2030
  msgid ""
2031
  "On the right side, under \"<b>Manage</b>\", hover over the gear icon and "
2032
  "select \"<b>Web Settings</b>\" option."
2034
  "Sul lato destro, sotto \"<b>Gestisci</b>\", vai sull'icona ad ingranaggio e "
2035
  "seleziona l'opzione \"<b>Impostazioni Web</b>\"."
2036
 
 
 
2037
  msgid "Click \"<b>Edit</b>\"."
2038
  msgstr "Clicca \"<b>Modifica</b>\"."
2039
 
 
 
2040
  #, fuzzy
2041
  #| msgid ""
2042
  #| "Add the following URL to the \"<b>Allowed Return URLs</b>\" field <b>%s</"
2046
  "Aggiungi l'url seguente alle \"<b>URL di Ritorno consentite</b>\" campo <b>"
2047
  "%s</b> "
2048
 
 
 
 
 
 
 
 
2049
  #, php-format
2050
  msgid ""
2051
  "To allow your visitors to log in with their %1$s account, first you must "
2060
  "vai sopra \"Impostazioni\" e configura i \"%2$s\" and \"%3$s\" ottenuti "
2061
  "secondo la tua App %1$s."
2062
 
 
2063
  msgid ""
2064
  "If you don't have a Security Profile yet, you'll need to create one. You can "
2065
  "do this by clicking on the orange \"<b>Create a New Security Profile</b>\" "
2066
  "button on the left side."
2067
  msgstr ""
2068
 
 
2069
  msgid ""
2070
  "Fill \"<b>Security Profile Name</b>\", \"<b>Security Profile Description</b>"
2071
  "\" and \"<b>Consent Privacy Notice URL</b>\"."
2072
  msgstr ""
2073
 
 
2074
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
2075
  msgstr "Una volta compilati tutti i campi richiesti, clicca \"<b>Salva</b>\"."
2076
 
 
2077
  #, php-format
2078
  msgid ""
2079
  "Fill \"<b>Allowed Origins</b>\" with the url of your homepage, probably: <b>"
2082
  "Compila \"<b>Origini Consentite</b>\" con l'url della tua homepage, "
2083
  "probabilmente: <b>%s</b>"
2084
 
 
 
2085
  msgid "When all fields are filled, click \"<b>Save</b>\"."
2086
  msgstr "Quando tutti i campi sono compilati, clicca \"<b>Salva</b>\"."
2087
 
 
2088
  msgid ""
2089
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" at the "
2090
  "middle of the page, under the \"<b>Web Settings</b>\" tab."
2092
  "Cerca i necessari \"<b>Client ID</b>\" e \"<b>Client Secret</b>\" al centro "
2093
  "della pagina, sotto la tab \"<b>Settaggi Web</b>\"."
2094
 
 
2095
  msgid "Continue with <b>Amazon</b>"
2096
  msgstr "Continua con <b>Amazon</b>"
2097
 
 
2098
  #, fuzzy
2099
  #| msgid "Continue with <b>Amazon</b>"
2100
  msgid "Sign up with <b>Amazon</b>"
2101
  msgstr "Continua con <b>Amazon</b>"
2102
 
 
2103
  msgid "Link account with <b>Amazon</b>"
2104
  msgstr "Collega account con <b>Amazon</b>"
2105
 
 
2106
  msgid "Unlink account from <b>Amazon</b>"
2107
  msgstr "Scollega account da <b>Amazon</b>"
2108
 
 
2109
  msgid "Click on the name of your service."
2110
  msgstr "Clicca sul nome del tuo servizio."
2111
 
 
2112
  msgid ""
2113
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
2114
  msgstr ""
2115
  "Clicca il bottone \"<b>Configura</b>\" vicino a \"<b>Accedi con Apple</b>\"."
2116
 
 
 
2117
  #, php-format
2118
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
2119
  msgstr ""
2120
 
 
 
2121
  #, php-format
2122
  msgid ""
2123
  "Fill the \"<b>Domains and Subdomains</b>\" field with your domain name "
2126
  "Compila il campo \"<b>Domini e Sottodomini</b>\" col nome del tuo dominio, "
2127
  "probabilmente: <b>%s</b>"
2128
 
 
 
2129
  #, fuzzy
2130
  #| msgid "Add the following URL to the \"<b>Return URLs</b>\" field: <b>%s</b>"
2131
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2132
  msgstr "Aggiungi l'URL seguente al campo \"<b>URLs di ritorno</b>\": <b>%s</b>"
2133
 
 
2134
  msgid ""
2135
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2136
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2138
  "Premi \"<b>Avanti</b>\" poi \"<b>Fatto</b>\" e infine sul bottone "
2139
  "\"<b>Continua</b>\" e poi su \"<b>Salva</b>\"!"
2140
 
 
2141
  #, php-format
2142
  msgid ""
2143
  "To allow your visitors to log in with their %1$s account, first you must "
2152
  "su \"Impostazioni\" e configura i \"%2$s\", \"%3$s\", \"%4$s\" and \"%5$s\" "
2153
  "ottenuti secondo la tua App %1$s."
2154
 
 
2155
  msgid ""
2156
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
2157
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
2159
  "App!"
2160
  msgstr ""
2161
 
 
2162
  msgid ""
2163
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
2164
  "b>!"
2165
  msgstr ""
2166
  "Accertati di avere <b>SSL</b>, perché <b>Apple consentirà solo url HTTPS</b>!"
2167
 
 
2168
  msgid "1.) Create the associated App:"
2169
  msgstr "1.) Crea l'App associata:"
2170
 
 
2171
  #, php-format
2172
  msgid ""
2173
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
2174
  "option and click the \"Continue\" button."
2175
  msgstr ""
2176
 
 
2177
  #, php-format
2178
  msgid ""
2179
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
2180
  "\"<b>Continue</b>\" button."
2181
  msgstr ""
2182
 
 
2183
  msgid "Enter a \"<b>Description</b>\""
2184
  msgstr "Inserisci una \"<b>Descrizione</b>\""
2185
 
 
2186
  #, php-format
2187
  msgid ""
2188
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
2193
  "inserisci il nome del tuo dominio come reverse-domain, col nome dell'app "
2194
  "alla fine: <b>%s.nslapp</b>"
2195
 
 
2196
  msgid ""
2197
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
2198
  "b>\" option."
2200
  "Sotto la sezione \"<b>Capacità</b>\", spunta l'opzione \"<b>Accedi con "
2201
  "Apple</b>\"."
2202
 
 
2203
  msgid ""
2204
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
2205
  "\"<b>Register</b>\" button."
2207
  "Scrolla su e clicca sul bottone \"<b>Continua</b>\", e dopo clicca sul "
2208
  "bottone \"<b>Registra</b>\"."
2209
 
 
2210
  msgid "2.) Create the Key:"
2211
  msgstr "2.) Crea la Chiave:"
2212
 
 
2213
  #, php-format
2214
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
2215
  msgstr "Sulla sinistra, clicca sulla tab \"<b>%s</b>\"."
2216
 
 
2217
  msgid "Enter a name in the <b>Key Name</b> field."
2218
  msgstr "Inserisci un nome nel campo <b>Nome Chiave</b> ."
2219
 
 
2220
  msgid ""
2221
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
2222
  "b>\"."
2224
  "Spunta l'opzione \"<b>Accedi con Apple</b>\", poi clicca su \"<b>Configura</"
2225
  "b>\"."
2226
 
 
2227
  msgid ""
2228
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
2229
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
2232
  "Se hai App multiple, nel campo \"<b>Scegli ID App Primaria</b>\" "
2233
  "<b>seleziona l'App che hai creato</b>, poi clicca \"<b>Salva</b>\"."
2234
 
 
2235
  msgid ""
2236
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
2237
  "\" button."
2239
  "Concludi premendo il bottone \"<b>Continua</b>\" e poi il bottone "
2240
  "\"<b>Register</b>\"."
2241
 
 
2242
  msgid "<b>Don't download the key yet!</b>"
2243
  msgstr "<b>Non scaricare la chiave ancora!</b>"
2244
 
 
2245
  msgid "3.) Create the Service:"
2246
  msgstr "3.) Crea il Servizio:"
2247
 
 
2248
  #, php-format
2249
  msgid ""
2250
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
2253
  "Vai alla sezione \"<b>%1$s</b>\", che troverai all'interno della tab \"%2$s"
2254
  "\"."
2255
 
 
2256
  #, php-format
2257
  msgid ""
2258
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
2259
  "option and click the \"<b>Continue</b>\" button."
2260
  msgstr ""
2261
 
 
2262
  msgid "Enter a \"<b>Description</b>\"."
2263
  msgstr "Inserisci una \"<b>Descrizione</b>\"."
2264
 
 
2265
  #, php-format
2266
  msgid ""
2267
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
2270
  "Nel campo \"<b>Identificatore</b>\" inserisci il nome del tuo dominio come "
2271
  "reverse-domain, col nome del client alla fine: <b>%s.nslclient</b>"
2272
 
 
2273
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
2274
  msgstr ""
2275
  "<b>Nota:</b> Questo sarà usato come Identificatore di Servizio "
2276
  "successivamente!"
2277
 
 
2278
  msgid ""
2279
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
2280
  msgstr "Premi il bottone \"<b>Continua</b>\" e poi quello \"<b>Registra</b>\"."
2281
 
 
2282
  #, php-format
2283
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
2284
  msgstr ""
2285
  "Nella sezione \"<b>%1$s</b>\", clicca il servizio che hai appena creato."
2286
 
 
2287
  msgid ""
2288
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
2289
  "b>\" button next to it."
2291
  "Spunta l'opzione \"<b>Accedi con Apple</b>\" e clicca il bottone vicino "
2292
  "\"<b>Configura</b>\"."
2293
 
 
2294
  msgid ""
2295
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
2296
  "App what you just created."
2298
  "Se hai App multiple, nel campo \"Primary App ID\" seleziona l'App che hai "
2299
  "appena creato."
2300
 
 
2301
  #, fuzzy
2302
  #| msgid ""
2303
  #| "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" "
2305
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
2306
  msgstr "Premi il bottone \"<b>Continua</b>\" e poi quello \"<b>Registra</b>\"."
2307
 
 
2308
  msgid ""
2309
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
2310
  "button."
2312
  "Concludi premendo il bottone \"<b>Continua</b>\" e quindi sul bottone "
2313
  "\"<b>Salva</b>\"."
2314
 
 
2315
  msgid "4.) Configure Nextend Social Login with your credentials:"
2316
  msgstr "4.) Configura Nextend Social Login con le tue credenziali:"
2317
 
 
2318
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
2319
  msgstr "Vai sulla tab Nextend Social Login > Provider > Apple > Impostazioni."
2320
 
 
2321
  msgid "<strong><u>Private Key ID:</u></strong>"
2322
  msgstr "<strong><u>ID Chiave Privata:</u></strong>"
2323
 
 
 
2324
  #, php-format
2325
  msgid "Navigate to: <b>%s</b>"
2326
  msgstr "Naviga a: <b>%s</b>"
2327
 
 
2328
  msgid "Click on the <b>name of your Key</b>."
2329
  msgstr "Chicca sul <b>nome della tua Chiave</b>."
2330
 
 
2331
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
2332
  msgstr "Troverai l'\"<b>ID Chiave Privata</b>\" sotto \"<b>ID Chiave</b>\"."
2333
 
 
2334
  msgid "<strong><u>Private Key:</u></strong>"
2335
  msgstr "<strong><u>Chiave Privata:</u></strong>"
2336
 
 
2337
  msgid ""
2338
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
2339
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
2343
  "volta scaricato il file, non sarà più disponibile, quindi <b>accertati di "
2344
  "conservare questo file al sicuro</b>!</u> "
2345
 
 
2346
  msgid ""
2347
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
2348
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
2352
  "<b><u>copia tutti i suoi contenuti</u></b> e <b>incollali</b> nel campo "
2353
  "\"<b>Chiave Privata</b>\" di Nextend Social Login."
2354
 
 
2355
  msgid "<strong><u>Team Identifier:</u></strong>"
2356
  msgstr "<strong><u>Identificatore Team:</u></strong>"
2357
 
 
2358
  msgid ""
2359
  "A 10 character long identifier, what you can find on the <b>top-right "
2360
  "corner, just under your name</b>."
2362
  "Un identificatore lungo 10 caratteri, che puoi trovare <b>nell'angolo "
2363
  "superiore destro, proprio sotto il tuo nome</b>."
2364
 
 
2365
  msgid "<strong><u>Service Identifier:</u></strong>"
2366
  msgstr "<strong><u>Identificatore Servizio:</u></strong>"
2367
 
 
2368
  #, php-format
2369
  msgid ""
2370
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
2375
  "il servizio come da suggerimenti, probabilmente finirà con .nslclient, per "
2376
  "esempio.: <b>%s.nslclient</b>"
2377
 
 
2378
  msgid ""
2379
  "Once you filled up all the fields, click on the \"<b>Generate Token</b>\" "
2380
  "button."
2382
  "Una volta compilati tutti i campi, clicca sul bottone \"<b>Genera Token</b>"
2383
  "\"."
2384
 
 
2385
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
2386
  msgstr "Infine <b>verifica le impostazioni</b> e <b>abilita il provider</b>!"
2387
 
 
2388
  msgid ""
2389
  "When you need to change your credentials for some reason, then you must "
2390
  "delete the token, copy the new credentials and generate a new token!"
2392
  "Se dovessi cambiare le tue credenziali per qualsiasi ragione, devi "
2393
  "cancellare il token, copiare le nuove credenziali e generare un nuovo token!"
2394
 
 
2395
  msgid "Delete credentials"
2396
  msgstr "Cancella credenziali"
2397
 
 
2398
  msgid "Private Key ID"
2399
  msgstr "ID Chiave Privata"
2400
 
 
2401
  msgid "Private Key"
2402
  msgstr "Chiave Privata"
2403
 
 
2404
  msgid "Team Identifier"
2405
  msgstr "Identificatore Team"
2406
 
 
2407
  msgid "Service Identifier"
2408
  msgstr "Identificatore Servizio"
2409
 
 
2410
  msgid "Generate Token"
2411
  msgstr "Genera Token"
2412
 
 
2413
  msgid "Continue with <b>Apple</b>"
2414
  msgstr "Continua con <b>Apple</b>"
2415
 
 
2416
  #, fuzzy
2417
  #| msgid "Continue with <b>Apple</b>"
2418
  msgid "Sign up with <b>Apple</b>"
2419
  msgstr "Continua con <b>Apple</b>"
2420
 
 
2421
  msgid "Link account with <b>Apple</b>"
2422
  msgstr "Collega account con <b>Apple</b>"
2423
 
 
2424
  msgid "Unlink account from <b>Apple</b>"
2425
  msgstr "Scollega account da <b>Apple</b>"
2426
 
 
2427
  #, php-format
2428
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2429
  msgstr ""
2430
  "C'è stato un errore durante la memorizzazione del timestamp di scadenza: %1$s"
2431
 
 
 
 
 
2432
  #, php-format
2433
  msgid "Token generation failed: %1$s"
2434
  msgstr "Generazione del Token fallita: %1$s"
2435
 
 
2436
  msgid "Please check your credentials!"
2437
  msgstr "Gentilmente verifica le tue credenziali!"
2438
 
 
2439
  msgid "Private key format is not valid!"
2440
  msgstr "Il formato Chiave Privata non è valido!"
2441
 
 
2442
  #, php-format
2443
  msgid ""
2444
  "%s detected that your Apple credentials have expired. Please delete the "
2447
  "%s ha rilevato che le tue credenziali Apple sono scadute. Gentilmente "
2448
  "elimina le credenziali correnti e generane delle nuove!"
2449
 
 
2450
  msgid "Apple Credentials"
2451
  msgstr "Credenziali Apple"
2452
 
 
 
2453
  #, php-format
2454
  msgid "Click on the name of your %s App."
2455
  msgstr "Clicca sul nome della tua %s App."
2456
 
 
2457
  msgid ""
2458
  "Select the \"<b>Settings</b>\" tab and scroll down to the Authentication "
2459
  "section!"
2461
  "Seleziona la tab \"<b>Settaggi</b>\" e scrolla giù alla sezione "
2462
  "Autenticazione!"
2463
 
 
 
 
2464
  #, fuzzy
2465
  #| msgid ""
2466
  #| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2467
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2468
  msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2469
 
 
2470
  msgid "Click on the \"<b>Save Changes</b>\" button."
2471
  msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"."
2472
 
 
2473
  msgid ""
2474
  "Click on the \"<b>Registering new application</b>\" button under the "
2475
  "Applications tab."
2477
  "Clicca sul bottone \"<b>Registra nuova applicazione</b>\" sotto la tab "
2478
  "Applicazioni."
2479
 
 
2480
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
2481
  msgstr ""
2482
  "Inserisci una \"<b>Etichetta</b>\" e una \"<b>Descrizione</b>\" per la tua "
2483
  "App."
2484
 
 
2485
  #, php-format
2486
  msgid ""
2487
  "Fill \"<b>Website</b>\" with the url of your homepage, probably: <b>%s</b>"
2489
  "Compila \"<b>Sito Internet</b>\" con la url della tua homepage, "
2490
  "probabilmente: <b>%s</b>"
2491
 
 
2492
  msgid ""
2493
  "Complete the Human test and click the \"<b>Register my application</b>\" "
2494
  "button."
2496
  "Completa il \"Test Umano\" e clicca il bottone \"<b>Registra la mia "
2497
  "applicazione</b>\"."
2498
 
 
2499
  #, php-format
2500
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
2501
  msgstr ""
2502
  "Compila il campo \"<b>Domini</b>\" col nome del tuo dominio, come: <b>%s</b>"
2503
 
 
2504
  msgid ""
2505
  "Select \"<b>Read only</b>\" as Default Access under the Authentication "
2506
  "section."
2508
  "Seleziona \"<b>Solo lettura</b>\" come Accesso Default nella sezione "
2509
  "Authentication."
2510
 
 
2511
  msgid "Click on the \"<b>Save Changes</b>\" button!"
2512
  msgstr "Clicca sul bottone \"<b>Salva Modifiche</b>\"!"
2513
 
 
2514
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
2515
  msgstr "Naviga alla tab \"<b>Dettagli</b>\" della tua Applicazione!"
2516
 
 
2517
  msgid ""
2518
  "Here you can see your \"<b>API Key</b>\" and \"<b>API Secret</b>\". These "
2519
  "will be needed in the plugin's settings."
2521
  "Qui puoi vedere la tua \"<b>Chiave API</b>\" e \"<b>API Secret</b>\". Queste "
2522
  "serviranno nei settaggi del plugin."
2523
 
 
2524
  msgid "API Secret"
2525
  msgstr "API Secret"
2526
 
 
2527
  msgid "Continue with <b>Disqus</b>"
2528
  msgstr "Continua con <b>Disqus</b>"
2529
 
 
2530
  #, fuzzy
2531
  #| msgid "Continue with <b>Disqus</b>"
2532
  msgid "Sign up with <b>Disqus</b>"
2533
  msgstr "Continua con <b>Disqus</b>"
2534
 
 
2535
  msgid "Link account with <b>Disqus</b>"
2536
  msgstr "Collega account con <b>Disqus</b>"
2537
 
 
2538
  msgid "Unlink account from <b>Disqus</b>"
2539
  msgstr "Scollega account da <b>Disqus</b>"
2540
 
 
2541
  #, php-format
2542
  msgid "Click on the name of the App you configured %s with."
2543
  msgstr "Clicca sul nome dell'App che hai configurato per %s."
2544
 
 
2545
  #, php-format
2546
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2547
  msgstr "Accertati che l'<b>URL della Homepage</b> coincida con: <b>%s</b>"
2548
 
 
 
2549
  #, fuzzy
2550
  #| msgid ""
2551
  #| "Add the following URL to the <b>Authorization callback URL</b> field: <b>"
2555
  "Aggiungi questa URL nel campo della <b>Authorization callback URL</b>: <b>"
2556
  "%s</b>"
2557
 
 
2558
  msgid "Press the <b>Update application</b> button to save the changes."
2559
  msgstr ""
2560
  "Clicca sul botton <b>Aggiorna applicatione</b>per salvare le modifiche."
2561
 
 
2562
  #, php-format
2563
  msgid ""
2564
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
2567
  "Accertati che la tab <b>%1$s</b> sia selezionata e clicca sul bottone <b>"
2568
  "%2$s</b>."
2569
 
 
2570
  msgid ""
2571
  "Enter a name into the <b>Application name</b> field. Users will see this "
2572
  "name, when they authorize your app at the OAuth consent screen!"
2574
  "Inserisci un nome nel campo <b>Nome Applicazione</b>. Gli utenti vedranno "
2575
  "questo nome, quando autorizzeranno la tua app nella schermata OAuth!"
2576
 
 
2577
  #, php-format
2578
  msgid ""
2579
  "Fill <b>Homepage URL</b> with the url of your homepage, probably: <b>%s</b>"
2581
  "Compila <b>Homepage URL</b> con l'url della tua homepage, probabilmente: <b>"
2582
  "%s</b>"
2583
 
 
2584
  msgid ""
2585
  "In the <b>Description</b> field you should explain what this App will be "
2586
  "used for."
2588
  "Nel campo <b>Descrizione</b> dovresti spiegare per cosa è impiegata questa "
2589
  "App."
2590
 
 
2591
  msgid "Click the <b>Register application</b> button."
2592
  msgstr "Clicca il bottone <b>Regisstra applicazione</b>."
2593
 
 
2594
  msgid ""
2595
  "Find the necessary <b>Client ID</b> and <b>Client Secret</b> at the middle "
2596
  "of the page. These will be needed in the plugin's settings!"
2598
  "Cerca il <b>Client ID</b> and il <b>Client Secret</b>richiesti al centro "
2599
  "della pagina. Questi saranno necessari nei settaggi del plugin!"
2600
 
 
2601
  #, php-format
2602
  msgid ""
2603
  "<b>Important note:</b> The email address is only retrievable, if there is a "
2604
  "public email address set at the %1$s profile page%2$s!"
2605
  msgstr ""
2606
 
 
2607
  msgid "Continue with <b>GitHub</b>"
2608
  msgstr "Continua con <b>GitHub</b>"
2609
 
 
2610
  #, fuzzy
2611
  #| msgid "Continue with <b>GitHub</b>"
2612
  msgid "Sign up with <b>GitHub</b>"
2613
  msgstr "Continua con <b>GitHub</b>"
2614
 
 
2615
  msgid "Link account with <b>GitHub</b>"
2616
  msgstr "Collega account con <b>GitHub</b>"
2617
 
 
2618
  msgid "Unlink account from <b>GitHub</b>"
2619
  msgstr "Scollega account da <b>GitHub</b>"
2620
 
 
2621
  #, fuzzy, php-format
2622
  #| msgid "Navigate to %s"
2623
  msgid "Navigate to your %s"
2624
  msgstr "Naviga a %s"
2625
 
 
2626
  #, php-format
2627
  msgid "Select your %s App and click on the LINE Login section."
2628
  msgstr ""
2629
 
 
2630
  #, fuzzy
2631
  #| msgid ""
2632
  #| "Add the following URL to the \"<b>Callback URLs</b>\" field: <b>%s</b>"
2633
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2634
  msgstr "Aggiungi l'URL seguente al campo \"<b>Callback URLs</b>\": <b>%s</b>"
2635
 
 
2636
  #, php-format
2637
  msgid ""
2638
  "Editing Live Apps are only possible with a %s. So please make sure you own "
2641
  "La modifica delle Live Apps sono possibili solo con un %s. Gentilmente "
2642
  "accertati di possederne uno!"
2643
 
 
2644
  #, fuzzy
2645
  #| msgid "Click the \"<b>Create</b>\" button!"
2646
  msgid "Click the \"<b>Create a new provider</b>\" button."
2647
  msgstr "Clicca il bottone\"<b>Crea</b>\"!"
2648
 
 
2649
  #, fuzzy
2650
  #| msgid ""
2651
  #| "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
2655
  msgstr ""
2656
  "Compila il campo \"<b>Nome App</b>\" e clicca il bottone \"<b>Crea App</b>\"."
2657
 
 
2658
  #, fuzzy
2659
  #| msgid ""
2660
  #| "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with "
2666
  "Sotto la sezione \"<b>Capacità</b>\", spunta l'opzione \"<b>Accedi con "
2667
  "Apple</b>\"."
2668
 
 
2669
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
2670
  msgstr ""
2671
 
 
2672
  msgid ""
2673
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
2674
  "created."
2675
  msgstr ""
2676
 
 
2677
  #, fuzzy
2678
  #| msgid "Click on \"<b>Save</b>\""
2679
  msgid "Select your \"<b>Region</b>\"."
2680
  msgstr "Clicca su \"<b>Salva</b>\""
2681
 
 
2682
  msgid ""
2683
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
2684
  "description</b>\". These will appear on your Consent Screen!"
2685
  msgstr ""
2686
 
 
2687
  #, fuzzy
2688
  #| msgid ""
2689
  #| "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with "
2693
  "Sotto la sezione \"<b>Capacità</b>\", spunta l'opzione \"<b>Accedi con "
2694
  "Apple</b>\"."
2695
 
 
2696
  #, fuzzy
2697
  #| msgid ""
2698
  #| "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
2704
  "Leggi e acconsenti ai \"<b>Termini di Utilizzo delle API</b>\" poi clicca il "
2705
  "bottone \"<b>Crea App</b>\"!"
2706
 
 
2707
  msgid ""
2708
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
2709
  "near the \"<b>Email address permission</b>\" label."
2710
  msgstr ""
2711
 
 
2712
  #, fuzzy
2713
  #| msgid ""
2714
  #| "Complete the Human test and click the \"<b>Register my application</b>\" "
2718
  "Completa il \"Test Umano\" e clicca il bottone \"<b>Registra la mia "
2719
  "applicazione</b>\"."
2720
 
 
2721
  msgid ""
2722
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
2723
  "section."
2724
  msgstr ""
2725
 
 
2726
  msgid ""
2727
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
2728
  "Channel!"
2729
  msgstr ""
2730
 
 
2731
  #, fuzzy
2732
  #| msgid ""
2733
  #| "On the top of the page, you will find the necessary \"<b>Client ID</b>\" "
2742
  "\"<b>Client Secret</b>\"! Questi ti serviranno nella configurazione del "
2743
  "plugin."
2744
 
 
2745
  msgid "Channel ID"
2746
  msgstr ""
2747
 
 
2748
  #, fuzzy
2749
  #| msgid "Client Secret"
2750
  msgid "Channel Secret"
2751
  msgstr "Client Secret"
2752
 
 
2753
  #, fuzzy
2754
  #| msgid "Continue with <b>LinkedIn</b>"
2755
  msgid "Continue with <b>Line</b>"
2756
  msgstr "Continua con <b>LinkedIn</b>"
2757
 
 
2758
  #, fuzzy
2759
  #| msgid "Continue with <b>LinkedIn</b>"
2760
  msgid "Sign up with <b>Line</b>"
2761
  msgstr "Continua con <b>LinkedIn</b>"
2762
 
 
2763
  #, fuzzy
2764
  #| msgid "Link account with <b>LinkedIn</b>"
2765
  msgid "Link account with <b>Line</b>"
2766
  msgstr "Collega account con <b>LinkedIn</b>"
2767
 
 
2768
  #, fuzzy
2769
  #| msgid "Unlink account from <b>LinkedIn</b>"
2770
  msgid "Unlink account from <b>Line</b>"
2771
  msgstr "Scollega account da <b>LinkedIn</b>"
2772
 
 
2773
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2774
  msgstr "Clicca sulla tua App e vai nella tab \"<b>Auth</b>\"."
2775
 
 
 
 
2776
  #, fuzzy
2777
  #| msgid ""
2778
  #| "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
2779
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2780
  msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
2781
 
 
 
 
 
 
2782
  msgid "Click on \"<b>Update</b>\" to save the changes"
2783
  msgstr "Clicca su \"<b>Aggiorna</b>\" per salvare le modifiche"
2784
 
 
2785
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
2786
  msgstr "Cerca il bottone \"<b>Crea app</b>\" e cliccaci."
2787
 
 
2788
  msgid "Enter the name of your App to the \"App name\" field."
2789
  msgstr "Inserisci il nome della tua App nel campo \"Nome App\"."
2790
 
 
2791
  #, php-format
2792
  msgid ""
2793
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
2796
  "Cerca la pagina della tua azienda nel campo \"<b>Azienda</b>\". Se non ne "
2797
  "hai ancora una, creane una nuova qui: %s"
2798
 
 
2799
  msgid ""
2800
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
2801
  msgstr ""
2802
  "Inserisci l'URL della tua \"<b>Privacy policy</b>\" e carica un \"<b>logo "
2803
  "per l'App</b>\""
2804
 
 
2805
  msgid ""
2806
  "Read and agree the \"<b>API Terms of Use</b>\" then click the \"<b>Create "
2807
  "App</b>\" button!"
2809
  "Leggi e acconsenti ai \"<b>Termini di Utilizzo delle API</b>\" poi clicca il "
2810
  "bottone \"<b>Crea App</b>\"!"
2811
 
 
2812
  msgid ""
2813
  "You will end up in the App setting area. Click on the \"<b>Products</b>\" "
2814
  "tab."
2816
  "Finirai nell'area delle impostazioni dell'App. Clicca sulla tab "
2817
  "\"<b>Prodotti</b>\"."
2818
 
 
2819
  #, php-format
2820
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
2821
  msgstr "Cerca <b>\"%s\"</b> e clicca \"<b>Seleziona</b>\"."
2822
 
 
2823
  msgid ""
2824
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
2825
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
2829
  "letto e accetto questi termini</b>\", in conclusione premi il bottone "
2830
  "\"<b>Aggiungi prodotto</b>\"."
2831
 
 
2832
  msgid "Click on the \"<b>Auth</b>\" tab."
2833
  msgstr "Clicca sulla tab \"<b>Auth</b>\"."
2834
 
 
2835
  #, fuzzy
2836
  #| msgid ""
2837
  #| "Find \"<b>OAuth 2.0 settings</b>\" section and add the following URL to "
2843
  "Cerca la sezione \"<b>OAuth 2.0 settings</b>\" e aggiungi l'URL seguente al "
2844
  "campo \"<b>Redirect URLs</b>\": <b>%s</b>"
2845
 
 
2846
  msgid ""
2847
  "Find the necessary \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" under "
2848
  "the Application credentials section, on the <b>Auth</b> tab."
2850
  "Cerca il \"<b>Client ID</b>\" and \"<b>Client Secret</b>\" richiesti sotto "
2851
  "la sezione Credenziali applicazione, nella tab <b>Auth</b>."
2852
 
 
2853
  msgid "Continue with <b>LinkedIn</b>"
2854
  msgstr "Continua con <b>LinkedIn</b>"
2855
 
 
2856
  #, fuzzy
2857
  #| msgid "Continue with <b>LinkedIn</b>"
2858
  msgid "Sign up with <b>LinkedIn</b>"
2859
  msgstr "Continua con <b>LinkedIn</b>"
2860
 
 
2861
  msgid "Link account with <b>LinkedIn</b>"
2862
  msgstr "Collega account con <b>LinkedIn</b>"
2863
 
 
2864
  msgid "Unlink account from <b>LinkedIn</b>"
2865
  msgstr "Scollega account da <b>LinkedIn</b>"
2866
 
 
2867
  #, fuzzy, php-format
2868
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2869
  msgid "Log in with your %s credentials if you are not logged in yet."
2870
  msgstr "Accedi con le tue credenziali %s se non sei ancora loggato"
2871
 
 
 
2872
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
2873
  msgstr ""
2874
 
 
2875
  #, fuzzy, php-format
2876
  #| msgid "Click on the App with App ID: <b>%s</b>"
2877
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
2878
  msgstr "Clicca sull'App con l'App ID: <b>%s</b>"
2879
 
 
2880
  #, fuzzy
2881
  #| msgid ""
2882
  #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
2884
  msgstr ""
2885
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
2886
 
 
2887
  #, fuzzy
2888
  #| msgid ""
2889
  #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
2891
  msgstr ""
2892
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
2893
 
 
2894
  #, fuzzy, php-format
2895
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2896
  msgid ""
2898
  "account."
2899
  msgstr "Accedi con le tue credenziali %s se non sei ancora loggato"
2900
 
 
2901
  #, fuzzy
2902
  #| msgid "Click on \"<b>Save</b>\""
2903
  msgid "Click on \"<b>New registration</b>\"."
2904
  msgstr "Clicca su \"<b>Salva</b>\""
2905
 
 
2906
  #, fuzzy
2907
  #| msgid ""
2908
  #| "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
2910
  msgstr ""
2911
  "Compila il campo \"<b>Domini</b>\" col nome del tuo dominio, come: <b>%s</b>"
2912
 
 
2913
  msgid ""
2914
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2915
  "account types."
2916
  msgstr ""
2917
 
 
2918
  #, fuzzy
2919
  #| msgid ""
2920
  #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
2922
  msgstr ""
2923
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
2924
 
 
2925
  #, fuzzy
2926
  #| msgid ""
2927
  #| "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" "
2929
  msgid "Create your App with the \"<b>Register</b>\" button."
2930
  msgstr "Premi il bottone \"<b>Continua</b>\" e poi quello \"<b>Registra</b>\"."
2931
 
 
2932
  #, fuzzy
2933
  #| msgid "Click on the \"<b>Auth</b>\" tab."
2934
  msgid "You land on the \"<b>Overview</b>\" page."
2935
  msgstr "Clicca sulla tab \"<b>Auth</b>\"."
2936
 
 
2937
  msgid ""
2938
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
2939
  "(client) ID</b> in the plugin settings."
2940
  msgstr ""
2941
 
 
2942
  msgid ""
2943
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
2944
  "Client credentials label."
2945
  msgstr ""
2946
 
 
2947
  #, fuzzy
2948
  #| msgid "Click on \"<b>Save</b>\""
2949
  msgid "Click on \"<b>New client secret</b>\"."
2950
  msgstr "Clicca su \"<b>Salva</b>\""
2951
 
 
2952
  #, fuzzy
2953
  #| msgid "Enter a \"<b>Description</b>\"."
2954
  msgid "Fill the \"<b>Description</b>\" field."
2955
  msgstr "Inserisci una \"<b>Descrizione</b>\"."
2956
 
 
2957
  #, fuzzy
2958
  #| msgid ""
2959
  #| "Add the following URL to the \"<b>Redirect URLs</b>\" field: <b>%s</b>"
2960
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
2961
  msgstr "Aggiungi l'URL seguente nel campo \"<b>Redirect URLs</b>\": <b>%s</b>"
2962
 
 
2963
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
2964
  msgstr ""
2965
 
 
2966
  #, fuzzy
2967
  #| msgid ""
2968
  #| "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
2974
  "Qui vedrai il tuo \"<b>Client ID</b>\" e il tuo \"<b>Client Secret</b>\". "
2975
  "Questi saranno richiesti nei settaggi del plugin."
2976
 
 
2977
  msgid "Application (client) ID"
2978
  msgstr ""
2979
 
 
2980
  #, fuzzy
2981
  #| msgid "Client Secret"
2982
  msgid "Client secret"
2983
  msgstr "Client Secret"
2984
 
 
2985
  #, fuzzy
2986
  #| msgid "Continue with <b>Yahoo</b>"
2987
  msgid "Continue with <b>Microsoft</b>"
2988
  msgstr "Continua con <b>Yahoo</b>"
2989
 
 
2990
  #, fuzzy
2991
  #| msgid "Continue with <b>Yahoo</b>"
2992
  msgid "Sign up with <b>Microsoft</b>"
2993
  msgstr "Continua con <b>Yahoo</b>"
2994
 
 
2995
  #, fuzzy
2996
  #| msgid "Link account with <b>Yahoo</b>"
2997
  msgid "Link account with <b>Microsoft</b>"
2998
  msgstr "Collega account con <b>Yahoo</b>"
2999
 
 
3000
  #, fuzzy
3001
  #| msgid "Unlink account from <b>Yahoo</b>"
3002
  msgid "Unlink account from <b>Microsoft</b>"
3003
  msgstr "Scollega account da <b>Yahoo</b>"
3004
 
 
 
3005
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
3006
  msgstr ""
3007
  "C'è uno swich Sandbox/Live. Accertati che \"<b>Live</b>\" sia selezionato!"
3008
 
 
3009
  #, php-format
3010
  msgid "Click on the name of your %s App, under the REST API apps section."
3011
  msgstr "Clicca sul nome della tua %s App, sotto la sezione dell'app REST API."
3012
 
 
3013
  msgid ""
3014
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3015
  "b>\" heading and click \"<b>Show</b>\"."
3017
  "Scendi giù fino a \"<b>SETTAGGI APP LIVE</b>\", cerca il titolo \"<b>Live "
3018
  "Return URL</b>\" e clicca su \"<b>Mostra</b>\"."
3019
 
 
 
3020
  #, fuzzy
3021
  #| msgid ""
3022
  #| "Add the following URL to the \"<b>Live Return URL</b>\" field: <b>%s</b> "
3024
  msgstr ""
3025
  "Aggiungi l'URL seguente al campo \"<b>Live Return URL</b>\": <b>%s</b> "
3026
 
 
3027
  msgid "Click on \"Save\""
3028
  msgstr "Clicca su \"Salva\""
3029
 
 
3030
  #, fuzzy, php-format
3031
  #| msgid ""
3032
  #| "Editing Live Apps are only possible with a %s. So please make sure you "
3038
  "La modifica delle Live Apps sono possibili solo con un %s. Gentilmente "
3039
  "accertati di possederne uno!"
3040
 
 
3041
  msgid "Click on Registration and create a Business account."
3042
  msgstr ""
3043
 
 
3044
  msgid "If you are done, follow the guide from the 5. step."
3045
  msgstr ""
3046
 
 
3047
  #, fuzzy, php-format
3048
  #| msgid "Log in with your %s credentials if you are not logged in."
3049
  msgid "Log in with your %s credentials."
3050
  msgstr "Accedi con le tue credenziali %s se non sei loggato."
3051
 
 
3052
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
3053
  msgstr "Clicca il bottone \"<b>Crea App</b>\" nella sezione REST API dell'app."
3054
 
 
3055
  msgid ""
3056
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
3057
  msgstr ""
3058
  "Compila il campo \"<b>Nome App</b>\" e clicca il bottone \"<b>Crea App</b>\"."
3059
 
 
3060
  msgid ""
3061
  "Scroll down to \"<b>LIVE APP SETTINGS</b>\", find the \"<b>Live Return URL</"
3062
  "b>\" heading then click \"<b>Show</b>\"."
3064
  "Scendi giù fino a \"<b>LIVE APP SETTINGS</b>\", cerca il titolo \"<b>Live "
3065
  "Return URL</b>\" e poi clicca \"<b>Mostra</b>\"."
3066
 
 
3067
  msgid ""
3068
  "Scroll down to \"<b>App feature options</b>\" section and tick \"<b>Log In "
3069
  "with PayPal</b>\"."
3071
  "Scendi giù fino alla sezione \"<b>Caratteristiche e Opzioni dell'App</b>\" e "
3072
  "spunta \"<b>Accedi con PayPal</b>\"."
3073
 
 
3074
  msgid ""
3075
  "Click \"<b>Advanced Options</b>\" which can be found at the end of text "
3076
  "after \"<b>Connect with PayPal (formerly Log In with PayPal)</b>\"."
3078
  "Clicca \"<b>Opzioni Avanzate</b>\" che possono essere trovate alla fine del "
3079
  "testo dopo \"<b>Connettiti con PayPal (formalmente Accedi con PayPal)</b>\"."
3080
 
 
3081
  msgid "Tick \"<b>Full name</b>\"."
3082
  msgstr "Spunta \"<b>Nome completo</b>\"."
3083
 
 
3084
  msgid ""
3085
  "\"<b>Email address</b>\" now requires an App Review by PayPal. To get the "
3086
  "email address as well, <b>please submit your App for a review</b> after your "
3089
  "make sure the Email scope is not \"Enabled\" in our PayPal Settings tab."
3090
  msgstr ""
3091
 
 
3092
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
3093
  msgstr ""
3094
  "Compila \"<b>URL Privacy policy</b>\" e \"<b>URL Accordo con l'utente</b>\"."
3095
 
 
3096
  msgid ""
3097
  "Scroll up to \"<b>LIVE API CREDENTIALS</b>\" section and find the necessary "
3098
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\"! ( Make sure you are in "
3102
  "\"<b>Client ID</b>\" and \"<b>Secret</b>\" richiesti! (Accertati di trovarti "
3103
  "nella modalità \"<b>Live</b>\" e non quella \"Sandbox\". )"
3104
 
 
3105
  msgid "Secret"
3106
  msgstr "Secret"
3107
 
 
3108
  msgid "Email scope"
3109
  msgstr ""
3110
 
 
3111
  msgid "Disable, when you have no rights for email address."
3112
  msgstr "Disabilita, quando non hai diritti sull'indirizzo email."
3113
 
 
3114
  msgid "Continue with <b>PayPal</b>"
3115
  msgstr "Continua con <b>PayPal</b>"
3116
 
 
3117
  #, fuzzy
3118
  #| msgid "Continue with <b>PayPal</b>"
3119
  msgid "Sign up with <b>PayPal</b>"
3120
  msgstr "Continua con <b>PayPal</b>"
3121
 
 
3122
  msgid "Link account with <b>PayPal</b>"
3123
  msgstr "Collega account con <b>PayPal</b>"
3124
 
 
3125
  msgid "Unlink account from <b>PayPal</b>"
3126
  msgstr "Scollega account da <b>PayPal</b>"
3127
 
 
3128
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3129
  msgstr "Clicca sul bottone \"<b>Gestisci</b>\" vicino l'App associata."
3130
 
 
3131
  msgid "Go to the \"<b>Settings</b>\" menu"
3132
  msgstr "Vai al menu \"<b>Settaggi</b>\""
3133
 
 
 
3134
  #, fuzzy
3135
  #| msgid ""
3136
  #| "Add the following URL to the \"<b>Authorized redirect URI</b>\" field: <b>"
3140
  "Aggiungi l'URL seguente al campo \"<b>Authorized redirect URI</b>\": <b>%s</"
3141
  "b>"
3142
 
 
3143
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3144
  msgstr "Cerca il bottone \"<b>Crea app</b>\" e cliccaci."
3145
 
 
3146
  msgid ""
3147
  "Enter the <b>Title</b> for your App and select \"<b>Website</b>\" as "
3148
  "platform."
3150
  "Inserisci il <b>Titolo</b> per la tua App e seleziona \"<b>Sito internet</b>"
3151
  "\" come piattaforma."
3152
 
 
3153
  #, php-format
3154
  msgid ""
3155
  "Fill \"<b>Website address</b>\" with the url of your homepage, probably: <b>"
3158
  "Compila \"<b>Indirizzo sito internet</b>\" con l'url della tua homepage, "
3159
  "probabilmente: <b>%s</b>"
3160
 
 
3161
  #, php-format
3162
  msgid ""
3163
  "Fill the \"<b>Base domain</b>\" field with your domain, probably: <b>%s</b>"
3165
  "Compila il campo \"<b>Dominio base</b>\" col tuo dominio, probabilmente: <b>"
3166
  "%s</b>"
3167
 
 
3168
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
3169
  msgstr ""
3170
  "Quando tutti i campi sono compilati, clicca il bottone \"<b>Carica app</b>\"."
3171
 
 
3172
  msgid ""
3173
  "<b>Fill the information form</b> of your app, <b>upload an app icon</b> then "
3174
  "click <b>Save</b>."
3176
  "<b>Compila il form delle informazioni</b> della tua app, <b>carica una icona "
3177
  "per l'app</b> e poi clicca su <b>Salva</b>."
3178
 
 
3179
  msgid "Pick <b>Settings</b> at the left-hand menu "
3180
  msgstr "Seleziona <b>Settaggi</b> nel menu a sinistra "
3181
 
 
3182
  msgid "<b>Save</b> your app"
3183
  msgstr "<b>Salva</b> la tua app"
3184
 
 
3185
  msgid ""
3186
  "Find the necessary \"<b>App ID</b>\" and \"<b>Secure key</b>\" at the top of "
3187
  "the Settings page where you just hit the save button."
3189
  "Cerca l'\"<b>App ID</b>\" e la \"<b>Secure key</b>\" richieste in alta nella "
3190
  "pagina Settaggi dove hai premuto il bottone per il salvataggio."
3191
 
 
3192
  msgid "Secure key"
3193
  msgstr "Secure key"
3194
 
 
3195
  msgid "Continue with <b>VK</b>"
3196
  msgstr "Continua con <b>VK</b>"
3197
 
 
3198
  #, fuzzy
3199
  #| msgid "Continue with <b>VK</b>"
3200
  msgid "Sign up with <b>VK</b>"
3201
  msgstr "Continua con <b>VK</b>"
3202
 
 
3203
  msgid "Link account with <b>VK</b>"
3204
  msgstr "Collega account con <b>VK</b>"
3205
 
 
3206
  msgid "Unlink account from <b>VK</b>"
3207
  msgstr "Scollega account da <b>VK</b>"
3208
 
 
3209
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
3210
  msgstr "Clicca \"<b>Gestisci Settaggi</b>\" sotto la sezione Strumenti!"
3211
 
 
3212
  msgid "Click on the \"<b>Create New Application</b>\" button."
3213
  msgstr "Clicca sul bottone \"<b>Crea Nuova Applicazione</b>\"."
3214
 
 
3215
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
3216
  msgstr "Inserisci \"<b>Nome</b>\" e \"<b>Descrizione</b>\" for la tua App."
3217
 
 
3218
  #, php-format
3219
  msgid ""
3220
  "Fill \"<b>Website URL</b>\" with the url of your homepage, probably: <b>%s</"
3223
  "Compila \"<b>URL del sito internet</b>\" con l'url della tua homepage, "
3224
  "probabilmente: <b>%s</b>"
3225
 
 
3226
  msgid "You can leave the \"Javascript Origins\" field blank!"
3227
  msgstr "Puoi lasciare il campo \"Javascript Origins\" vuoto!"
3228
 
 
3229
  msgid "Complete the human verification test."
3230
  msgstr "Completa il test \"verifica umano\"."
3231
 
 
3232
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
3233
  msgstr "In \"<b>Tipo</b>\" assicurati che \"<b>Web</b>\" sia selezionato!"
3234
 
 
3235
  msgid "Click the \"<b>Create</b>\" button!"
3236
  msgstr "Clicca il bottone\"<b>Crea</b>\"!"
3237
 
 
3238
  msgid ""
3239
  "<b>Click the name of your App</b> either in the Breadcrumb navigation or "
3240
  "next to Editing!"
3241
  msgstr ""
3242
 
 
3243
  msgid ""
3244
  "Here you can see your \"<b>Client ID</b>\" and \"<b>Client Secret</b>\". "
3245
  "These will be needed in the plugin's settings."
3247
  "Qui vedrai il tuo \"<b>Client ID</b>\" e il tuo \"<b>Client Secret</b>\". "
3248
  "Questi saranno richiesti nei settaggi del plugin."
3249
 
 
3250
  msgid "Continue with <b>WordPress.com</b>"
3251
  msgstr "Continua con <b>WordPress.com</b>"
3252
 
 
3253
  #, fuzzy
3254
  #| msgid "Continue with <b>WordPress.com</b>"
3255
  msgid "Sign up with <b>WordPress.com</b>"
3256
  msgstr "Continua con <b>WordPress.com</b>"
3257
 
 
3258
  msgid "Link account with <b>WordPress.com</b>"
3259
  msgstr "Collega account con <b>WordPress.com</b>"
3260
 
 
3261
  msgid "Unlink account from <b>WordPress.com</b>"
3262
  msgstr "Scollega account da <b>WordPress.com</b>"
3263
 
 
3264
  msgid "Click on the App which has its credentials associated with the plugin."
3265
  msgstr "Clicca sull'App che ha le credenziali associate col plugin."
3266
 
 
 
3267
  #, fuzzy
3268
  #| msgid ""
3269
  #| "Add the following URL to the \"<b>Redirect URI(s)</b>\" field: <b>%s</b>"
3271
  msgstr ""
3272
  "Aggiungi la seguente URL al campo \"<b>Redirect URI(s)</b>\": <b>%s</b>"
3273
 
 
3274
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3275
  msgstr ""
3276
  "Clicca sul bottone \"<b>Crea un'App</b>\" nell'angolo in alto a destra."
3277
 
 
3278
  msgid ""
3279
  "Fill the \"<b>Application Name</b>\" and select \"<b>Web Application</b>\" "
3280
  "at \"<b>Application Type</b>\"."
3282
  "Compila \"<b>Nome Applicazione</b>\" e seleziona \"<b>Applicazione Web</b>\" "
3283
  "nei \"<b>Tipi di applicazione</b>\"."
3284
 
 
3285
  msgid "Enter a \"<b>Description</b>\" for your app!"
3286
  msgstr "Inserisci una \"<b>Descrizione</b>\" per la tua app!"
3287
 
 
3288
  #, php-format
3289
  msgid ""
3290
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
3291
  msgstr ""
3292
  "Inserisci l'URL del tuo sito nel campo \"<b>Home Page URL</b>\": <b>%s</b>"
3293
 
 
3294
  msgid ""
3295
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3296
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3298
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3299
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3300
 
 
3301
  msgid "Click \"<b>Create App</b>\"."
3302
  msgstr "Clicca \"<b>Crea App</b>\"."
3303
 
 
3304
  msgid ""
3305
  "On the top of the page, you will find the necessary \"<b>Client ID</b>\" and "
3306
  "\"<b>Client Secret</b>\"! These will be needed in the plugin's settings."
3309
  "\"<b>Client Secret</b>\"! Questi ti serviranno nella configurazione del "
3310
  "plugin."
3311
 
 
3312
  msgid "Continue with <b>Yahoo</b>"
3313
  msgstr "Continua con <b>Yahoo</b>"
3314
 
 
3315
  #, fuzzy
3316
  #| msgid "Continue with <b>Yahoo</b>"
3317
  msgid "Sign up with <b>Yahoo</b>"
3318
  msgstr "Continua con <b>Yahoo</b>"
3319
 
 
3320
  msgid "Link account with <b>Yahoo</b>"
3321
  msgstr "Collega account con <b>Yahoo</b>"
3322
 
 
3323
  msgid "Unlink account from <b>Yahoo</b>"
3324
  msgstr "Scollega account da <b>Yahoo</b>"
3325
 
 
3326
  #, php-format
3327
  msgid "Required permission: %1$s"
3328
  msgstr "Permesso richiesto: %1$s"
3329
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3330
  msgid "OR"
3331
  msgstr "OR"
3332
 
 
 
 
 
3333
  msgid "Social accounts"
3334
  msgstr "Account social"
3335
 
languages/nextend-facebook-connect-nl_NL.mo CHANGED
Binary file
languages/nextend-facebook-connect-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
- "POT-Creation-Date: 2021-09-08 13:29+0200\n"
5
- "PO-Revision-Date: 2021-09-08 13:29+0200\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\n"
@@ -17,15 +17,13 @@ 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-Flags-xgettext: −−default-domain=nextend-facebook-connect\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
24
- #: nextend-facebook-connect/NSL/GDPR.php:34
25
  msgid "What personal data we collect and why we collect it"
26
  msgstr "Welke persoonlijke gegevens we verzamelen en waarom we deze verzamelen"
27
 
28
- #: nextend-facebook-connect/NSL/GDPR.php:35
29
  #, php-format
30
  msgid ""
31
  "%1$s collects data when a visitor register, login or link the account with "
@@ -40,11 +38,9 @@ msgstr ""
40
  "toegangstoken. Ook kan het de profielfoto en meer velden verzamelen met de "
41
  "synchronisatiegegevensfunctie van de Pro-uitbreiding."
42
 
43
- #: nextend-facebook-connect/NSL/GDPR.php:37
44
  msgid "Who we share your data with"
45
  msgstr "Met wie we je gegevens delen"
46
 
47
- #: nextend-facebook-connect/NSL/GDPR.php:38
48
  #, php-format
49
  msgid ""
50
  "%1$s stores the personal data on your site and does not share it with anyone "
@@ -55,11 +51,9 @@ msgstr ""
55
  "behalve het toegangstoken dat werd gebruikt voor de geverifieerde "
56
  "communicatie met de social providers."
57
 
58
- #: nextend-facebook-connect/NSL/GDPR.php:40
59
  msgid "Does the plugin share personal data with third parties"
60
  msgstr "Deelt de plug-in persoonlijke gegevens met derden"
61
 
62
- #: nextend-facebook-connect/NSL/GDPR.php:41
63
  #, php-format
64
  msgid ""
65
  "%1$s use the access token what the social provider gave to communicate with "
@@ -69,11 +63,9 @@ msgstr ""
69
  "de providers te communiceren om het account te verifiëren en veilig toegang "
70
  "te krijgen tot persoonlijke gegevens."
71
 
72
- #: nextend-facebook-connect/NSL/GDPR.php:43
73
  msgid "How long we retain your data"
74
  msgstr "Hoe lang wij je gegevens bewaren"
75
 
76
- #: nextend-facebook-connect/NSL/GDPR.php:44
77
  #, php-format
78
  msgid ""
79
  "%1$s removes the collected personal data when the user deleted from "
@@ -82,12 +74,10 @@ msgstr ""
82
  "%1$s verwijdert de verzamelde persoonlijke gegevens wanneer de gebruiker "
83
  "deze heeft verwijderd uit WordPress."
84
 
85
- #: nextend-facebook-connect/NSL/GDPR.php:46
86
  msgid "Does the plugin use personal data collected by others?"
87
  msgstr ""
88
  "Gebruikt de plugin persoonlijke gegevens die door anderen zijn verzameld?"
89
 
90
- #: nextend-facebook-connect/NSL/GDPR.php:47
91
  #, php-format
92
  msgid ""
93
  "%1$s use the personal data collected by the social providers to create "
@@ -97,11 +87,9 @@ msgstr ""
97
  "verzameld om een account op je site te maken wanneer de bezoeker deze "
98
  "autoriseert."
99
 
100
- #: nextend-facebook-connect/NSL/GDPR.php:49
101
  msgid "Does the plugin store things in the browser?"
102
  msgstr "Slaat de plugin dingen op in de browser?"
103
 
104
- #: nextend-facebook-connect/NSL/GDPR.php:50
105
  #, php-format
106
  msgid ""
107
  "Yes, %1$s must create a cookie for visitors who use the social login "
@@ -113,16 +101,12 @@ msgstr ""
113
  "de communicatie te beveiligen en de gebruiker om te leiden naar de laatste "
114
  "locatie."
115
 
116
- #: nextend-facebook-connect/NSL/GDPR.php:52
117
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
118
  msgstr "Verzamelt de plug-in telemetriegegevens, direct of indirect?"
119
 
120
- #: nextend-facebook-connect/NSL/GDPR.php:53
121
- #: nextend-facebook-connect/NSL/GDPR.php:56
122
  msgid "No"
123
  msgstr "Nee"
124
 
125
- #: nextend-facebook-connect/NSL/GDPR.php:55
126
  msgid ""
127
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
128
  "third party?"
@@ -130,54 +114,32 @@ msgstr ""
130
  "Voegt de plug-in JavaScript, trackingpixels of ingesloten iframes toe van "
131
  "een derde partij?"
132
 
133
- #: nextend-facebook-connect/NSL/GDPR.php:99
134
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57
135
  msgid "User"
136
  msgstr "Gebruiker"
137
 
138
- #: nextend-facebook-connect/admin/admin.php:206
139
  #, php-format
140
  msgid "%s needs json_decode function."
141
  msgstr "%s heeft de functie json_decode nodig."
142
 
143
- #: nextend-facebook-connect/admin/admin.php:206
144
  msgid "Please contact your server administrator and ask for solution!"
145
  msgstr "Neem contact op met je serverbeheerder en vraag om een oplossing!"
146
 
147
- #: nextend-facebook-connect/admin/admin.php:250
148
- #: nextend-facebook-connect/admin/admin.php:280
149
  msgid "Settings saved."
150
  msgstr "Instellingen opgeslagen."
151
 
152
- #: nextend-facebook-connect/admin/admin.php:259
153
  msgid "The activation was successful"
154
  msgstr "De activering was succesvol"
155
 
156
- #: nextend-facebook-connect/admin/admin.php:270
157
  msgid "Deactivate completed."
158
  msgstr "Deactiveren voltooid."
159
 
160
- #: nextend-facebook-connect/admin/admin.php:449
161
- #: nextend-facebook-connect/admin/templates-provider/menu.php:15
162
- #: nextend-facebook-connect/admin/templates/providers.php:89
163
- #: nextend-facebook-connect/admin/templates/providers.php:101
164
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
165
  msgid "Settings"
166
  msgstr "Instellingen"
167
 
168
- #: nextend-facebook-connect/admin/admin.php:532
169
- #: nextend-facebook-connect/includes/oauth2.php:143
170
- #: nextend-facebook-connect/includes/oauth2.php:288
171
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
172
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
173
- #: nextend-social-login-pro/providers/apple/apple-client.php:87
174
- #: nextend-social-login-pro/providers/github/github-client.php:87
175
  #, php-format
176
  msgid "Unexpected response: %s"
177
  msgstr "Onverwachte reactie: %s"
178
 
179
- #: nextend-facebook-connect/admin/admin.php:593
180
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
181
  #, php-format
182
  msgid ""
183
  "%s detected that your login url changed. You must update the Oauth redirect "
@@ -186,16 +148,12 @@ msgstr ""
186
  "%s detecteert dat je inlog-URL is gewijzigd. Je moet de Oauth-omleidings-"
187
  "URI's bijwerken in de bijbehorende social applicatie."
188
 
189
- #: nextend-facebook-connect/admin/admin.php:594
190
- #: nextend-social-login-pro/providers/apple/apple.php:294
191
  msgid "Fix Error"
192
  msgstr "Fout Oplossen"
193
 
194
- #: nextend-facebook-connect/admin/admin.php:594
195
  msgid "Oauth Redirect URI"
196
  msgstr "Oauth Omleidings-URI"
197
 
198
- #: nextend-facebook-connect/admin/admin.php:611
199
  #, php-format
200
  msgid ""
201
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -205,15 +163,12 @@ msgstr ""
205
  "Add-on nodig om Social Login-knoppen weer te geven in het %2$s "
206
  "aanmeldingsformulier!"
207
 
208
- #: nextend-facebook-connect/admin/admin.php:612
209
  msgid "Dismiss and check Pro Addon"
210
  msgstr "Sluiten en vink Pro-uitbreiding aan"
211
 
212
- #: nextend-facebook-connect/admin/admin.php:612
213
  msgid "Dismiss"
214
  msgstr "Sluiten"
215
 
216
- #: nextend-facebook-connect/admin/admin.php:618
217
  #, php-format
218
  msgid ""
219
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -224,15 +179,12 @@ msgstr ""
224
  "\"<b>Pagina voor registreerproces</b>\" en \"<b>OAuth-omleidingspagina voor "
225
  "uri-proxy</b>\" instellen om %1$s correct te laten werken."
226
 
227
- #: nextend-facebook-connect/admin/admin.php:619
228
  msgid "Fix now"
229
  msgstr "Nu maken"
230
 
231
- #: nextend-facebook-connect/admin/admin.php:643
232
  msgid "Activate your Pro Addon"
233
  msgstr "Activeer je Pro Add-on"
234
 
235
- #: nextend-facebook-connect/admin/admin.php:644
236
  #, fuzzy
237
  #| msgid ""
238
  #| "To be able to use the Pro features, you need to activate Nextend Social "
@@ -247,24 +199,18 @@ msgstr ""
247
  "uitbreiding activeren. Je kunt dit doen door hieronder op de knop Activeren "
248
  "te klikken en vervolgens de bijbehorende aankoop te selecteren."
249
 
250
- #: nextend-facebook-connect/admin/admin.php:649
251
- #: nextend-social-login-pro/nextend-social-login-pro.php:110
252
  msgid "Activate"
253
  msgstr "Activeren"
254
 
255
- #: nextend-facebook-connect/admin/admin.php:747
256
  msgid "License key"
257
  msgstr "Licentiesleutel"
258
 
259
- #: nextend-facebook-connect/admin/admin.php:770
260
  msgid "OAuth proxy page"
261
  msgstr "OAuth-proxy-pagina"
262
 
263
- #: nextend-facebook-connect/admin/admin.php:773
264
  msgid "Register flow page"
265
  msgstr "Registreerproces-pagina"
266
 
267
- #: nextend-facebook-connect/admin/admin.php:780
268
  #, php-format
269
  msgid ""
270
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
@@ -272,370 +218,212 @@ msgid ""
272
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
273
  msgstr ""
274
 
275
- #: nextend-facebook-connect/admin/interim.php:12
276
- #: nextend-facebook-connect/admin/interim.php:23
277
  msgid "You have logged in successfully."
278
  msgstr "Je bent succesvol ingelogd."
279
 
280
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
281
  msgid "Login label"
282
  msgstr "Login label"
283
 
284
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
285
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
286
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
287
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
288
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
289
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
290
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
291
  msgid "Reset to default"
292
  msgstr "Reset naar standaard"
293
 
294
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
295
  #, fuzzy
296
  #| msgid "Register layout"
297
  msgid "Register label"
298
  msgstr "Registratie layout"
299
 
300
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
301
  msgid "Link label"
302
  msgstr "Koppel label"
303
 
304
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
305
  msgid "Unlink label"
306
  msgstr "Ontkoppel label"
307
 
308
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
309
  msgid "Default button"
310
  msgstr "Standaard knop"
311
 
312
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
313
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
314
  msgid "Use custom button"
315
  msgstr "Gebruik de aangepaste knop"
316
 
317
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
318
  #, php-format
319
  msgid "Use the %s in your custom button's code to make the label show up."
320
  msgstr ""
321
  "Gebruik de %s in de code van je aangepaste knop om het label te laten "
322
  "verschijnen."
323
 
324
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
325
  msgid "Icon button"
326
  msgstr "Pictogram knop"
327
 
328
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
329
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
330
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
331
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:220
332
- #: nextend-facebook-connect/admin/templates/settings/comment.php:79
333
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8
334
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:127
335
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8
336
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:167
337
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:198
338
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
339
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:198
340
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:179
341
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:347
342
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
343
- #: nextend-facebook-connect/providers/google/admin/settings.php:62
344
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
345
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
346
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
347
- #: nextend-social-login-pro/providers/github/admin/settings.php:48
348
- #: nextend-social-login-pro/providers/line/admin/settings.php:47
349
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:57
350
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:48
351
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:60
352
- #: nextend-social-login-pro/providers/vk/admin/settings.php:48
353
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
354
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47
355
  msgid "Save Changes"
356
  msgstr "Wijzigingen Opslaan"
357
 
358
- #: nextend-facebook-connect/admin/templates-provider/menu.php:13
359
- #: nextend-facebook-connect/admin/templates/providers.php:69
360
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
361
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
362
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
363
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
364
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28
365
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
366
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:8
367
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:8
368
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
369
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:8
370
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
371
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
372
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
373
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8
374
  msgid "Getting Started"
375
  msgstr "Aan de Slag"
376
 
377
- #: nextend-facebook-connect/admin/templates-provider/menu.php:17
378
  msgid "Buttons"
379
  msgstr "Knoppen"
380
 
381
- #: nextend-facebook-connect/admin/templates-provider/menu.php:21
382
  msgid "Sync data"
383
  msgstr "Gegevens synchroniseren"
384
 
385
- #: nextend-facebook-connect/admin/templates-provider/menu.php:24
386
  msgid "Usage"
387
  msgstr "Gebruik"
388
 
389
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11
390
  msgid "Other settings"
391
  msgstr "Overige instellingen"
392
 
393
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16
394
  msgid "Username prefix on register"
395
  msgstr "Voorvoegsel gebruikersnaam bij registratie"
396
 
397
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
398
  msgid "Fallback username prefix on register"
399
  msgstr "Terugval gebruikersnaam prefix bij registratie"
400
 
401
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27
402
  msgid "Used when username is invalid or not stored"
403
  msgstr ""
404
  "Wordt gebruikt wanneer gebruikersnaam ongeldig is of niet is opgeslagen"
405
 
406
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32
407
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
408
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
409
  msgid "Terms and conditions"
410
  msgstr "Algemene voorwaarden"
411
 
412
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
413
  #, php-format
414
  msgid "Override global \"%1$s\""
415
  msgstr "Overschrijd globale \"%1$s\""
416
 
417
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
418
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12
419
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12
420
  msgid "PRO settings"
421
  msgstr "PRO-instellingen"
422
 
423
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28
424
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32
425
  msgid "Ask E-mail on registration"
426
  msgstr "Vraag E-mail bij inschrijving"
427
 
428
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35
429
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69
430
  msgid "Never"
431
  msgstr "Nooit"
432
 
433
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38
434
  msgid "When email is not provided or empty"
435
  msgstr "Wanneer e-mail niet wordt verstrekt of leeg is"
436
 
437
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41
438
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
439
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72
440
  msgid "Always"
441
  msgstr "Altijd"
442
 
443
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46
444
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50
445
  msgid "Ask Username on registration"
446
  msgstr "Vraag Gebruikersnaam bij registratie"
447
 
448
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53
449
  msgid "Never, generate automatically"
450
  msgstr "Nooit, automatisch genereren"
451
 
452
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
453
  msgid "When username is empty or invalid"
454
  msgstr "Wanneer gebruikersnaam leeg of ongeldig is"
455
 
456
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
457
  msgid "Ask Password on registration"
458
  msgstr "Vraag Wachtwoord bij registratie"
459
 
460
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
461
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
462
  msgid "Automatically connect the existing account upon registration"
463
  msgstr "Verbind het bestaande account automatisch bij registratie"
464
 
465
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
466
- #: nextend-facebook-connect/admin/templates/providers.php:47
467
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:86
468
- #: nextend-facebook-connect/admin/templates/settings/general.php:48
469
- #: nextend-facebook-connect/admin/templates/settings/general.php:213
470
- #: nextend-facebook-connect/admin/templates/settings/general.php:228
471
- #: nextend-facebook-connect/admin/templates/settings/general.php:246
472
- #: nextend-facebook-connect/admin/templates/settings/general.php:261
473
- #: nextend-facebook-connect/includes/provider-admin.php:218
474
  msgid "Disabled"
475
  msgstr "Uitgeschakeld"
476
 
477
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88
478
  msgid "Automatic, based on email address"
479
  msgstr "Automatisch, op basis van e-mailadres"
480
 
481
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93
482
  msgid "Disable login for the selected roles"
483
  msgstr "Login voor de geselecteerde rollen uitschakelen"
484
 
485
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113
486
  msgid "Default roles for user who registered with this provider"
487
  msgstr ""
488
  "Standaardrollen voor gebruiker die zich bij deze provider heeft geregistreerd"
489
 
490
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
491
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50
492
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:76
493
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:143
494
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:168
495
- #: nextend-facebook-connect/admin/templates/settings/comment.php:39
496
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35
497
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97
498
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:39
499
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:111
500
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
501
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
502
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
503
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
504
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
505
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
506
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
507
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:199
508
- #: nextend-facebook-connect/widget.php:42
509
  msgid "Default"
510
  msgstr "Standaard"
511
 
512
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
513
  msgid "Register"
514
  msgstr "Registreren"
515
 
516
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58
517
  msgid "Login"
518
  msgstr "Inloggen"
519
 
520
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66
521
  msgid "Link"
522
  msgstr "Koppel"
523
 
524
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84
525
  msgid "Store in meta key"
526
  msgstr "Bewaren in metasleutel"
527
 
528
- #: nextend-facebook-connect/admin/templates-provider/usage.php:9
529
  msgid "Shortcode"
530
  msgstr "Shortcode"
531
 
532
- #: nextend-facebook-connect/admin/templates-provider/usage.php:12
533
  msgid "Important!"
534
  msgstr "Belangrijk!"
535
 
536
- #: nextend-facebook-connect/admin/templates-provider/usage.php:13
537
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
538
  msgstr ""
539
  "De shortcodes worden alleen weergegeven voor gebruikers die nog niet "
540
  "ingelogd zijn!"
541
 
542
- #: nextend-facebook-connect/admin/templates-provider/usage.php:14
543
  msgid "See the full list of shortcode parameters."
544
  msgstr "Zie de volledige lijst met shortcode-parameters."
545
 
546
- #: nextend-facebook-connect/admin/templates-provider/usage.php:31
547
  msgid "Simple link"
548
  msgstr "Eenvoudige link"
549
 
550
- #: nextend-facebook-connect/admin/templates-provider/usage.php:34
551
  msgid "Click here to login or register"
552
  msgstr "Klik hier om in te loggen of te registreren"
553
 
554
- #: nextend-facebook-connect/admin/templates-provider/usage.php:39
555
  msgid "Image button"
556
  msgstr "Knop afbeelding"
557
 
558
- #: nextend-facebook-connect/admin/templates-provider/usage.php:42
559
  msgid "Image url"
560
  msgstr "URL afbeelding"
561
 
562
- #: nextend-facebook-connect/admin/templates/debug.php:7
563
- #: nextend-facebook-connect/admin/templates/header.php:20
564
  msgid "Debug"
565
  msgstr "Debug"
566
 
567
- #: nextend-facebook-connect/admin/templates/debug.php:41
568
  msgid "Test network connection with providers"
569
  msgstr "Test de netwerkverbinding met providers"
570
 
571
- #: nextend-facebook-connect/admin/templates/debug.php:48
572
  msgid "You don't have cURL support, please enable it in php.ini!"
573
  msgstr "Je hebt geen cURL-ondersteuning, schakel dit in in php.ini!"
574
 
575
- #: nextend-facebook-connect/admin/templates/debug.php:58
576
  #, php-format
577
  msgid "Test %1$s connection"
578
  msgstr "Test %1$s connectie"
579
 
580
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
581
  msgid "Fix Oauth Redirect URIs"
582
  msgstr "Fix Oauth Omleidings-URI's"
583
 
584
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13
585
  msgid "Every Oauth Redirect URI seems fine"
586
  msgstr "Elke Oauth Omleidings-URI lijkt in orde"
587
 
588
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32
589
  msgid "Got it"
590
  msgstr "Oké"
591
 
592
- #: nextend-facebook-connect/admin/templates/global-settings.php:28
593
- #: nextend-facebook-connect/admin/templates/menu.php:8
594
  msgid "Global Settings"
595
  msgstr "Algemene Instellingen"
596
 
597
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
598
  msgid "General"
599
  msgstr "Algemeen"
600
 
601
- #: nextend-facebook-connect/admin/templates/global-settings.php:33
602
  msgid "Privacy"
603
  msgstr "Privacy"
604
 
605
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
606
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
607
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
608
  msgid "Login Form"
609
  msgstr "Loginformulier"
610
 
611
- #: nextend-facebook-connect/admin/templates/global-settings.php:39
612
  msgid "Comment"
613
  msgstr "Reactie"
614
 
615
- #: nextend-facebook-connect/admin/templates/header.php:14
616
  msgid "Docs"
617
  msgstr "Documentatie"
618
 
619
- #: nextend-facebook-connect/admin/templates/header.php:17
620
  msgid "Support"
621
  msgstr "Ondersteuning"
622
 
623
- #: nextend-facebook-connect/admin/templates/header.php:23
624
- #: nextend-facebook-connect/admin/templates/menu.php:12
625
  msgid "Pro Addon"
626
  msgstr "Pro-uitbreiding"
627
 
628
- #: nextend-facebook-connect/admin/templates/menu.php:6
629
  msgid "Providers"
630
  msgstr "Providers"
631
 
632
- #: nextend-facebook-connect/admin/templates/pro-addon.php:13
633
- #: nextend-social-login-pro/class-provider-extension.php:213
634
- #: nextend-social-login-pro/class-provider-extension.php:216
635
  msgid "Error"
636
  msgstr "Fout"
637
 
638
- #: nextend-facebook-connect/admin/templates/pro-addon.php:14
639
  msgid ""
640
  "You don’t have sufficient permissions to install and activate plugins. "
641
  "Please contact your site’s administrator!"
@@ -643,13 +431,9 @@ msgstr ""
643
  "Je hebt niet voldoende rechten om plugins te installeren en te activeren. "
644
  "Neem contact op met de sitebeheerder!"
645
 
646
- #: nextend-facebook-connect/admin/templates/pro-addon.php:22
647
- #: nextend-facebook-connect/admin/templates/pro-addon.php:32
648
- #: nextend-facebook-connect/admin/templates/pro.php:34
649
  msgid "Activate Pro Addon"
650
  msgstr "Activeren Pro-uitbreiding"
651
 
652
- #: nextend-facebook-connect/admin/templates/pro-addon.php:23
653
  msgid ""
654
  "Pro Addon is installed but not activated. To be able to use the Pro "
655
  "features, you need to activate it."
@@ -657,42 +441,31 @@ msgstr ""
657
  "Pro-uitbreiding is geïnstalleerd maar niet geactiveerd. Om de Pro-functies "
658
  "te kunnen gebruiken, moet je deze activeren."
659
 
660
- #: nextend-facebook-connect/admin/templates/pro-addon.php:37
661
- #: nextend-facebook-connect/admin/templates/pro-addon.php:142
662
  msgid "Deactivate Pro Addon"
663
  msgstr "Deactiveren Pro-uitbreiding"
664
 
665
- #: nextend-facebook-connect/admin/templates/pro-addon.php:48
666
- #: nextend-facebook-connect/admin/templates/pro.php:43
667
  msgid "Pro Addon is not installed"
668
  msgstr "Pro-uitbreiding is niet geïnstalleerd"
669
 
670
- #: nextend-facebook-connect/admin/templates/pro-addon.php:50
671
  msgid ""
672
  "To access the Pro features, you need to install and activate the Pro Addon."
673
  msgstr ""
674
  "Om toegang te krijgen tot de Pro-functies moet je de Pro-uitbreiding "
675
  "installeren en activeren."
676
 
677
- #: nextend-facebook-connect/admin/templates/pro-addon.php:59
678
  #, php-format
679
  msgid "Install %s now"
680
  msgstr "Installeer %s nu"
681
 
682
- #: nextend-facebook-connect/admin/templates/pro-addon.php:60
683
- #: nextend-facebook-connect/admin/templates/pro.php:47
684
  msgid "Install Pro Addon"
685
  msgstr "Installeer Pro-uitbreiding"
686
 
687
- #: nextend-facebook-connect/admin/templates/pro-addon.php:94
688
  msgid "Activating..."
689
  msgstr "Activeren..."
690
 
691
- #: nextend-facebook-connect/admin/templates/pro-addon.php:118
692
  msgid "Not compatible!"
693
  msgstr "Niet compatibel!"
694
 
695
- #: nextend-facebook-connect/admin/templates/pro-addon.php:119
696
  #, php-format
697
  msgid ""
698
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
@@ -701,15 +474,12 @@ msgstr ""
701
  "%1$s en %2$s zijn niet compatibel. Gelieve %2$s bij te werken naar versie "
702
  "%3$s of nieuwer."
703
 
704
- #: nextend-facebook-connect/admin/templates/pro-addon.php:123
705
  msgid "Update Pro Addon"
706
  msgstr "Update Pro-uitbreiding"
707
 
708
- #: nextend-facebook-connect/admin/templates/pro-addon.php:133
709
  msgid "Pro Addon is installed and activated"
710
  msgstr "Pro-uitbreiding is geïnstalleerd en geactiveerd"
711
 
712
- #: nextend-facebook-connect/admin/templates/pro-addon.php:135
713
  msgid ""
714
  "You installed and activated the Pro Addon. If you don’t want to use it "
715
  "anymore, you can deactivate using the button below."
@@ -717,11 +487,9 @@ msgstr ""
717
  "Je hebt de Pro-uitbreiding geïnstalleerd en geactiveerd. Als je deze niet "
718
  "meer wilt gebruiken, kun je deze uitschakelen met de onderstaande knop."
719
 
720
- #: nextend-facebook-connect/admin/templates/pro.php:8
721
  msgid "Get Pro Addon to unlock more features"
722
  msgstr "Koop Pro-uitbreiding om meer functies te ontgrendelen"
723
 
724
- #: nextend-facebook-connect/admin/templates/pro.php:9
725
  #, php-format
726
  msgid ""
727
  "The features below are available in %s Pro Addon. Get it today and tweak the "
@@ -730,7 +498,6 @@ msgstr ""
730
  "De onderstaande functies zijn beschikbaar in %s Pro-uitbreiding. Koop deze "
731
  "vandaag nog en pas deze geweldige instellingen aan."
732
 
733
- #: nextend-facebook-connect/admin/templates/pro.php:10
734
  msgid ""
735
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
736
  "you can purchase it using the button below."
@@ -738,20 +505,15 @@ msgstr ""
738
  "Als je al een licentie hebt, kunt je je Pro-uitbreiding autoriseren. Anders "
739
  "kun je deze kopen met onderstaande knop."
740
 
741
- #: nextend-facebook-connect/admin/templates/pro.php:14
742
  msgid "Buy Pro Addon"
743
  msgstr "Koop Pro-uitbreiding"
744
 
745
- #: nextend-facebook-connect/admin/templates/pro.php:16
746
  msgid "Authorize Pro Addon"
747
  msgstr "Machtigen Pro-uitbreiding"
748
 
749
- #: nextend-facebook-connect/admin/templates/pro.php:25
750
  msgid "Pro Addon is not activated"
751
  msgstr "Pro-uitbreiding is niet geactiveerd"
752
 
753
- #: nextend-facebook-connect/admin/templates/pro.php:26
754
- #: nextend-facebook-connect/admin/templates/pro.php:44
755
  #, fuzzy
756
  #| msgid ""
757
  #| "To be able to use the Pro features, you need to install and activate the "
@@ -763,7 +525,6 @@ msgstr ""
763
  "Om de Pro-functies te kunnen gebruiken, moet je de Nextend Social Connect "
764
  "Pro-uitbreiding installeren en activeren."
765
 
766
- #: nextend-facebook-connect/admin/templates/providers.php:8
767
  #, php-format
768
  msgid ""
769
  "%1$s detected that you have providers configured but none of them are "
@@ -771,55 +532,33 @@ msgid ""
771
  "one provider enabled!"
772
  msgstr ""
773
 
774
- #: nextend-facebook-connect/admin/templates/providers.php:38
775
  msgid "Not Available"
776
  msgstr "Niet Beschikbaar"
777
 
778
- #: nextend-facebook-connect/admin/templates/providers.php:41
779
  msgid "Not Configured"
780
  msgstr "Niet Geconfigureerd"
781
 
782
- #: nextend-facebook-connect/admin/templates/providers.php:44
783
  msgid "Not Verified"
784
  msgstr "Niet Geverifieerd"
785
 
786
- #: nextend-facebook-connect/admin/templates/providers.php:50
787
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:89
788
- #: nextend-facebook-connect/admin/templates/settings/general.php:51
789
- #: nextend-facebook-connect/admin/templates/settings/general.php:216
790
- #: nextend-facebook-connect/admin/templates/settings/general.php:231
791
- #: nextend-facebook-connect/admin/templates/settings/general.php:249
792
- #: nextend-facebook-connect/admin/templates/settings/general.php:264
793
- #: nextend-facebook-connect/includes/provider-admin.php:221
794
- #: nextend-facebook-connect/providers/google/admin/settings.php:53
795
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
796
  msgid "Enabled"
797
  msgstr "Ingeschakeld"
798
 
799
- #: nextend-facebook-connect/admin/templates/providers.php:62
800
  msgid "Upgrade Now"
801
  msgstr "Nu Bijwerken"
802
 
803
- #: nextend-facebook-connect/admin/templates/providers.php:77
804
- #: nextend-facebook-connect/includes/provider-admin.php:205
805
  msgid "Verify Settings"
806
  msgstr "Instellingen Controleren"
807
 
808
- #: nextend-facebook-connect/admin/templates/providers.php:85
809
- #: nextend-facebook-connect/includes/provider-admin.php:250
810
  msgid "Enable"
811
  msgstr "Inschakelen"
812
 
813
- #: nextend-facebook-connect/admin/templates/providers.php:97
814
- #: nextend-facebook-connect/includes/provider-admin.php:258
815
  msgid "Disable"
816
  msgstr "Uitschakelen"
817
 
818
- #: nextend-facebook-connect/admin/templates/providers.php:122
819
  msgid "Stay Updated"
820
  msgstr "Blijf op de Hoogte"
821
 
822
- #: nextend-facebook-connect/admin/templates/providers.php:123
823
  msgid ""
824
  "Receive info on the latest plugin updates and social provider related "
825
  "changes."
@@ -827,31 +566,24 @@ msgstr ""
827
  "Ontvang informatie over de laatste plugin-updates en wijzigingen bij social "
828
  "providers."
829
 
830
- #: nextend-facebook-connect/admin/templates/providers.php:124
831
  msgid "Enter your email address"
832
  msgstr "Vul je e-mailadres in"
833
 
834
- #: nextend-facebook-connect/admin/templates/providers.php:128
835
  msgid "Subscribe"
836
  msgstr "Inschrijven"
837
 
838
- #: nextend-facebook-connect/admin/templates/providers.php:144
839
  msgid "Saving..."
840
  msgstr "Opslaan…"
841
 
842
- #: nextend-facebook-connect/admin/templates/providers.php:145
843
  msgid "Saving failed"
844
  msgstr "Opslaan mislukt"
845
 
846
- #: nextend-facebook-connect/admin/templates/providers.php:146
847
  msgid "Order Saved"
848
  msgstr "Bestelling Opgeslagen"
849
 
850
- #: nextend-facebook-connect/admin/templates/providers.php:215
851
  msgid "Successfully subscribed!"
852
  msgstr "Succesvol ingeschreven!"
853
 
854
- #: nextend-facebook-connect/admin/templates/providers.php:215
855
  msgid ""
856
  "We'll be bringing you all the latest news and updates about Social Login - "
857
  "right to your inbox."
@@ -859,39 +591,30 @@ msgstr ""
859
  "We brengen je het laatste nieuws en updates over Social Login - direct in je "
860
  "inbox."
861
 
862
- #: nextend-facebook-connect/admin/templates/providers.php:222
863
  msgid "The entered email address is invalid!"
864
  msgstr "Het ingevoerde e-mailadres is ongeldig!"
865
 
866
- #: nextend-facebook-connect/admin/templates/review.php:14
867
  msgid "Rate your experience!"
868
  msgstr "Beoordeel je ervaring!"
869
 
870
- #: nextend-facebook-connect/admin/templates/review.php:15
871
  msgid "Hated it"
872
  msgstr "Haatte het"
873
 
874
- #: nextend-facebook-connect/admin/templates/review.php:16
875
  msgid "Disliked it"
876
  msgstr "Niet zo leuk"
877
 
878
- #: nextend-facebook-connect/admin/templates/review.php:17
879
  msgid "It was ok"
880
  msgstr "Het was oké"
881
 
882
- #: nextend-facebook-connect/admin/templates/review.php:18
883
  msgid "Liked it"
884
  msgstr "Vond het leuk"
885
 
886
- #: nextend-facebook-connect/admin/templates/review.php:19
887
  msgid "Loved it"
888
  msgstr "Vond het geweldig"
889
 
890
- #: nextend-facebook-connect/admin/templates/review.php:31
891
  msgid "Please Leave a Review"
892
  msgstr "Laat alsjeblieft een recensie achter"
893
 
894
- #: nextend-facebook-connect/admin/templates/review.php:32
895
  msgid ""
896
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
897
  "please leave us a review. It will be a tremendous help for us!"
@@ -899,191 +622,60 @@ msgstr ""
899
  "Als je tevreden bent met <b>Nextend Social Login</b> en je hebt een minuutje "
900
  "de tijd, laat dan een beoordeling achter. Je helpt ons daar enorm mee!"
901
 
902
- #: nextend-facebook-connect/admin/templates/review.php:34
903
  msgid "Ok, you deserve it"
904
  msgstr "Ok, je verdient het"
905
 
906
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
907
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:90
908
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:102
909
  msgid "Register form"
910
  msgstr "Registratieformulier"
911
 
912
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
913
  msgid "No Connect button"
914
  msgstr "Geen Verbindingsknop"
915
 
916
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
917
  msgid "Connect button before register"
918
  msgstr "Verbindingsknop voor registratie"
919
 
920
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
921
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
922
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
923
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:27
924
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:99
925
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171
926
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
927
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
928
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171
929
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
930
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
931
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:111
932
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
933
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:169
934
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
935
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
936
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
937
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:248
938
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:299
939
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:304
940
  msgid "Action:"
941
  msgstr "Actie:"
942
 
943
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
944
  msgid "Connect button before account details"
945
  msgstr "Verbindingsknop voor account details"
946
 
947
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
948
  msgid "Connect button after register"
949
  msgstr "Verbindingsknop na registratie"
950
 
951
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44
952
  msgid "Register button style"
953
  msgstr "Registreerknop-stijl"
954
 
955
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56
956
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:149
957
- #: nextend-facebook-connect/admin/templates/settings/comment.php:45
958
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41
959
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:103
960
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:45
961
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:117
962
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
963
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:117
964
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
965
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:114
966
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
967
  msgid "Fullwidth"
968
  msgstr ""
969
 
970
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:62
971
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155
972
- #: nextend-facebook-connect/admin/templates/settings/comment.php:51
973
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:47
974
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:109
975
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:51
976
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:123
977
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:51
978
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:123
979
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:63
980
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:120
981
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:36
982
- #: nextend-facebook-connect/widget.php:47
983
  msgid "Icon"
984
  msgstr "Icoon"
985
 
986
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:70
987
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
988
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
989
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
990
  msgid "Register layout"
991
  msgstr "Registratie layout"
992
 
993
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:82
994
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:174
995
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60
996
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122
997
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:64
998
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:136
999
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1000
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1001
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1002
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1003
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1004
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1005
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:211
1006
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:261
1007
  msgid "Below"
1008
  msgstr "Onderstaand"
1009
 
1010
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88
1011
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:180
1012
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66
1013
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:128
1014
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:70
1015
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:142
1016
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:70
1017
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:142
1018
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:82
1019
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:139
1020
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:82
1021
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:140
1022
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:217
1023
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:267
1024
  msgid "Below with separator"
1025
  msgstr "Hieronder met separator"
1026
 
1027
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:94
1028
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:186
1029
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:78
1030
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:134
1031
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:76
1032
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:148
1033
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:76
1034
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:148
1035
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:88
1036
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:145
1037
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:88
1038
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:146
1039
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:223
1040
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:273
1041
  msgid "Above"
1042
  msgstr "Boven"
1043
 
1044
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:100
1045
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:192
1046
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:84
1047
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:140
1048
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:82
1049
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:154
1050
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:82
1051
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:154
1052
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:94
1053
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:151
1054
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:94
1055
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:152
1056
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:229
1057
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:279
1058
  msgid "Above with separator"
1059
  msgstr "Hierboven met separator"
1060
 
1061
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:108
1062
  msgid "Sidebar Login form"
1063
  msgstr "Sidebar Login formulier"
1064
 
1065
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:113
1066
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:129
1067
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:17
1068
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:30
1069
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:47
1070
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:26
1071
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:39
1072
  msgid "Hide login buttons"
1073
  msgstr "Inlogknoppen verbergen"
1074
 
1075
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:116
1076
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:132
1077
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:14
1078
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:27
1079
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:44
1080
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:23
1081
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:36
1082
- #: nextend-facebook-connect/widget.php:76
1083
  msgid "Show login buttons"
1084
  msgstr "Inlogknoppen tonen"
1085
 
1086
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:117
1087
  msgid ""
1088
  "Some themes that use BuddyPress, display the social buttons twice in the "
1089
  "same login form. This option can disable the one for: "
@@ -1093,185 +685,125 @@ msgstr ""
1093
  "twee keer in hetzelfde inlogformulier. Deze optie kan die voor: "
1094
  "<b>bp_sidebar_login_form action</b> uitschakelen. "
1095
 
1096
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:124
1097
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:18
1098
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:18
1099
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:44
1100
  msgid "Login form"
1101
  msgstr "Login formulier"
1102
 
1103
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:137
1104
  msgid "Login button style"
1105
  msgstr "Inlogknop stijl"
1106
 
1107
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:162
1108
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:54
1109
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:58
1110
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:58
1111
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:70
1112
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:64
1113
  msgid "Login layout"
1114
  msgstr "Inlog-layout"
1115
 
1116
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:200
1117
- #: nextend-facebook-connect/admin/templates/settings/comment.php:59
1118
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:53
1119
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:178
1120
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:178
1121
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:159
1122
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:311
1123
  msgid "Button alignment"
1124
  msgstr "Knoppen uitlijning"
1125
 
1126
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:205
1127
- #: nextend-facebook-connect/admin/templates/settings/comment.php:64
1128
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:152
1129
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:58
1130
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:183
1131
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:183
1132
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:164
1133
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:316
1134
- #: nextend-facebook-connect/widget.php:57
1135
  msgid "Left"
1136
  msgstr "Links"
1137
 
1138
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:208
1139
- #: nextend-facebook-connect/admin/templates/settings/comment.php:67
1140
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:155
1141
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:61
1142
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:186
1143
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:186
1144
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:167
1145
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:319
1146
- #: nextend-facebook-connect/widget.php:62
1147
  msgid "Center"
1148
  msgstr "Midden"
1149
 
1150
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:212
1151
- #: nextend-facebook-connect/admin/templates/settings/comment.php:71
1152
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:159
1153
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:65
1154
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:190
1155
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:190
1156
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:171
1157
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:323
1158
- #: nextend-facebook-connect/widget.php:67
1159
  msgid "Right"
1160
  msgstr "Rechts"
1161
 
1162
- #: nextend-facebook-connect/admin/templates/settings/comment.php:18
1163
  msgid "Login button"
1164
  msgstr "Loginknop"
1165
 
1166
- #: nextend-facebook-connect/admin/templates/settings/comment.php:23
1167
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:42
1168
  msgid "Show"
1169
  msgstr "Toon"
1170
 
1171
- #: nextend-facebook-connect/admin/templates/settings/comment.php:26
1172
  msgid "Hide"
1173
  msgstr "Verberg"
1174
 
1175
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1176
  #, php-format
1177
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
1178
  msgstr ""
1179
  "Je moet de ' %1$s > %2$s > %3$s ' aanzetten om deze functie te laten werken"
1180
 
1181
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1182
  msgid "Discussion"
1183
  msgstr "Discussie"
1184
 
1185
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
1186
  msgid "Users must be registered and logged in to comment"
1187
  msgstr ""
1188
  "Je moet geregistreerd en ingelogd zijn om een reactie te kunnen plaatsen"
1189
 
1190
- #: nextend-facebook-connect/admin/templates/settings/comment.php:33
1191
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:18
1192
  msgid "Button style"
1193
  msgstr "Knop stijl"
1194
 
1195
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:29
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1196
  msgid "Target window"
1197
  msgstr "Doelvenster"
1198
 
1199
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:34
1200
  msgid "Prefer popup"
1201
  msgstr "Bij voorkeur popup"
1202
 
1203
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:37
1204
  msgid "Prefer new tab"
1205
  msgstr "Bij voorkeur nieuw tabblad"
1206
 
1207
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:40
1208
  msgid "Prefer same window"
1209
  msgstr "Bij voorkeur hetzelfde venster"
1210
 
1211
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:46
1212
  msgid "Registration notification sent to"
1213
  msgstr "Registratie notificatie verzonden naar"
1214
 
1215
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:51
1216
- #: nextend-facebook-connect/admin/templates/settings/general.php:243
1217
  msgid "WordPress default"
1218
  msgstr "WordPress standaard"
1219
 
1220
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:54
1221
  msgid "Nobody"
1222
  msgstr "Niemand"
1223
 
1224
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:60
1225
  msgid "Admin"
1226
  msgstr "Beheerder"
1227
 
1228
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:63
1229
  msgid "User and Admin"
1230
  msgstr "Gebruiker en Beheerder"
1231
 
1232
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:69
1233
  msgid "Unlink"
1234
  msgstr "Ontkoppelen"
1235
 
1236
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:75
1237
  msgid "Allow Social account unlink"
1238
  msgstr "Sta ontkoppelen Social account toe"
1239
 
1240
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:81
1241
  #, fuzzy
1242
  #| msgid "Show link buttons"
1243
  msgid "Show linked providers"
1244
  msgstr "Toon koppel-knoppen"
1245
 
1246
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1247
  #, php-format
1248
  msgid "Providers linked to the account will appear in the %1$s."
1249
  msgstr ""
1250
 
1251
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:91
1252
  #, fuzzy
1253
  #| msgid "Username"
1254
  msgid "Users table"
1255
  msgstr "Gebruikersnaam"
1256
 
1257
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:96
1258
  msgid "Disable Admin bar for roles"
1259
  msgstr "Adminbalk voor rollen uitschakelen"
1260
 
1261
- #: nextend-facebook-connect/admin/templates/settings/general.php:43
1262
  msgid "Debug mode"
1263
  msgstr "Debugmodus"
1264
 
1265
- #: nextend-facebook-connect/admin/templates/settings/general.php:57
1266
  msgid "Page for register flow"
1267
  msgstr "Pagina voor registreerproces"
1268
 
1269
- #: nextend-facebook-connect/admin/templates/settings/general.php:67
1270
- #: nextend-facebook-connect/admin/templates/settings/general.php:92
1271
  msgid "None"
1272
  msgstr "Geen"
1273
 
1274
- #: nextend-facebook-connect/admin/templates/settings/general.php:75
1275
  msgid ""
1276
  "This setting is used when you request additional data from the users (such "
1277
  "as email address) and to display the Terms and conditions."
@@ -1279,7 +811,6 @@ msgstr ""
1279
  "Deze instelling wordt gebruikt wanneer je gebruikers om aanvullende gegevens "
1280
  "vraagt (zoals het e-mailadres) en om de algemene voorwaarden weer te geven."
1281
 
1282
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1283
  #, php-format
1284
  msgid ""
1285
  "%2$s First create a new page and insert the following shortcode: %1$s then "
@@ -1288,13 +819,9 @@ msgstr ""
1288
  "%2$s Maak eerst een nieuwe pagina aan en voeg de volgende shortcode toe: "
1289
  "%1$s en selecteer dan deze pagina hierboven"
1290
 
1291
- #: nextend-facebook-connect/admin/templates/settings/general.php:76
1292
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1293
  msgid "Usage:"
1294
  msgstr "Gebruik:"
1295
 
1296
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1297
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1298
  #, php-format
1299
  msgid ""
1300
  "%1$s You won't be able to reach the selected page unless a social login/"
@@ -1303,16 +830,12 @@ msgstr ""
1303
  "%1$s Je kunt de geselecteerde pagina niet bereiken tenzij er een social "
1304
  "login/registratie plaatsvindt."
1305
 
1306
- #: nextend-facebook-connect/admin/templates/settings/general.php:77
1307
- #: nextend-facebook-connect/admin/templates/settings/general.php:103
1308
  msgid "Important:"
1309
  msgstr "Let op:"
1310
 
1311
- #: nextend-facebook-connect/admin/templates/settings/general.php:81
1312
  msgid "OAuth redirect uri proxy page"
1313
  msgstr "OAuth omleidings-uri proxy pagina"
1314
 
1315
- #: nextend-facebook-connect/admin/templates/settings/general.php:101
1316
  msgid ""
1317
  "You can use this setting when wp-login.php page is not available to handle "
1318
  "the OAuth flow."
@@ -1320,62 +843,47 @@ msgstr ""
1320
  "Je kunt deze instelling gebruiken wanneer de wp-login.php pagina niet "
1321
  "beschikbaar is om het OAuth-proces te verwerken."
1322
 
1323
- #: nextend-facebook-connect/admin/templates/settings/general.php:102
1324
  #, php-format
1325
  msgid "%1$s First create a new page then select this page above."
1326
  msgstr ""
1327
  "%1$s Maak eerst een nieuwe pagina aan en selecteer dan deze pagina hierboven."
1328
 
1329
- #: nextend-facebook-connect/admin/templates/settings/general.php:109
1330
  msgid "Prevent external redirect overrides"
1331
  msgstr "Voorkom overschrijvingen bij externe omleidingen"
1332
 
1333
- #: nextend-facebook-connect/admin/templates/settings/general.php:115
1334
  msgid "Disable external redirects"
1335
  msgstr "Externe omleidingen uitschakelen"
1336
 
1337
- #: nextend-facebook-connect/admin/templates/settings/general.php:122
1338
  msgid "Default redirect url"
1339
  msgstr "Standaard omleidings-URL"
1340
 
1341
- #: nextend-facebook-connect/admin/templates/settings/general.php:135
1342
- #: nextend-facebook-connect/admin/templates/settings/general.php:173
1343
  msgid "for Login"
1344
  msgstr "voor Inloggen"
1345
 
1346
- #: nextend-facebook-connect/admin/templates/settings/general.php:150
1347
- #: nextend-facebook-connect/admin/templates/settings/general.php:188
1348
  msgid "for Register"
1349
  msgstr "voor Registreren"
1350
 
1351
- #: nextend-facebook-connect/admin/templates/settings/general.php:160
1352
  msgid "Fixed redirect url"
1353
  msgstr "Vaste omleidings-URL"
1354
 
1355
- #: nextend-facebook-connect/admin/templates/settings/general.php:197
1356
  msgid "Blacklisted redirects"
1357
  msgstr "Zwarte lijst van omleidingen"
1358
 
1359
- #: nextend-facebook-connect/admin/templates/settings/general.php:203
1360
  msgid "If you want to blacklist redirect url params. One pattern per line."
1361
  msgstr ""
1362
  "Als je omleidings-URL parameters op de zwarte lijst wilt zetten. Eén patroon "
1363
  "per regel."
1364
 
1365
- #: nextend-facebook-connect/admin/templates/settings/general.php:208
1366
  msgid "Support login restrictions"
1367
  msgstr "Ondersteunende inlog-beperkingen"
1368
 
1369
- #: nextend-facebook-connect/admin/templates/settings/general.php:218
1370
  #, php-format
1371
  msgid "Please visit to our %1$s to check what plugins are supported!"
1372
  msgstr "Bezoek onze %1$s om te controleren welke plugins worden ondersteund!"
1373
 
1374
- #: nextend-facebook-connect/admin/templates/settings/general.php:223
1375
  msgid "Display avatars in \"All media items\""
1376
  msgstr "Weergeven profielfoto's in \"Alle media-items\""
1377
 
1378
- #: nextend-facebook-connect/admin/templates/settings/general.php:233
1379
  msgid ""
1380
  "Enabling this option can speed up loading images in Media Library - Grid "
1381
  "view!"
@@ -1383,21 +891,17 @@ msgstr ""
1383
  "Door deze optie in te schakelen kan het laden van afbeeldingen in de "
1384
  "mediabibliotheek worden versneld - Rasterweergave!"
1385
 
1386
- #: nextend-facebook-connect/admin/templates/settings/general.php:238
1387
  msgid "Membership"
1388
  msgstr "Lidmaatschap"
1389
 
1390
- #: nextend-facebook-connect/admin/templates/settings/general.php:251
1391
  msgid "Allow registration with Social login."
1392
  msgstr "Registratie toestaan met Social login."
1393
 
1394
- #: nextend-facebook-connect/admin/templates/settings/general.php:256
1395
  #, fuzzy
1396
  #| msgid "Page for register flow"
1397
  msgid "Custom label for register buttons"
1398
  msgstr "Pagina voor registreerproces"
1399
 
1400
- #: nextend-facebook-connect/admin/templates/settings/general.php:266
1401
  #, php-format
1402
  msgid ""
1403
  "Set a custom label for the social buttons in registration forms and for "
@@ -1405,93 +909,45 @@ msgid ""
1405
  "can be modified at the Buttons tab of each provider."
1406
  msgstr ""
1407
 
1408
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:29
1409
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:33
1410
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:33
1411
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:45
1412
- msgid "Login form button style"
1413
- msgstr "Aanmeldingsformulier knopstijl"
1414
-
1415
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:72
1416
  msgid "Below and floating"
1417
  msgstr "Onder en zwevend"
1418
 
1419
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:91
1420
  msgid "Embedded Login form button style"
1421
  msgstr "Geïntegreerd Loginformulier knopstijl"
1422
 
1423
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:116
1424
  msgid "Embedded Login layout"
1425
  msgstr "Geïntegreerd Login layout"
1426
 
1427
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:147
1428
  msgid "Embedded login form button alignment"
1429
  msgstr "Geïntegreerd inlogformulier knopuitlijning"
1430
 
1431
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:22
1432
- #: nextend-facebook-connect/includes/userData.php:152
1433
  msgid "Registration Form"
1434
  msgstr "Registratieformulier"
1435
 
1436
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:36
1437
  msgid "Embedded login form"
1438
  msgstr "Geïntegreerd inlogformulier"
1439
 
1440
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:23
1441
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:23
1442
- msgid "No Connect button in Login form"
1443
- msgstr "Geen Verbindingsknop in inlogformulier"
1444
-
1445
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:26
1446
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:98
1447
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:26
1448
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:98
1449
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:52
1450
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:57
1451
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:110
1452
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:115
1453
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:168
1454
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:173
1455
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:179
1456
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:185
1457
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:247
1458
- msgid "Connect button on"
1459
- msgstr "Verbindingsknop op"
1460
-
1461
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:90
1462
  msgid "Sign Up form"
1463
  msgstr "Aanmeldingsformulier"
1464
 
1465
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:95
1466
  msgid "No Connect button in Sign Up form"
1467
  msgstr "Geen Verbindingsknop in het aanmeldingsformulier"
1468
 
1469
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:105
1470
  msgid "Sign Up form button style"
1471
  msgstr "Aanmeldingsformulier knopstijl"
1472
 
1473
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:130
1474
  msgid "Sign Up layout"
1475
  msgstr "Aanmelding layout"
1476
 
1477
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:162
1478
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:162
1479
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:290
1480
  msgid "Account details"
1481
  msgstr "Accountgegevens"
1482
 
1483
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:167
1484
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:167
1485
  msgid "No link buttons"
1486
  msgstr "Geen koppelknoppen"
1487
 
1488
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:170
1489
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:170
1490
  msgid "Link buttons after account details"
1491
  msgstr "Koppelknoppen na accountgegevens"
1492
 
1493
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:6
1494
- #: nextend-facebook-connect/nextend-social-login.php:152
1495
  msgid ""
1496
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
1497
  "\"_blank\">Privacy Policy</a>"
@@ -1499,136 +955,97 @@ msgstr ""
1499
  "Door op Registreren te klikken, accepteer je onze <a href="
1500
  "\"#privacy_policy_url\" target=\"_blank\">Privacybeleid</a>"
1501
 
1502
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:59
1503
  msgid "Store"
1504
  msgstr "Winkel"
1505
 
1506
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:65
1507
  msgid "First and last name"
1508
  msgstr "Voor- en achternaam"
1509
 
1510
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:68
1511
  msgid "When not enabled, username will be randomly generated."
1512
  msgstr ""
1513
  "Indien niet ingeschakeld, wordt de gebruikersnaam willekeurig gegenereerd."
1514
 
1515
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:78
1516
- #: nextend-social-login-pro/class-provider-extension.php:322
1517
  msgid "Email"
1518
  msgstr "E-mail"
1519
 
1520
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:81
1521
  msgid "When not enabled, email will be empty."
1522
  msgstr "Indien niet ingeschakeld, zal e-mail leeg zijn."
1523
 
1524
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:91
1525
- #: nextend-facebook-connect/includes/avatar.php:49
1526
  msgid "Avatar"
1527
  msgstr "Profielfoto"
1528
 
1529
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:102
1530
- #: nextend-facebook-connect/includes/provider.php:1108
1531
  msgid "Access token"
1532
  msgstr "Toegangstoken"
1533
 
1534
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:95
1535
- msgid "No Connect button in Register form"
1536
- msgstr "Geen Verbindingsknop in het Registratieformulier"
1537
-
1538
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:105
1539
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:102
1540
- msgid "Register form button style"
1541
- msgstr "Registratieformulier knopstijl"
1542
-
1543
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:31
1544
  msgid "Register Form"
1545
  msgstr "Registratieformulier"
1546
 
1547
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:49
1548
  msgid "No Connect button in login form"
1549
  msgstr "Geen Verbindingsknop in inlogformulier"
1550
 
1551
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:107
1552
  msgid "No Connect button in register form"
1553
  msgstr "Geen Verbindingsknop in registratieformulier"
1554
 
1555
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:160
1556
  msgid "Billing form"
1557
  msgstr "Factureringsformulier"
1558
 
1559
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:165
1560
  msgid "No Connect button in billing form"
1561
  msgstr "Geen Verbindingsknop in het factureringsformulier"
1562
 
1563
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:193
1564
  msgid "Billing layout"
1565
  msgstr "Facturering layout"
1566
 
1567
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:205
1568
  #, fuzzy
1569
  #| msgid "Below with separator"
1570
  msgid "Default with separator"
1571
  msgstr "Hieronder met separator"
1572
 
1573
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:239
1574
  msgid "Checkout for WooCommerce"
1575
  msgstr ""
1576
 
1577
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:244
1578
  #, fuzzy
1579
  #| msgid "No Connect button in Register form"
1580
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1581
  msgstr "Geen Verbindingsknop in het Registratieformulier"
1582
 
1583
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:255
1584
  msgid "Checkout for WooCommerce layout"
1585
  msgstr ""
1586
 
1587
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:295
1588
  msgid "No Connect buttons in account details form"
1589
  msgstr "Geen Verbindingsknop in het accountgegevens formulier"
1590
 
1591
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:298
1592
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:303
1593
  msgid "Link buttons on"
1594
  msgstr "Koppelknoppen op"
1595
 
1596
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:329
1597
  #, fuzzy
1598
  #| msgid "Ask E-mail on registration"
1599
  msgid "Email template for registration"
1600
  msgstr "Vraag E-mail bij inschrijving"
1601
 
1602
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:334
1603
  #, fuzzy
1604
  #| msgid "WordPress default"
1605
  msgid "WordPress default notification"
1606
  msgstr "WordPress standaard"
1607
 
1608
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:337
1609
  #, fuzzy
1610
  #| msgid "Registration notification sent to"
1611
  msgid "WooCommerce registration notification"
1612
  msgstr "Registratie notificatie verzonden naar"
1613
 
1614
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:339
1615
  #, php-format
1616
  msgid ""
1617
  "Defines whether the registration with %1$s will send the same registration "
1618
  "notification that %2$s does, instead of the %3$s default one."
1619
  msgstr ""
1620
 
1621
- #: nextend-facebook-connect/admin/templates/test-connection.php:42
1622
  #, php-format
1623
  msgid "Network connection successful: %1$s"
1624
  msgstr "Netwerkverbinding succesvol: %1$s"
1625
 
1626
- #: nextend-facebook-connect/admin/templates/test-connection.php:49
1627
  #, php-format
1628
  msgid "Network connection failed: %1$s"
1629
  msgstr "Netwerkverbinding mislukt: %1$s"
1630
 
1631
- #: nextend-facebook-connect/admin/templates/test-connection.php:52
1632
  msgid ""
1633
  "Please contact with your hosting provider to resolve the network issue "
1634
  "between your server and the provider."
@@ -1636,49 +1053,39 @@ msgstr ""
1636
  "Neem contact op met je hostingprovider om het netwerkprobleem tussen je "
1637
  "server en de provider op te lossen."
1638
 
1639
- #: nextend-facebook-connect/includes/avatar.php:50
1640
  msgid "Manage Avatar"
1641
  msgstr "Profielfoto beheren"
1642
 
1643
- #: nextend-facebook-connect/includes/avatar.php:51
1644
  #, php-format
1645
  msgid "Avatar <span class=\"count\">(%s)</span>"
1646
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1647
  msgstr[0] "Profielfoto <span class=\"count\">(%s)</span>"
1648
  msgstr[1] "Profielfoto <span class=\"count\">(%s)</span>"
1649
 
1650
- #: nextend-facebook-connect/includes/avatar.php:399
1651
  msgid "Invalid URL Provided."
1652
  msgstr ""
1653
 
1654
- #: nextend-facebook-connect/includes/avatar.php:404
1655
  msgid "Could not create Temporary file."
1656
  msgstr ""
1657
 
1658
- #: nextend-facebook-connect/includes/compat-wp-login.php:63
1659
  #, php-format
1660
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1661
  msgstr "%1$s &lsaquo; %2$s &#8212; WordPress"
1662
 
1663
- #: nextend-facebook-connect/includes/compat-wp-login.php:129
1664
  msgid "https://wordpress.org/"
1665
  msgstr "https://nl.wordpress.org/"
1666
 
1667
- #: nextend-facebook-connect/includes/compat-wp-login.php:130
1668
  msgid "Powered by WordPress"
1669
  msgstr "Mogelijk gemaakt door WordPress"
1670
 
1671
- #: nextend-facebook-connect/includes/compat-wp-login.php:284
1672
  #, php-format
1673
  msgctxt "site"
1674
  msgid "&larr; Back to %s"
1675
  msgstr "&larr; Terug naar %s"
1676
 
1677
- #: nextend-facebook-connect/includes/provider-admin.php:199
1678
  msgid "Your configuration needs to be verified"
1679
  msgstr "Je configuratie moet worden geverifieerd"
1680
 
1681
- #: nextend-facebook-connect/includes/provider-admin.php:200
1682
  msgid ""
1683
  "Before you can start letting your users register with your app it needs to "
1684
  "be tested. This test makes sure that no users will have troubles with the "
@@ -1692,15 +1099,12 @@ msgstr ""
1692
  "een foutmelding ziet in de popup, controleer dan de gekopieerde ID en het "
1693
  "geheim of de app zelf. Anders zijn je instellingen in orde."
1694
 
1695
- #: nextend-facebook-connect/includes/provider-admin.php:206
1696
  msgid "Please save your changes to verify settings."
1697
  msgstr "Sla je wijzigingen op om de instellingen te controleren."
1698
 
1699
- #: nextend-facebook-connect/includes/provider-admin.php:214
1700
  msgid "Works Fine"
1701
  msgstr "Werkt Prima"
1702
 
1703
- #: nextend-facebook-connect/includes/provider-admin.php:228
1704
  #, php-format
1705
  msgid ""
1706
  "This provider is currently disabled, which means that users can’t register "
@@ -1709,7 +1113,6 @@ msgstr ""
1709
  "Deze provider is momenteel uitgeschakeld, wat betekent dat gebruikers zich "
1710
  "niet kunnen registreren of inloggen via hun %s account."
1711
 
1712
- #: nextend-facebook-connect/includes/provider-admin.php:231
1713
  #, php-format
1714
  msgid ""
1715
  "This provider works fine, but you can test it again. If you don’t want to "
@@ -1719,7 +1122,6 @@ msgstr ""
1719
  "gebruikers niet meer wilt laten registreren of inloggen met %s kun je deze "
1720
  "uitschakelen."
1721
 
1722
- #: nextend-facebook-connect/includes/provider-admin.php:234
1723
  #, php-format
1724
  msgid ""
1725
  "This provider is currently enabled, which means that users can register or "
@@ -1728,54 +1130,38 @@ msgstr ""
1728
  "Deze provider is momenteel ingeschakeld, wat betekent dat gebruikers zich "
1729
  "kunnen registreren of inloggen via hun %s account."
1730
 
1731
- #: nextend-facebook-connect/includes/provider-admin.php:242
1732
  msgid "Verify Settings Again"
1733
  msgstr "Controleer Instellingen Nogmaals"
1734
 
1735
- #: nextend-facebook-connect/includes/provider-admin.php:243
1736
  msgid "Please save your changes before verifying settings."
1737
  msgstr "Sla je wijzigingen op voordat je de instellingen controleert."
1738
 
1739
- #: nextend-facebook-connect/includes/provider.php:364
1740
- #: nextend-facebook-connect/includes/provider.php:725
1741
- #: nextend-facebook-connect/includes/provider.php:733
1742
  msgid "Authentication successful"
1743
  msgstr "Authenticatie geslaagd"
1744
 
1745
- #: nextend-facebook-connect/includes/provider.php:662
1746
- #: nextend-facebook-connect/includes/user.php:170
1747
- #: nextend-facebook-connect/includes/user.php:606
1748
  msgid "Authentication error"
1749
  msgstr "Authenticatiefout"
1750
 
1751
- #: nextend-facebook-connect/includes/provider.php:677
1752
  msgid "Unlink successful."
1753
  msgstr "Ontkoppeling succesvol."
1754
 
1755
- #: nextend-facebook-connect/includes/provider.php:679
1756
  msgid "Unlink is not allowed!"
1757
  msgstr "Ontkoppelen is niet toegestaan!"
1758
 
1759
- #: nextend-facebook-connect/includes/provider.php:894
1760
- #: nextend-facebook-connect/includes/provider.php:901
1761
  msgid "The test was successful"
1762
  msgstr "De test was succesvol"
1763
 
1764
- #: nextend-facebook-connect/includes/provider.php:947
1765
  msgid "Authentication failed"
1766
  msgstr "Authenticatie mislukt"
1767
 
1768
- #: nextend-facebook-connect/includes/provider.php:1100
1769
  msgid "Identifier"
1770
  msgstr "Identificatie"
1771
 
1772
- #: nextend-facebook-connect/includes/provider.php:1116
1773
  #, fuzzy
1774
  #| msgid "Profile picture"
1775
  msgid "Profile Picture"
1776
  msgstr "Profielfoto"
1777
 
1778
- #: nextend-facebook-connect/includes/user.php:76
1779
  #, php-format
1780
  msgid ""
1781
  "Your %1$s account is successfully linked with your account. Now you can sign "
@@ -1784,7 +1170,6 @@ msgstr ""
1784
  "Je %1$s account is succesvol gekoppeld aan je account. Je kunt je nu "
1785
  "gemakkelijk aanmelden met %2$s."
1786
 
1787
- #: nextend-facebook-connect/includes/user.php:79
1788
  #, fuzzy, php-format
1789
  #| msgid ""
1790
  #| "You have already linked a(n) %s account. Please unlink the current and "
@@ -1796,17 +1181,14 @@ msgstr ""
1796
  "Je hebt al een %s account gekoppeld. Ontkoppel de huidige en dan kun je "
1797
  "andere %s account koppelen."
1798
 
1799
- #: nextend-facebook-connect/includes/user.php:84
1800
  #, fuzzy, php-format
1801
  #| msgid "This %s account is already linked to other user."
1802
  msgid "This %s account is already linked to another user."
1803
  msgstr "Dit %s account is al gekoppeld aan een andere gebruiker."
1804
 
1805
- #: nextend-facebook-connect/includes/user.php:130
1806
  msgid "User registration is currently not allowed."
1807
  msgstr "Gebruikersregistratie is momenteel niet toegestaan."
1808
 
1809
- #: nextend-facebook-connect/includes/user.php:681
1810
  #, php-format
1811
  msgid ""
1812
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
@@ -1814,25 +1196,21 @@ msgid ""
1814
  "linked %1$s account or log in with your password!"
1815
  msgstr ""
1816
 
1817
- #: nextend-facebook-connect/includes/userData.php:152
1818
  #, fuzzy
1819
  #| msgid "Register For This Site!"
1820
  msgid "Register For This Site"
1821
  msgstr "Registreer Voor Deze Site!"
1822
 
1823
- #: nextend-facebook-connect/includes/userData.php:204
1824
  #, fuzzy
1825
  #| msgid "Register"
1826
  msgctxt "Register form submit button label"
1827
  msgid "Register"
1828
  msgstr "Registreren"
1829
 
1830
- #: nextend-facebook-connect/nextend-facebook-connect.php:37
1831
  #, php-format
1832
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1833
  msgstr "%1$s vereist PHP versie %2$s+, plugin is momenteel NIET ACTIEF."
1834
 
1835
- #: nextend-facebook-connect/nextend-facebook-connect.php:44
1836
  #, php-format
1837
  msgid ""
1838
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
@@ -1841,90 +1219,53 @@ msgstr ""
1841
  "%1$s vereist WordPress versie %2$s+. Omdat je een eerdere versie gebruikt, "
1842
  "is de plugin momenteel NIET ACTIEF."
1843
 
1844
- #: nextend-facebook-connect/nextend-social-login.php:56
1845
- #: nextend-facebook-connect/nextend-social-login.php:63
1846
  #, php-format
1847
  msgid "Please update %1$s to version %2$s or newer."
1848
  msgstr "Gelieve %1$s bij te werken naar versie %2$s of nieuwer."
1849
 
1850
- #: nextend-facebook-connect/nextend-social-login.php:56
1851
- #: nextend-facebook-connect/nextend-social-login.php:63
1852
  msgid "Update now!"
1853
  msgstr "Update nu!"
1854
 
1855
- #: nextend-facebook-connect/nextend-social-login.php:846
1856
- #: nextend-facebook-connect/nextend-social-login.php:1225
1857
  msgid "Social Login"
1858
  msgstr "Social Login"
1859
 
1860
- #: nextend-facebook-connect/nextend-social-login.php:1206
1861
  msgid "Social Accounts"
1862
  msgstr "Social Accounts"
1863
 
1864
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:2
1865
- #: nextend-facebook-connect/providers/google/admin/buttons.php:2
1866
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:2
1867
  msgid "Button skin"
1868
  msgstr "Knop skin"
1869
 
1870
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:8
1871
- #: nextend-facebook-connect/providers/google/admin/buttons.php:8
1872
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:14
1873
  msgid "Dark"
1874
  msgstr "Donker"
1875
 
1876
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:14
1877
- #: nextend-facebook-connect/providers/google/admin/buttons.php:14
1878
- #: nextend-social-login-pro/providers/apple/admin/buttons.php:8
1879
  msgid "Light"
1880
  msgstr "Licht"
1881
 
1882
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:20
1883
  msgid "Black"
1884
  msgstr ""
1885
 
1886
- #: nextend-facebook-connect/providers/facebook/admin/buttons.php:26
1887
  msgid "White"
1888
  msgstr ""
1889
 
1890
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:8
1891
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:8
1892
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:8
1893
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:18
1894
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:8
1895
  #, fuzzy, php-format
1896
  #| msgid "Navigate to %s"
1897
  msgid "Navigate to <b>%s</b>"
1898
  msgstr "Navigeer naar %s"
1899
 
1900
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:9
1901
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:9
1902
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:9
1903
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:9
1904
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:20
1905
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:9
1906
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:9
1907
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:18
1908
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:9
1909
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:9
1910
  #, php-format
1911
  msgid "Log in with your %s credentials if you are not logged in"
1912
  msgstr "Log in met je %s inloggegevens als je niet ingelogd bent"
1913
 
1914
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:10
1915
  #, fuzzy, php-format
1916
  #| msgid "Click on the App with App ID: %s"
1917
  msgid "Click on the App with App ID: <b>%s</b>"
1918
  msgstr "Klik op de App met App ID: %s"
1919
 
1920
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:11
1921
  #, fuzzy
1922
  #| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1923
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1924
  msgstr "Klik in de linkerbalk op \"Facebook Login/Instellingen\""
1925
 
1926
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:14
1927
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:39
1928
  #, fuzzy
1929
  #| msgid ""
1930
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
@@ -1935,16 +1276,11 @@ msgstr ""
1935
  "Voeg de volgende URL toe aan het veld \"Geldige OAuth omleidings-URI's\": <b>"
1936
  "%s</b>"
1937
 
1938
- #: nextend-facebook-connect/providers/facebook/admin/fix-redirect-uri.php:22
1939
  #, fuzzy
1940
  #| msgid "Click on \"Save Changes\""
1941
  msgid "Click on \"<b>Save Changes</b>\""
1942
  msgstr "Klik op \"Wijzigingen Opslaan\""
1943
 
1944
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:11
1945
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:13
1946
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:11
1947
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:22
1948
  #, php-format
1949
  msgid ""
1950
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
@@ -1953,19 +1289,9 @@ msgstr ""
1953
  "%1$s staat alleen HTTPS OAuth Omleidingen toe. Je moet je site verplaatsen "
1954
  "naar HTTPS om in te kunnen loggen met %1$s."
1955
 
1956
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:13
1957
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:15
1958
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:13
1959
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:24
1960
  msgid "How to get SSL for my WordPress site?"
1961
  msgstr "Hoe krijg ik SSL voor mijn WordPress site?"
1962
 
1963
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:19
1964
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:11
1965
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:11
1966
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:10
1967
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:10
1968
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:10
1969
  #, php-format
1970
  msgid ""
1971
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -1980,70 +1306,19 @@ msgstr ""
1980
  "\"Instellingen\" en configureer je de gegeven \"%2$s\" en \"%3$s\" volgens "
1981
  "je %1$s App."
1982
 
1983
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:23
1984
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:15
1985
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:15
1986
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:23
1987
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:34
1988
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:14
1989
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:14
1990
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:14
1991
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:14
1992
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:14
1993
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:14
1994
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:14
1995
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:14
1996
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:15
1997
  #, php-format
1998
  msgctxt "App creation"
1999
  msgid "Create %s"
2000
  msgstr "Maak %s"
2001
 
2002
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:26
2003
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:18
2004
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:8
2005
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:26
2006
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:19
2007
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:39
2008
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:8
2009
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:17
2010
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:8
2011
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:17
2012
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:8
2013
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:17
2014
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:8
2015
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:17
2016
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:8
2017
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:21
2018
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:8
2019
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:17
2020
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:8
2021
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:17
2022
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:18
2023
  #, php-format
2024
  msgid "Navigate to %s"
2025
  msgstr "Navigeer naar %s"
2026
 
2027
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:27
2028
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:19
2029
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:19
2030
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:27
2031
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:40
2032
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:9
2033
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:18
2034
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:18
2035
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:9
2036
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:18
2037
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:9
2038
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:18
2039
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:9
2040
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:18
2041
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:19
2042
  #, php-format
2043
  msgid "Log in with your %s credentials if you are not logged in."
2044
  msgstr "Log in met je %s inloggegevens als je niet ingelogd bent."
2045
 
2046
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:28
2047
  #, fuzzy
2048
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2049
  msgid ""
@@ -2051,14 +1326,12 @@ msgid ""
2051
  "\"<b>Consumer</b>\" App type!"
2052
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
2053
 
2054
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:29
2055
  msgid ""
2056
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
2057
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
2058
  "finally verify your account."
2059
  msgstr ""
2060
 
2061
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:30
2062
  #, fuzzy, php-format
2063
  #| msgid ""
2064
  #| "Fill \"Display Name\" and \"Contact Email\". The specified \"Display Name"
@@ -2070,25 +1343,21 @@ msgstr ""
2070
  "Vul \"Schermnaam\" en \"E-mail\" in. De opgegeven \"Schermnaam\" zal "
2071
  "verschijnen op je %s!"
2072
 
2073
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:31
2074
  msgid ""
2075
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
2076
  "if you have any."
2077
  msgstr ""
2078
 
2079
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:32
2080
  #, fuzzy
2081
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2082
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
2083
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
2084
 
2085
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:33
2086
  #, fuzzy, php-format
2087
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
2088
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
2089
  msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
2090
 
2091
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:34
2092
  #, fuzzy, php-format
2093
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2094
  msgid ""
@@ -2096,34 +1365,28 @@ msgid ""
2096
  "field: <b>%s</b>"
2097
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2098
 
2099
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:35
2100
  #, fuzzy
2101
  #| msgid "Click on \"Save Changes\""
2102
  msgid "Press “<b>Save</b>”."
2103
  msgstr "Klik op \"Wijzigingen Opslaan\""
2104
 
2105
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:36
2106
  #, php-format
2107
  msgid ""
2108
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
2109
  "%2$s</b> - <b>%3$s</b>”"
2110
  msgstr ""
2111
 
2112
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:47
2113
  #, fuzzy
2114
  #| msgid "Click on \"Save Changes\""
2115
  msgid "Click on “<b>Save Changes</b>”."
2116
  msgstr "Klik op \"Wijzigingen Opslaan\""
2117
 
2118
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:48
2119
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:65
2120
  #, php-format
2121
  msgid ""
2122
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
2123
  "%2$s</b>”."
2124
  msgstr ""
2125
 
2126
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:49
2127
  #, fuzzy, php-format
2128
  #| msgid "Enter your domain name to the App Domains"
2129
  msgid ""
@@ -2131,7 +1394,6 @@ msgid ""
2131
  "b>"
2132
  msgstr "Voer je domeinnaam in bij de App Domeinen"
2133
 
2134
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:50
2135
  #, fuzzy
2136
  #| msgid ""
2137
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
@@ -2146,26 +1408,22 @@ msgstr ""
2146
  "gemakkelijk toegankelijk privacybeleid waarin wordt uitgelegd welke gegevens "
2147
  "je verzamelt en hoe je deze gegevens zult gebruiken."
2148
 
2149
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:51
2150
  msgid ""
2151
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
2152
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
2153
  "instructions on how users can delete their accounts on your site."
2154
  msgstr ""
2155
 
2156
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:53
2157
  msgid ""
2158
  "To comply with GDPR, you should already offer possibility to delete accounts "
2159
  "on your site, either by the user or by the admin:"
2160
  msgstr ""
2161
 
2162
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:56
2163
  msgid ""
2164
  "<u>If each user has an option to delete the account</u>: the URL should "
2165
  "point to a guide showing the way users can delete their accounts."
2166
  msgstr ""
2167
 
2168
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:57
2169
  msgid ""
2170
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
2171
  "section - usually in the Privacy Policy - with the contact details, where "
@@ -2173,14 +1431,12 @@ msgid ""
2173
  "point to this section of the document."
2174
  msgstr ""
2175
 
2176
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:62
2177
  msgid ""
2178
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
2179
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
2180
  "Changes</b>\"."
2181
  msgstr ""
2182
 
2183
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:63
2184
  #, fuzzy
2185
  #| msgid ""
2186
  #| "Your application is currently private ( Status: In Development ), which "
@@ -2195,7 +1451,6 @@ msgstr ""
2195
  "alleen jij ermee kunt inloggen. Klik in de bovenste balk op de \"OFF\" "
2196
  "schakelaar en selecteer een categorie voor je App."
2197
 
2198
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:64
2199
  #, php-format
2200
  msgid ""
2201
  "By default, your application only has Standard access for the permissions, "
@@ -2205,7 +1460,6 @@ msgid ""
2205
  "should click on the <strong>%6$s</strong> buttons next to them. "
2206
  msgstr ""
2207
 
2208
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:66
2209
  #, fuzzy, php-format
2210
  #| msgid ""
2211
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
@@ -2219,7 +1473,6 @@ msgstr ""
2219
  "Hier kun je je \"APP ID\" zien en je \"App geheim\" als je op de knop "
2220
  "\"Weergeven\" klikt. Deze zullen nodig zijn in de instellingen van de plugin."
2221
 
2222
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:69
2223
  #, php-format
2224
  msgid ""
2225
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
@@ -2230,11 +1483,9 @@ msgid ""
2230
  "the Facebook App, then please check our %2$sdocumentation%3$s."
2231
  msgstr ""
2232
 
2233
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:73
2234
  msgid "Maintaining the Facebook App:"
2235
  msgstr ""
2236
 
2237
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:74
2238
  #, php-format
2239
  msgid ""
2240
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
@@ -2245,76 +1496,16 @@ msgid ""
2245
  "that we need."
2246
  msgstr ""
2247
 
2248
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:78
2249
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:53
2250
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:46
2251
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:50
2252
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:134
2253
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:41
2254
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:40
2255
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:46
2256
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:43
2257
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:45
2258
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:46
2259
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:41
2260
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:41
2261
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:40
2262
  #, php-format
2263
  msgid "I am done setting up my %s"
2264
  msgstr "Ik ben klaar met het instellen van mijn %s"
2265
 
2266
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:35
2267
- #: nextend-social-login-pro/providers/vk/admin/settings.php:27
2268
  msgid "App ID"
2269
  msgstr "App ID"
2270
 
2271
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:36
2272
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:48
2273
- #: nextend-facebook-connect/providers/google/admin/settings.php:28
2274
- #: nextend-facebook-connect/providers/google/admin/settings.php:41
2275
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:28
2276
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:27
2277
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:39
2278
- #: nextend-social-login-pro/providers/apple/admin/settings.php:79
2279
- #: nextend-social-login-pro/providers/apple/admin/settings.php:90
2280
- #: nextend-social-login-pro/providers/apple/admin/settings.php:99
2281
- #: nextend-social-login-pro/providers/apple/admin/settings.php:107
2282
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:27
2283
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:39
2284
- #: nextend-social-login-pro/providers/github/admin/settings.php:28
2285
- #: nextend-social-login-pro/providers/github/admin/settings.php:40
2286
- #: nextend-social-login-pro/providers/line/admin/settings.php:27
2287
- #: nextend-social-login-pro/providers/line/admin/settings.php:39
2288
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:27
2289
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:39
2290
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:27
2291
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:39
2292
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:27
2293
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:39
2294
- #: nextend-social-login-pro/providers/vk/admin/settings.php:28
2295
- #: nextend-social-login-pro/providers/vk/admin/settings.php:40
2296
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:27
2297
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:39
2298
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:27
2299
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:39
2300
  msgid "Required"
2301
  msgstr "Verplicht"
2302
 
2303
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:41
2304
- #: nextend-facebook-connect/providers/google/admin/settings.php:35
2305
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:33
2306
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:33
2307
- #: nextend-social-login-pro/providers/apple/admin/settings.php:34
2308
- #: nextend-social-login-pro/providers/apple/admin/settings.php:85
2309
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:33
2310
- #: nextend-social-login-pro/providers/github/admin/settings.php:34
2311
- #: nextend-social-login-pro/providers/line/admin/settings.php:33
2312
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:33
2313
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:33
2314
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:33
2315
- #: nextend-social-login-pro/providers/vk/admin/settings.php:34
2316
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:33
2317
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:33
2318
  #, php-format
2319
  msgid ""
2320
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
@@ -2323,88 +1514,57 @@ msgstr ""
2323
  "Als je niet zeker weet wat je %1$s is, ga dan naar <a href=\"%2$s\">Aan de "
2324
  "slag</a>"
2325
 
2326
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:47
2327
  msgid "App Secret"
2328
  msgstr "App Geheim"
2329
 
2330
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:59
2331
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:49
2332
  #, php-format
2333
  msgid ""
2334
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
2335
  "longer be able to login with %1$s."
2336
  msgstr ""
2337
 
2338
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:61
2339
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:51
2340
  msgid "Find out why?"
2341
  msgstr ""
2342
 
2343
- #: nextend-facebook-connect/providers/facebook/facebook.php:90
2344
  msgid "Continue with <b>Facebook</b>"
2345
  msgstr "Doorgaan met <b>Facebook</b>"
2346
 
2347
- #: nextend-facebook-connect/providers/facebook/facebook.php:91
2348
  #, fuzzy
2349
  #| msgid "Continue with <b>Facebook</b>"
2350
  msgid "Sign up with <b>Facebook</b>"
2351
  msgstr "Doorgaan met <b>Facebook</b>"
2352
 
2353
- #: nextend-facebook-connect/providers/facebook/facebook.php:92
2354
  msgid "Link account with <b>Facebook</b>"
2355
  msgstr "Koppel met <b>Facebook</b>"
2356
 
2357
- #: nextend-facebook-connect/providers/facebook/facebook.php:93
2358
  msgid "Unlink account from <b>Facebook</b>"
2359
  msgstr "Ontkoppel van <b>Facebook</b>"
2360
 
2361
- #: nextend-facebook-connect/providers/facebook/facebook.php:193
2362
- #: nextend-facebook-connect/providers/google/google.php:168
2363
- #: nextend-facebook-connect/providers/twitter/twitter.php:97
2364
- #: nextend-social-login-pro/providers/amazon/amazon.php:67
2365
- #: nextend-social-login-pro/providers/apple/apple.php:115
2366
- #: nextend-social-login-pro/providers/apple/apple.php:122
2367
- #: nextend-social-login-pro/providers/disqus/disqus.php:114
2368
- #: nextend-social-login-pro/providers/github/github.php:152
2369
- #: nextend-social-login-pro/providers/line/line.php:63
2370
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:65
2371
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:65
2372
- #: nextend-social-login-pro/providers/paypal/paypal.php:92
2373
- #: nextend-social-login-pro/providers/vk/vk.php:63
2374
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:101
2375
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:92
2376
  #, php-format
2377
  msgid ""
2378
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
2379
  msgstr "Het ingevoerde %1$s bleek niet geldig te zijn. Vul een geldig %2$s in."
2380
 
2381
- #: nextend-facebook-connect/providers/facebook/facebook.php:314
2382
- #: nextend-social-login-pro/providers/paypal/paypal.php:172
2383
  #, php-format
2384
  msgid "Required scope: %1$s"
2385
  msgstr "Vereiste scope: %1$s"
2386
 
2387
- #: nextend-facebook-connect/providers/google/admin/buttons.php:20
2388
  #, fuzzy
2389
  #| msgid "Uniform"
2390
  msgid "Uniform - Legacy"
2391
  msgstr "Uniform"
2392
 
2393
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:10
2394
  #, fuzzy
2395
  #| msgid "Click on the \"Credentials\" in the left hand menu"
2396
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
2397
  msgstr "Klik op de \"Inloggegevens\" in het linker menu"
2398
 
2399
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:11
2400
  #, php-format
2401
  msgid ""
2402
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
2403
  "%s</b>"
2404
  msgstr ""
2405
 
2406
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:14
2407
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:40
2408
  #, fuzzy, php-format
2409
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
2410
  msgid ""
@@ -2412,16 +1572,11 @@ msgid ""
2412
  "following URL:"
2413
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2414
 
2415
- #: nextend-facebook-connect/providers/google/admin/fix-redirect-uri.php:22
2416
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:23
2417
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:23
2418
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:23
2419
  #, fuzzy
2420
  #| msgid "Click on \"Save\""
2421
  msgid "Click on \"<b>Save</b>\""
2422
  msgstr "Klik op \"Opslaan\""
2423
 
2424
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:20
2425
  #, fuzzy, php-format
2426
  #| msgid ""
2427
  #| "If you don't have a project yet, you'll need to create one. You can do "
@@ -2440,26 +1595,22 @@ msgstr ""
2440
  "een project hebt, klik dan op de naam van je project in plaats daarvan in "
2441
  "het dashboard, die een modal zal weergeven en klik op Nieuw Project. )"
2442
 
2443
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:21
2444
  #, fuzzy, php-format
2445
  #| msgid "Name your project and then click on the Create button again"
2446
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
2447
  msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
2448
 
2449
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:22
2450
  msgid ""
2451
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
2452
  "have already had a Project, then make sure you select the created project in "
2453
  "the top bar! )"
2454
  msgstr ""
2455
 
2456
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:23
2457
  #, fuzzy, php-format
2458
  #| msgid "Click on the \"Credentials\" in the left hand menu"
2459
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
2460
  msgstr "Klik op de \"Inloggegevens\" in het linker menu"
2461
 
2462
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:24
2463
  #, php-format
2464
  msgid ""
2465
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
@@ -2467,7 +1618,6 @@ msgid ""
2467
  "account, then pick the \"%4$s\" option!"
2468
  msgstr ""
2469
 
2470
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:26
2471
  #, php-format
2472
  msgid ""
2473
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
@@ -2475,7 +1625,6 @@ msgid ""
2475
  "%1$s!"
2476
  msgstr ""
2477
 
2478
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:29
2479
  #, fuzzy, php-format
2480
  #| msgid ""
2481
  #| "Enter a name for your App under the \"Application name\" field, which "
@@ -2487,14 +1636,12 @@ msgstr ""
2487
  "Voer een naam in voor je App in het veld \"Toepassingsnaam\", die zal "
2488
  "verschijnen als de naam van de app die om toestemming vraagt."
2489
 
2490
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:30
2491
  #, php-format
2492
  msgid ""
2493
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
2494
  "contact you with questions about their consent."
2495
  msgstr ""
2496
 
2497
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:31
2498
  #, fuzzy, php-format
2499
  #| msgid ""
2500
  #| "Fill the \"Authorized domains\" field with your domain name probably: <b>"
@@ -2506,34 +1653,29 @@ msgstr ""
2506
  "Vul het veld \"Geautoriseerde domeinen\" in met je domeinnaam "
2507
  "waarschijnlijk: <b>%s</b> zonder subdomeinen!"
2508
 
2509
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:32
2510
  #, php-format
2511
  msgid ""
2512
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
2513
  "notify you about any changes to your project."
2514
  msgstr ""
2515
 
2516
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:33
2517
  #, php-format
2518
  msgid ""
2519
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
2520
  "too!"
2521
  msgstr ""
2522
 
2523
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:34
2524
  #, php-format
2525
  msgid ""
2526
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
2527
  "\"<b>%2$s</b>\" button in the top bar."
2528
  msgstr ""
2529
 
2530
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:35
2531
  #, fuzzy, php-format
2532
  #| msgid "Click on the Create button"
2533
  msgid "Choose the \"<b>%1$s</b>\" option."
2534
  msgstr "Klik op de knop Aanmaken"
2535
 
2536
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:36
2537
  #, fuzzy, php-format
2538
  #| msgid ""
2539
  #| "Click on the link \"registering an application\" under the Applications "
@@ -2542,19 +1684,16 @@ msgid "Select the \"<b>%1$s</b>\" under Application type."
2542
  msgstr ""
2543
  "Klik op de link \"aanvraag registreren\" onder het tabblad \"Applicaties\"."
2544
 
2545
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:37
2546
  #, fuzzy, php-format
2547
  #| msgid "Enter a \"Description\" for your app!"
2548
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
2549
  msgstr "Vul een \"Beschrijving\" in voor je app!"
2550
 
2551
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:48
2552
  #, fuzzy, php-format
2553
  #| msgid "Click on the Create button"
2554
  msgid "Click on the \"<b>%1$s</b>\" button"
2555
  msgstr "Klik op de knop Aanmaken"
2556
 
2557
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:49
2558
  #, fuzzy, php-format
2559
  #| msgid ""
2560
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
@@ -2572,60 +1711,37 @@ msgstr ""
2572
  "te klikken en je kunt van daaruit de Client ID en Client Geheim kopiëren en "
2573
  "plakken."
2574
 
2575
- #: nextend-facebook-connect/providers/google/admin/settings.php:27
2576
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:26
2577
- #: nextend-social-login-pro/providers/apple/admin/settings.php:28
2578
- #: nextend-social-login-pro/providers/github/admin/settings.php:27
2579
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:26
2580
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:26
2581
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:26
2582
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:26
2583
  msgid "Client ID"
2584
  msgstr "Client ID"
2585
 
2586
- #: nextend-facebook-connect/providers/google/admin/settings.php:40
2587
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:38
2588
- #: nextend-social-login-pro/providers/apple/admin/settings.php:39
2589
- #: nextend-social-login-pro/providers/github/admin/settings.php:39
2590
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:38
2591
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:38
2592
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:38
2593
  msgid "Client Secret"
2594
  msgstr "Client Geheim"
2595
 
2596
- #: nextend-facebook-connect/providers/google/admin/settings.php:47
2597
  msgid "Select account on each login"
2598
  msgstr ""
2599
 
2600
- #: nextend-facebook-connect/providers/google/admin/settings.php:56
2601
  msgid ""
2602
  "Disable, when you don't want to see the account select prompt on each login."
2603
  msgstr ""
2604
 
2605
- #: nextend-facebook-connect/providers/google/google.php:99
2606
  msgid "Continue with <b>Google</b>"
2607
  msgstr "Doorgaan met <b>Google</b>"
2608
 
2609
- #: nextend-facebook-connect/providers/google/google.php:100
2610
  #, fuzzy
2611
  #| msgid "Continue with <b>Google</b>"
2612
  msgid "Sign up with <b>Google</b>"
2613
  msgstr "Doorgaan met <b>Google</b>"
2614
 
2615
- #: nextend-facebook-connect/providers/google/google.php:101
2616
  msgid "Link account with <b>Google</b>"
2617
  msgstr "Koppel met <b>Google</b>"
2618
 
2619
- #: nextend-facebook-connect/providers/google/google.php:102
2620
  msgid "Unlink account from <b>Google</b>"
2621
  msgstr "Ontkoppel van <b>Google</b>"
2622
 
2623
- #: nextend-facebook-connect/providers/google/google.php:295
2624
  #, php-format
2625
  msgid "Required API: %1$s"
2626
  msgstr "Vereiste API: %1$s"
2627
 
2628
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:10
2629
  #, fuzzy
2630
  #| msgid "Find your App and click on the Details button"
2631
  msgid ""
@@ -2633,27 +1749,22 @@ msgid ""
2633
  "like a gear.)"
2634
  msgstr "Vind jew app en klik op de knop Details"
2635
 
2636
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:11
2637
  #, fuzzy
2638
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2639
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
2640
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
2641
 
2642
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:14
2643
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:31
2644
  #, fuzzy, php-format
2645
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2646
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
2647
  msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
2648
 
2649
- #: nextend-facebook-connect/providers/twitter/admin/fix-redirect-uri.php:22
2650
  #, fuzzy, php-format
2651
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
2652
  msgid ""
2653
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
2654
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2655
 
2656
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:20
2657
  msgid ""
2658
  "If you don't have a developer account yet, please apply one by filling all "
2659
  "the required details! This is required for the next steps!"
@@ -2661,7 +1772,6 @@ msgstr ""
2661
  "Als je nog geen ontwikkelaarsaccount heeft, kun je je aanmelden door alle "
2662
  "benodigde gegevens in te vullen! Dit is vereist voor de volgende stappen!"
2663
 
2664
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:21
2665
  #, fuzzy, php-format
2666
  #| msgid ""
2667
  #| "Once your developer account is complete, navigate back to %s if you "
@@ -2673,25 +1783,21 @@ msgstr ""
2673
  "Zodra je ontwikkelaarsaccount is voltooid, navigeer terug naar %s als je er "
2674
  "nog niet bent!"
2675
 
2676
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:22
2677
  #, fuzzy, php-format
2678
  #| msgid "Click on \"Save\""
2679
  msgid "Click on \"<b>%s</b>\"!"
2680
  msgstr "Klik op \"Opslaan\""
2681
 
2682
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:23
2683
  msgid ""
2684
  "Name your project, and go through the basic setup. You’ll need to select "
2685
  "your use case, give a description and enter a name for the App as well."
2686
  msgstr ""
2687
 
2688
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:24
2689
  #, fuzzy, php-format
2690
  #| msgid "Click \"Edit\"."
2691
  msgid "Click \"<b>%s</b>\"!"
2692
  msgstr "Klik op \"Bewerken\"."
2693
 
2694
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:25
2695
  #, php-format
2696
  msgid ""
2697
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
@@ -2699,32 +1805,27 @@ msgid ""
2699
  "press \"<b>Save Changes</b>\"."
2700
  msgstr ""
2701
 
2702
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:26
2703
  #, php-format
2704
  msgid ""
2705
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
2706
  "\" section click on the name of your App."
2707
  msgstr ""
2708
 
2709
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:27
2710
  #, fuzzy, php-format
2711
  #| msgid "Name your project and then click on the Create button again"
2712
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
2713
  msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
2714
 
2715
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:28
2716
  #, fuzzy, php-format
2717
  #| msgid "Click on the Create button"
2718
  msgid "Switch on the \"<b>%s</b>\" option."
2719
  msgstr "Klik op de knop Aanmaken"
2720
 
2721
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:39
2722
  #, fuzzy, php-format
2723
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
2724
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
2725
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2726
 
2727
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:40
2728
  #, php-format
2729
  msgid ""
2730
  "If you want to get the email address as well, then don’t forget to enable "
@@ -2732,86 +1833,66 @@ msgid ""
2732
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
2733
  msgstr ""
2734
 
2735
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:41
2736
  #, fuzzy, php-format
2737
  #| msgid "Click on \"Save\""
2738
  msgid "Click on \"<b>%s</b>\"."
2739
  msgstr "Klik op \"Opslaan\""
2740
 
2741
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:42
2742
  #, php-format
2743
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
2744
  msgstr ""
2745
 
2746
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:27
2747
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:26
2748
  msgid "API Key"
2749
  msgstr "API Sleutel"
2750
 
2751
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:38
2752
  msgid "API secret key"
2753
  msgstr "API geheime sleutel"
2754
 
2755
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:57
2756
  msgid "Profile image size"
2757
  msgstr "Profielafbeelding grootte"
2758
 
2759
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:71
2760
  msgid "Original"
2761
  msgstr "Origineel"
2762
 
2763
- #: nextend-facebook-connect/providers/twitter/twitter.php:70
2764
  msgid "Continue with <b>Twitter</b>"
2765
  msgstr "Doorgaan met <b>Twitter</b>"
2766
 
2767
- #: nextend-facebook-connect/providers/twitter/twitter.php:71
2768
  #, fuzzy
2769
  #| msgid "Continue with <b>Twitter</b>"
2770
  msgid "Sign up with <b>Twitter</b>"
2771
  msgstr "Doorgaan met <b>Twitter</b>"
2772
 
2773
- #: nextend-facebook-connect/providers/twitter/twitter.php:72
2774
  msgid "Link account with <b>Twitter</b>"
2775
  msgstr "Koppel met <b>Twitter</b>"
2776
 
2777
- #: nextend-facebook-connect/providers/twitter/twitter.php:73
2778
  msgid "Unlink account from <b>Twitter</b>"
2779
  msgstr "Ontkoppel van <b>Twitter</b>"
2780
 
2781
- #: nextend-facebook-connect/widget.php:10
2782
  #, php-format
2783
  msgid "%s Buttons"
2784
  msgstr "%s Knoppen"
2785
 
2786
- #: nextend-facebook-connect/widget.php:30
2787
  msgid "Title:"
2788
  msgstr "Titel:"
2789
 
2790
- #: nextend-facebook-connect/widget.php:38
2791
  msgid "Button style:"
2792
  msgstr "Knop stijl:"
2793
 
2794
- #: nextend-facebook-connect/widget.php:53
2795
  msgid "Button align:"
2796
  msgstr "Knop uitlijning:"
2797
 
2798
- #: nextend-facebook-connect/widget.php:85
2799
  msgid "Show link buttons"
2800
  msgstr "Toon koppel-knoppen"
2801
 
2802
- #: nextend-facebook-connect/widget.php:94
2803
  msgid "Show unlink buttons"
2804
  msgstr "Toon ontkoppel-knoppen"
2805
 
2806
- #: nextend-social-login-pro/class-provider-extension.php:117
2807
  msgid "Social login is not allowed with this role!"
2808
  msgstr "Social login is niet toegestaan bij deze rol!"
2809
 
2810
- #: nextend-social-login-pro/class-provider-extension.php:213
2811
  msgid "Please enter a username."
2812
  msgstr "Vul gebruikersnaam in."
2813
 
2814
- #: nextend-social-login-pro/class-provider-extension.php:216
2815
  msgid ""
2816
  "This username is invalid because it uses illegal characters. Please enter a "
2817
  "valid username."
@@ -2819,7 +1900,6 @@ msgstr ""
2819
  "Deze gebruikersnaam is ongeldig omdat hij illegale tekens gebruikt. Vul een "
2820
  "geldige gebruikersnaam in."
2821
 
2822
- #: nextend-social-login-pro/class-provider-extension.php:222
2823
  #, fuzzy
2824
  #| msgid "This username is already registered. Please choose another one."
2825
  msgid ""
@@ -2827,29 +1907,24 @@ msgid ""
2827
  "another one."
2828
  msgstr "Deze gebruikersnaam is al in gebruik. Kies een andere."
2829
 
2830
- #: nextend-social-login-pro/class-provider-extension.php:229
2831
  #, fuzzy
2832
  #| msgid "Sorry, that username is not allowed."
2833
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
2834
  msgstr "Sorry, deze gebruikersnaam is niet toegestaan."
2835
 
2836
- #: nextend-social-login-pro/class-provider-extension.php:247
2837
  msgid "Username"
2838
  msgstr "Gebruikersnaam"
2839
 
2840
- #: nextend-social-login-pro/class-provider-extension.php:300
2841
  #, fuzzy
2842
  #| msgid "<strong>ERROR</strong>: Please enter a password."
2843
  msgid "<strong>Error</strong>: Please enter an email address."
2844
  msgstr "<strong>FOUT</strong>: Voer een wachtwoord in."
2845
 
2846
- #: nextend-social-login-pro/class-provider-extension.php:303
2847
  #, fuzzy
2848
  #| msgid "The email address isn&#8217;t correct."
2849
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
2850
  msgstr "Het e-mailadres is niet juist."
2851
 
2852
- #: nextend-social-login-pro/class-provider-extension.php:307
2853
  #, fuzzy
2854
  #| msgid "This email is already registered, please choose another one."
2855
  msgid ""
@@ -2857,17 +1932,14 @@ msgid ""
2857
  "another one."
2858
  msgstr "Dit e-mailadres is al geregistreerd. Kies een andere."
2859
 
2860
- #: nextend-social-login-pro/class-provider-extension.php:327
2861
  msgid "Registration confirmation will be emailed to you."
2862
  msgstr "Een bevestiging van de registratie wordt naar je gemaild."
2863
 
2864
- #: nextend-social-login-pro/class-provider-extension.php:386
2865
  #, fuzzy
2866
  #| msgid "<strong>ERROR</strong>: Please enter a password."
2867
  msgid "<strong>Error</strong>: Please enter a password."
2868
  msgstr "<strong>FOUT</strong>: Voer een wachtwoord in."
2869
 
2870
- #: nextend-social-login-pro/class-provider-extension.php:392
2871
  #, fuzzy
2872
  #| msgid ""
2873
  #| "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
@@ -2875,7 +1947,6 @@ msgid "<strong>Error</strong>: Passwords may not contain the character \"\\\"."
2875
  msgstr ""
2876
  "<strong>FOUT</strong>: Wachtwoorden mogen niet het teken \"\\\" bevatten."
2877
 
2878
- #: nextend-social-login-pro/class-provider-extension.php:398
2879
  #, fuzzy
2880
  #| msgid ""
2881
  #| "<strong>ERROR</strong>: Please enter the same password in both password "
@@ -2887,23 +1958,18 @@ msgstr ""
2887
  "<strong>FOUT</strong>: Voer hetzelfde wachtwoord in beide wachtwoordvelden "
2888
  "in."
2889
 
2890
- #: nextend-social-login-pro/class-provider-extension.php:415
2891
  msgid "Password"
2892
  msgstr "Wachtwoord"
2893
 
2894
- #: nextend-social-login-pro/class-provider-extension.php:425
2895
  msgid "Strength indicator"
2896
  msgstr "Sterkte-indicator"
2897
 
2898
- #: nextend-social-login-pro/class-provider-extension.php:430
2899
  msgid "Confirm use of weak password"
2900
  msgstr "Bevestig het gebruik van een zwak wachtwoord"
2901
 
2902
- #: nextend-social-login-pro/class-provider-extension.php:436
2903
  msgid "Confirm password"
2904
  msgstr "Bevestig wachtwoord"
2905
 
2906
- #: nextend-social-login-pro/class-provider-extension.php:448
2907
  #, php-format
2908
  msgid ""
2909
  "This email is already registered, please login in to your account to link "
@@ -2912,26 +1978,21 @@ msgstr ""
2912
  "Dit e-mailadres is al geregistreerd, log in op je account om te koppelen met "
2913
  "%1$s."
2914
 
2915
- #: nextend-social-login-pro/nextend-social-login-pro.php:104
2916
  #, php-format
2917
  msgid "Please install and activate %1$s to use the %2$s"
2918
  msgstr "Installeer en activeer %1$s om de %2$s te gebruiken"
2919
 
2920
- #: nextend-social-login-pro/nextend-social-login-pro.php:118
2921
  msgid "Network Activate"
2922
  msgstr "Netwerk Activeren"
2923
 
2924
- #: nextend-social-login-pro/nextend-social-login-pro.php:130
2925
  msgid "Install now!"
2926
  msgstr "Installeer nu!"
2927
 
2928
- #: nextend-social-login-pro/nextend-social-login-pro.php:826
2929
  #, fuzzy
2930
  #| msgid "Providers"
2931
  msgid "Social Providers"
2932
  msgstr "Providers"
2933
 
2934
- #: nextend-social-login-pro/provider-extensions/facebook.php:74
2935
  #, php-format
2936
  msgid ""
2937
  "The Facebook Sync data needs an approved %1$s and your App must use the "
@@ -2940,7 +2001,6 @@ msgstr ""
2940
  "De Facebook Sync data heeft een goedgekeurd %1$s nodig en je App moet de "
2941
  "laatste %2$s versie gebruiken!"
2942
 
2943
- #: nextend-social-login-pro/provider-extensions/google.php:187
2944
  #, php-format
2945
  msgid ""
2946
  "Most of these information can only be retrieved, when the field is marked as "
@@ -2949,14 +2009,10 @@ msgstr ""
2949
  "De meeste van deze informatie kan alleen worden opgehaald, wanneer het veld "
2950
  "als openbaar is gemarkeerd op de %s pagina van de gebruiker!"
2951
 
2952
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:10
2953
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:28
2954
  #, php-format
2955
  msgid "Visit %s"
2956
  msgstr "Bezoek %s"
2957
 
2958
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:11
2959
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:32
2960
  #, fuzzy
2961
  #| msgid ""
2962
  #| "On the right side, under \"Manage\", hover over the gear icon and select "
@@ -2968,15 +2024,11 @@ msgstr ""
2968
  "Aan de rechterkant, onder \"Beheer\", ga met de muis over het "
2969
  "tandwielpictogram en selecteer de optie \"Webinstellingen\"."
2970
 
2971
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:12
2972
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:33
2973
  #, fuzzy
2974
  #| msgid "Click \"Edit\"."
2975
  msgid "Click \"<b>Edit</b>\"."
2976
  msgstr "Klik op \"Bewerken\"."
2977
 
2978
- #: nextend-social-login-pro/providers/amazon/admin/fix-redirect-uri.php:15
2979
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:37
2980
  #, fuzzy
2981
  #| msgid ""
2982
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
@@ -2984,13 +2036,6 @@ msgid "Add the following URL to the \"<b>Allowed Return URLs</b>\" field: "
2984
  msgstr ""
2985
  "Voeg de volgende URL toe aan het veld \"Toegestane Return URLs\" <b>%s</b> "
2986
 
2987
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:19
2988
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:10
2989
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:10
2990
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:10
2991
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:10
2992
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:10
2993
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:10
2994
  #, php-format
2995
  msgid ""
2996
  "To allow your visitors to log in with their %1$s account, first you must "
@@ -3005,7 +2050,6 @@ msgstr ""
3005
  "\"Instellingen\" en configureer je de gegevens \"%2$s\" en \"%3$s\" volgens "
3006
  "je %1$s App."
3007
 
3008
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:29
3009
  #, fuzzy
3010
  #| msgid ""
3011
  #| "If you don't have a Security Profile yet, you'll need to create one. You "
@@ -3020,7 +2064,6 @@ msgstr ""
3020
  "dit doen door op de oranje knop \"Maak een Nieuw Veiligheidsprofiel\" aan de "
3021
  "linkerkant te klikken."
3022
 
3023
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:30
3024
  #, fuzzy
3025
  #| msgid ""
3026
  #| "Fill \"Security Profile Name\", \"Security Profile Description\" and "
@@ -3032,13 +2075,11 @@ msgstr ""
3032
  "Vul \"Naam Beveiligingsprofiel\", \"Beschrijving Beveiligingsprofiel\" en "
3033
  "\"Toestemming privacyverklaring URL\" in."
3034
 
3035
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:31
3036
  #, fuzzy
3037
  #| msgid "Once you filled all the required fields, click \"Save\"."
3038
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
3039
  msgstr "Zodra je alle verplichte velden hebt ingevuld, klik je op \"Opslaan\"."
3040
 
3041
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:34
3042
  #, fuzzy, php-format
3043
  #| msgid ""
3044
  #| "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</"
@@ -3050,14 +2091,11 @@ msgstr ""
3050
  "Vul \"Toegestane Oorsprong\" in met de url van je homepage, waarschijnlijk: "
3051
  "<b>%s</b>"
3052
 
3053
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:45
3054
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:41
3055
  #, fuzzy
3056
  #| msgid "When all fields are filled, click \"Save\"."
3057
  msgid "When all fields are filled, click \"<b>Save</b>\"."
3058
  msgstr "Wanneer alle velden zijn ingevuld, klik je op \"Opslaan\"."
3059
 
3060
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:46
3061
  #, fuzzy
3062
  #| msgid ""
3063
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -3069,43 +2107,33 @@ msgstr ""
3069
  "Vind de benodigde \"Client ID\" en \"Client Geheim\" in het midden van de "
3070
  "pagina, onder het tabblad \"Web Instelling\"."
3071
 
3072
- #: nextend-social-login-pro/providers/amazon/amazon.php:40
3073
  msgid "Continue with <b>Amazon</b>"
3074
  msgstr "Doorgaan met <b>Amazonië</b>"
3075
 
3076
- #: nextend-social-login-pro/providers/amazon/amazon.php:41
3077
  #, fuzzy
3078
  #| msgid "Continue with <b>Amazon</b>"
3079
  msgid "Sign up with <b>Amazon</b>"
3080
  msgstr "Doorgaan met <b>Amazonië</b>"
3081
 
3082
- #: nextend-social-login-pro/providers/amazon/amazon.php:42
3083
  msgid "Link account with <b>Amazon</b>"
3084
  msgstr "Koppel met <b>Amazon</b>"
3085
 
3086
- #: nextend-social-login-pro/providers/amazon/amazon.php:43
3087
  msgid "Unlink account from <b>Amazon</b>"
3088
  msgstr "Ontkoppel van <b>Amazon</b>"
3089
 
3090
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:21
3091
  #, fuzzy
3092
  #| msgid "Click on the name of your %s App."
3093
  msgid "Click on the name of your service."
3094
  msgstr "Klik op de naam van je %s App."
3095
 
3096
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:22
3097
  msgid ""
3098
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
3099
  msgstr ""
3100
 
3101
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:23
3102
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:56
3103
  #, php-format
3104
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
3105
  msgstr ""
3106
 
3107
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:24
3108
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:82
3109
  #, fuzzy, php-format
3110
  #| msgid ""
3111
  #| "Fill the \"Callback Domain\" field with your domain name probably: <b>%s</"
@@ -3117,20 +2145,16 @@ msgstr ""
3117
  "Vul het \"Callback Domein\" veld in met je domeinnaam waarschijnlijk: <b>%s</"
3118
  "b> "
3119
 
3120
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:27
3121
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:85
3122
  #, fuzzy
3123
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3124
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
3125
  msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
3126
 
3127
- #: nextend-social-login-pro/providers/apple/admin/fix-redirect-uri.php:35
3128
  msgid ""
3129
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
3130
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
3131
  msgstr ""
3132
 
3133
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:30
3134
  #, fuzzy, php-format
3135
  #| msgid ""
3136
  #| "To allow your visitors to log in with their %1$s account, first you must "
@@ -3151,7 +2175,6 @@ msgstr ""
3151
  "\"Instellingen\" en configureer je de gegevens \"%2$s\" en \"%3$s\" volgens "
3152
  "je %1$s App."
3153
 
3154
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:37
3155
  msgid ""
3156
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
3157
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
@@ -3159,37 +2182,31 @@ msgid ""
3159
  "App!"
3160
  msgstr ""
3161
 
3162
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:38
3163
  msgid ""
3164
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
3165
  "b>!"
3166
  msgstr ""
3167
 
3168
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:43
3169
  msgid "1.) Create the associated App:"
3170
  msgstr ""
3171
 
3172
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:45
3173
  #, php-format
3174
  msgid ""
3175
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
3176
  "option and click the \"Continue\" button."
3177
  msgstr ""
3178
 
3179
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:46
3180
  #, php-format
3181
  msgid ""
3182
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
3183
  "\"<b>Continue</b>\" button."
3184
  msgstr ""
3185
 
3186
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:47
3187
  #, fuzzy
3188
  #| msgid "Enter a \"Description\" for your app!"
3189
  msgid "Enter a \"<b>Description</b>\""
3190
  msgstr "Vul een \"Beschrijving\" in voor je app!"
3191
 
3192
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:48
3193
  #, php-format
3194
  msgid ""
3195
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
@@ -3197,187 +2214,152 @@ msgid ""
3197
  "app at its end: <b>%s.nslapp</b>"
3198
  msgstr ""
3199
 
3200
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:49
3201
  msgid ""
3202
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
3203
  "b>\" option."
3204
  msgstr ""
3205
 
3206
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:50
3207
  msgid ""
3208
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
3209
  "\"<b>Register</b>\" button."
3210
  msgstr ""
3211
 
3212
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:53
3213
  msgid "2.) Create the Key:"
3214
  msgstr ""
3215
 
3216
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:55
3217
  #, php-format
3218
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
3219
  msgstr ""
3220
 
3221
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:57
3222
  #, fuzzy
3223
  #| msgid "Enter the name of your App to the \"App name\" field."
3224
  msgid "Enter a name in the <b>Key Name</b> field."
3225
  msgstr "Voer de naam van je App in het veld \"App name\" in."
3226
 
3227
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:58
3228
  msgid ""
3229
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
3230
  "b>\"."
3231
  msgstr ""
3232
 
3233
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:59
3234
  msgid ""
3235
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
3236
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
3237
  "\"."
3238
  msgstr ""
3239
 
3240
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:60
3241
  msgid ""
3242
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
3243
  "\" button."
3244
  msgstr ""
3245
 
3246
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:61
3247
  msgid "<b>Don't download the key yet!</b>"
3248
  msgstr ""
3249
 
3250
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:64
3251
  msgid "3.) Create the Service:"
3252
  msgstr ""
3253
 
3254
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:66
3255
  #, php-format
3256
  msgid ""
3257
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
3258
  "tab."
3259
  msgstr ""
3260
 
3261
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:67
3262
  #, php-format
3263
  msgid ""
3264
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
3265
  "option and click the \"<b>Continue</b>\" button."
3266
  msgstr ""
3267
 
3268
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:68
3269
  #, fuzzy
3270
  #| msgid "Enter a \"Description\" for your app!"
3271
  msgid "Enter a \"<b>Description</b>\"."
3272
  msgstr "Vul een \"Beschrijving\" in voor je app!"
3273
 
3274
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:69
3275
  #, php-format
3276
  msgid ""
3277
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
3278
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
3279
  msgstr ""
3280
 
3281
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:72
3282
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
3283
  msgstr ""
3284
 
3285
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:75
3286
  msgid ""
3287
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
3288
  msgstr ""
3289
 
3290
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:76
3291
  #, php-format
3292
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
3293
  msgstr ""
3294
 
3295
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:79
3296
  msgid ""
3297
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
3298
  "b>\" button next to it."
3299
  msgstr ""
3300
 
3301
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:81
3302
  msgid ""
3303
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
3304
  "App what you just created."
3305
  msgstr ""
3306
 
3307
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:95
3308
  #, fuzzy
3309
  #| msgid "Click on the \"Create an App\" button on the top right corner."
3310
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
3311
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
3312
 
3313
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:96
3314
  msgid ""
3315
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
3316
  "button."
3317
  msgstr ""
3318
 
3319
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:99
3320
  msgid "4.) Configure Nextend Social Login with your credentials:"
3321
  msgstr ""
3322
 
3323
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:101
3324
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
3325
  msgstr ""
3326
 
3327
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:102
3328
  msgid "<strong><u>Private Key ID:</u></strong>"
3329
  msgstr ""
3330
 
3331
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:104
3332
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:122
3333
  #, fuzzy, php-format
3334
  #| msgid "Navigate to %s"
3335
  msgid "Navigate to: <b>%s</b>"
3336
  msgstr "Navigeer naar %s"
3337
 
3338
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:105
3339
  #, fuzzy
3340
  #| msgid "Click on the name of your %s App."
3341
  msgid "Click on the <b>name of your Key</b>."
3342
  msgstr "Klik op de naam van je %s App."
3343
 
3344
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:106
3345
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
3346
  msgstr ""
3347
 
3348
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:109
3349
  msgid "<strong><u>Private Key:</u></strong>"
3350
  msgstr ""
3351
 
3352
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:111
3353
  msgid ""
3354
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
3355
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
3356
  "this file safe</b>!</u> "
3357
  msgstr ""
3358
 
3359
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:112
3360
  msgid ""
3361
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
3362
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
3363
  "\" field of Nextend Social Login."
3364
  msgstr ""
3365
 
3366
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:115
3367
  msgid "<strong><u>Team Identifier:</u></strong>"
3368
  msgstr ""
3369
 
3370
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:117
3371
  msgid ""
3372
  "A 10 character long identifier, what you can find on the <b>top-right "
3373
  "corner, just under your name</b>."
3374
  msgstr ""
3375
 
3376
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:120
3377
  msgid "<strong><u>Service Identifier:</u></strong>"
3378
  msgstr ""
3379
 
3380
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:123
3381
  #, php-format
3382
  msgid ""
3383
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
@@ -3385,7 +2367,6 @@ msgid ""
3385
  "e.g.: <b>%s.nslclient</b>"
3386
  msgstr ""
3387
 
3388
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:126
3389
  #, fuzzy
3390
  #| msgid "Once you filled all the required fields, click \"Save\"."
3391
  msgid ""
@@ -3393,104 +2374,80 @@ msgid ""
3393
  "button."
3394
  msgstr "Zodra je alle verplichte velden hebt ingevuld, klik je op \"Opslaan\"."
3395
 
3396
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:127
3397
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
3398
  msgstr ""
3399
 
3400
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:128
3401
  msgid ""
3402
  "When you need to change your credentials for some reason, then you must "
3403
  "delete the token, copy the new credentials and generate a new token!"
3404
  msgstr ""
3405
 
3406
- #: nextend-social-login-pro/providers/apple/admin/settings.php:48
3407
  msgid "Delete credentials"
3408
  msgstr ""
3409
 
3410
- #: nextend-social-login-pro/providers/apple/admin/settings.php:78
3411
  msgid "Private Key ID"
3412
  msgstr ""
3413
 
3414
- #: nextend-social-login-pro/providers/apple/admin/settings.php:89
3415
  #, fuzzy
3416
  #| msgid "Privacy"
3417
  msgid "Private Key"
3418
  msgstr "Privacy"
3419
 
3420
- #: nextend-social-login-pro/providers/apple/admin/settings.php:98
3421
  #, fuzzy
3422
  #| msgid "Identifier"
3423
  msgid "Team Identifier"
3424
  msgstr "Identificatie"
3425
 
3426
- #: nextend-social-login-pro/providers/apple/admin/settings.php:106
3427
  #, fuzzy
3428
  #| msgid "Identifier"
3429
  msgid "Service Identifier"
3430
  msgstr "Identificatie"
3431
 
3432
- #: nextend-social-login-pro/providers/apple/admin/settings.php:116
3433
  msgid "Generate Token"
3434
  msgstr ""
3435
 
3436
- #: nextend-social-login-pro/providers/apple/apple.php:67
3437
  msgid "Continue with <b>Apple</b>"
3438
  msgstr "Doorgaan met <b>Apple</b>"
3439
 
3440
- #: nextend-social-login-pro/providers/apple/apple.php:68
3441
  #, fuzzy
3442
  #| msgid "Continue with <b>Apple</b>"
3443
  msgid "Sign up with <b>Apple</b>"
3444
  msgstr "Doorgaan met <b>Apple</b>"
3445
 
3446
- #: nextend-social-login-pro/providers/apple/apple.php:69
3447
  msgid "Link account with <b>Apple</b>"
3448
  msgstr "Koppel met <b>Apple</b>"
3449
 
3450
- #: nextend-social-login-pro/providers/apple/apple.php:70
3451
  msgid "Unlink account from <b>Apple</b>"
3452
  msgstr "Ontkoppel van <b>Apple</b>"
3453
 
3454
- #: nextend-social-login-pro/providers/apple/apple.php:164
3455
  #, php-format
3456
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
3457
  msgstr ""
3458
 
3459
- #: nextend-social-login-pro/providers/apple/apple.php:168
3460
- #: nextend-social-login-pro/providers/apple/apple.php:266
3461
- #: nextend-social-login-pro/providers/apple/apple.php:281
3462
- #: nextend-social-login-pro/providers/apple/apple.php:325
3463
  #, fuzzy, php-format
3464
  #| msgid "Network connection failed: %1$s"
3465
  msgid "Token generation failed: %1$s"
3466
  msgstr "Netwerkverbinding mislukt: %1$s"
3467
 
3468
- #: nextend-social-login-pro/providers/apple/apple.php:168
3469
  msgid "Please check your credentials!"
3470
  msgstr ""
3471
 
3472
- #: nextend-social-login-pro/providers/apple/apple.php:266
3473
  msgid "Private key format is not valid!"
3474
  msgstr ""
3475
 
3476
- #: nextend-social-login-pro/providers/apple/apple.php:292
3477
  #, php-format
3478
  msgid ""
3479
  "%s detected that your Apple credentials have expired. Please delete the "
3480
  "current credentials and generate new one!"
3481
  msgstr ""
3482
 
3483
- #: nextend-social-login-pro/providers/apple/apple.php:294
3484
  msgid "Apple Credentials"
3485
  msgstr ""
3486
 
3487
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:10
3488
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:10
3489
  #, php-format
3490
  msgid "Click on the name of your %s App."
3491
  msgstr "Klik op de naam van je %s App."
3492
 
3493
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:11
3494
  #, fuzzy
3495
  #| msgid ""
3496
  #| "Select the \"Settings\" tab and scroll down to the Authentication section!"
@@ -3501,21 +2458,16 @@ msgstr ""
3501
  "Selecteer het tabblad \"Instellingen\" en scroll naar beneden naar de sectie "
3502
  "Authenticatie!"
3503
 
3504
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:14
3505
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:27
3506
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:33
3507
  #, fuzzy
3508
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3509
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
3510
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
3511
 
3512
- #: nextend-social-login-pro/providers/disqus/admin/fix-redirect-uri.php:22
3513
  #, fuzzy
3514
  #| msgid "Click on the \"Save Changes\" button."
3515
  msgid "Click on the \"<b>Save Changes</b>\" button."
3516
  msgstr "Klik op de knop \"Wijzigingen Opslaan\"."
3517
 
3518
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:19
3519
  #, fuzzy
3520
  #| msgid ""
3521
  #| "Click on the link \"registering an application\" under the Applications "
@@ -3526,13 +2478,11 @@ msgid ""
3526
  msgstr ""
3527
  "Klik op de link \"aanvraag registreren\" onder het tabblad \"Applicaties\"."
3528
 
3529
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:20
3530
  #, fuzzy
3531
  #| msgid "Enter a \"Label\" and \"Description\" for your App."
3532
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
3533
  msgstr "Voer een \"Label\" en \"Beschrijving\" in voor je App."
3534
 
3535
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:21
3536
  #, fuzzy, php-format
3537
  #| msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
3538
  msgid ""
@@ -3540,7 +2490,6 @@ msgid ""
3540
  msgstr ""
3541
  "Vul \"Website\" in met de url van je homepage, waarschijnlijk: <b>%s</b>"
3542
 
3543
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:22
3544
  #, fuzzy
3545
  #| msgid ""
3546
  #| "Complete the Human test and click the \"Register my application\" button."
@@ -3550,13 +2499,11 @@ msgid ""
3550
  msgstr ""
3551
  "Voltooi de Menselijke test en klik op de knop \"Registreer mijn aanvraag\"."
3552
 
3553
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:23
3554
  #, fuzzy, php-format
3555
  #| msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
3556
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
3557
  msgstr "Vul het veld \"Domeinen\" in met je domeinnaam zoals: <b>%s</b>"
3558
 
3559
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:24
3560
  #, fuzzy
3561
  #| msgid ""
3562
  #| "Select \"Read only\" at Default Access under the Authentication section."
@@ -3567,19 +2514,16 @@ msgstr ""
3567
  "Selecteer \"Alleen lezen\" bij Standaard toegang onder de sectie "
3568
  "Authenticatie."
3569
 
3570
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:35
3571
  #, fuzzy
3572
  #| msgid "Click on the \"Save Changes\" button."
3573
  msgid "Click on the \"<b>Save Changes</b>\" button!"
3574
  msgstr "Klik op de knop \"Wijzigingen Opslaan\"."
3575
 
3576
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:36
3577
  #, fuzzy
3578
  #| msgid "Navigate to the \"Details\" tab of your Application!"
3579
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
3580
  msgstr "Navigeer naar het tabblad \"Details\" van je Applicatie!"
3581
 
3582
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:37
3583
  #, fuzzy
3584
  #| msgid ""
3585
  #| "Here you can see your \"API Key\" and \"API Secret:\". These will be "
@@ -3591,61 +2535,49 @@ msgstr ""
3591
  "Hier kun je je \"API Sleutel\" en \"API Geheim:\" zien. Deze zijn nodig in "
3592
  "de instellingen van de plugin."
3593
 
3594
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:38
3595
  msgid "API Secret"
3596
  msgstr "API Geheim"
3597
 
3598
- #: nextend-social-login-pro/providers/disqus/disqus.php:87
3599
  msgid "Continue with <b>Disqus</b>"
3600
  msgstr "Doorgaan met <b>Disqus</b>"
3601
 
3602
- #: nextend-social-login-pro/providers/disqus/disqus.php:88
3603
  #, fuzzy
3604
  #| msgid "Continue with <b>Disqus</b>"
3605
  msgid "Sign up with <b>Disqus</b>"
3606
  msgstr "Doorgaan met <b>Disqus</b>"
3607
 
3608
- #: nextend-social-login-pro/providers/disqus/disqus.php:89
3609
  msgid "Link account with <b>Disqus</b>"
3610
  msgstr "Koppel met <b>Disqus</b>"
3611
 
3612
- #: nextend-social-login-pro/providers/disqus/disqus.php:90
3613
  msgid "Unlink account from <b>Disqus</b>"
3614
  msgstr "Ontkoppel van <b>Disqus</b>"
3615
 
3616
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:10
3617
  #, fuzzy, php-format
3618
  #| msgid "Click on the name of your %s App."
3619
  msgid "Click on the name of the App you configured %s with."
3620
  msgstr "Klik op de naam van je %s App."
3621
 
3622
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:11
3623
  #, fuzzy, php-format
3624
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
3625
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
3626
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
3627
 
3628
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:14
3629
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:25
3630
  #, fuzzy
3631
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3632
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
3633
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
3634
 
3635
- #: nextend-social-login-pro/providers/github/admin/fix-redirect-uri.php:22
3636
  #, fuzzy
3637
  #| msgid "Hit update to save the changes"
3638
  msgid "Press the <b>Update application</b> button to save the changes."
3639
  msgstr "Klik op update om de wijzigingen op te slaan"
3640
 
3641
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:19
3642
  #, php-format
3643
  msgid ""
3644
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
3645
  "button."
3646
  msgstr ""
3647
 
3648
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:20
3649
  #, fuzzy
3650
  #| msgid ""
3651
  #| "Enter a name for your App under the \"Application name\" field, which "
@@ -3657,7 +2589,6 @@ msgstr ""
3657
  "Voer een naam in voor je App in het veld \"Toepassingsnaam\", die zal "
3658
  "verschijnen als de naam van de app die om toestemming vraagt."
3659
 
3660
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:21
3661
  #, fuzzy, php-format
3662
  #| msgid ""
3663
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
@@ -3666,19 +2597,16 @@ msgid ""
3666
  msgstr ""
3667
  "Vul \"Website URL\" in met de url van je homepage, waarschijnlijk: <b>%s</b>"
3668
 
3669
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:22
3670
  msgid ""
3671
  "In the <b>Description</b> field you should explain what this App will be "
3672
  "used for."
3673
  msgstr ""
3674
 
3675
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:33
3676
  #, fuzzy
3677
  #| msgid "Click on the \"Create New Application\" button."
3678
  msgid "Click the <b>Register application</b> button."
3679
  msgstr "Klik op de knop \"Nieuwe Applicatie Maken\"."
3680
 
3681
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:34
3682
  #, fuzzy
3683
  #| msgid ""
3684
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
@@ -3690,61 +2618,50 @@ msgstr ""
3690
  "Vind de benodigde \"Client ID\" en \"Client Geheim\" in het midden van de "
3691
  "pagina, onder het tabblad \"Web Instelling\"."
3692
 
3693
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:37
3694
  #, php-format
3695
  msgid ""
3696
  "<b>Important note:</b> The email address is only retrievable, if there is a "
3697
  "public email address set at the %1$s profile page%2$s!"
3698
  msgstr ""
3699
 
3700
- #: nextend-social-login-pro/providers/github/github.php:125
3701
  msgid "Continue with <b>GitHub</b>"
3702
  msgstr "Doorgaan met <b>GitHub</b>"
3703
 
3704
- #: nextend-social-login-pro/providers/github/github.php:126
3705
  #, fuzzy
3706
  msgid "Sign up with <b>GitHub</b>"
3707
  msgstr "Doorgaan met <b>GitHub</b>"
3708
 
3709
- #: nextend-social-login-pro/providers/github/github.php:127
3710
  msgid "Link account with <b>GitHub</b>"
3711
  msgstr "Koppel met <b>GitHub</b>"
3712
 
3713
- #: nextend-social-login-pro/providers/github/github.php:128
3714
  msgid "Unlink account from <b>GitHub</b>"
3715
  msgstr "Ontkoppel van <b>GitHub</b>"
3716
 
3717
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:8
3718
  #, fuzzy, php-format
3719
  #| msgid "Navigate to %s"
3720
  msgid "Navigate to your %s"
3721
  msgstr "Navigeer naar %s"
3722
 
3723
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:10
3724
  #, php-format
3725
  msgid "Select your %s App and click on the LINE Login section."
3726
  msgstr ""
3727
 
3728
- #: nextend-social-login-pro/providers/line/admin/fix-redirect-uri.php:13
3729
  #, fuzzy
3730
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
3731
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
3732
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
3733
 
3734
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:17
3735
  #, php-format
3736
  msgid ""
3737
  "Editing Live Apps are only possible with a %s. So please make sure you own "
3738
  "one!"
3739
  msgstr ""
3740
 
3741
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:19
3742
  #, fuzzy
3743
  #| msgid "Click the \"Create\" button!"
3744
  msgid "Click the \"<b>Create a new provider</b>\" button."
3745
  msgstr "Klik op de \"Maak\"-knop!"
3746
 
3747
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:20
3748
  #, fuzzy
3749
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
3750
  msgid ""
@@ -3752,41 +2669,34 @@ msgid ""
3752
  "button."
3753
  msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
3754
 
3755
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:21
3756
  msgid ""
3757
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
3758
  "channel</b>\" option."
3759
  msgstr ""
3760
 
3761
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:22
3762
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
3763
  msgstr ""
3764
 
3765
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:23
3766
  msgid ""
3767
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
3768
  "created."
3769
  msgstr ""
3770
 
3771
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:24
3772
  #, fuzzy
3773
  #| msgid "Click on \"Save\""
3774
  msgid "Select your \"<b>Region</b>\"."
3775
  msgstr "Klik op \"Opslaan\""
3776
 
3777
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:25
3778
  msgid ""
3779
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
3780
  "description</b>\". These will appear on your Consent Screen!"
3781
  msgstr ""
3782
 
3783
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:26
3784
  #, fuzzy
3785
  #| msgid "At the \"Type\" make sure \"Web\" is selected!"
3786
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
3787
  msgstr "Zorg er bij \"Type\" \"Web\" is geselecteerd!"
3788
 
3789
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:27
3790
  #, fuzzy
3791
  #| msgid ""
3792
  #| "Read and agree the \"API Terms of Use\" then click the \"Create App\" "
@@ -3798,13 +2708,11 @@ msgstr ""
3798
  "Lees en accordeer de \"API Gebruiksvoorwaarden\" en klik dan op de knop "
3799
  "\"Maak App\"!"
3800
 
3801
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:28
3802
  msgid ""
3803
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
3804
  "near the \"<b>Email address permission</b>\" label."
3805
  msgstr ""
3806
 
3807
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:29
3808
  #, fuzzy
3809
  #| msgid ""
3810
  #| "Complete the Human test and click the \"Register my application\" button."
@@ -3812,19 +2720,16 @@ msgid "Fill out the form, then click the \"<b>Submit</b>\" button."
3812
  msgstr ""
3813
  "Voltooi de Menselijke test en klik op de knop \"Registreer mijn aanvraag\"."
3814
 
3815
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:30
3816
  msgid ""
3817
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
3818
  "section."
3819
  msgstr ""
3820
 
3821
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:41
3822
  msgid ""
3823
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
3824
  "Channel!"
3825
  msgstr ""
3826
 
3827
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:42
3828
  #, fuzzy
3829
  #| msgid ""
3830
  #| "On the top of the page, you will find the necessary \"Client ID\" and "
@@ -3837,87 +2742,67 @@ msgstr ""
3837
  "Bovenaan de pagina vind je de nodige \"Client ID\" en \"Client Geheim\"! "
3838
  "Deze zijn nodig in de instellingen van de plugin."
3839
 
3840
- #: nextend-social-login-pro/providers/line/admin/settings.php:26
3841
  msgid "Channel ID"
3842
  msgstr ""
3843
 
3844
- #: nextend-social-login-pro/providers/line/admin/settings.php:38
3845
  #, fuzzy
3846
  #| msgid "Client Secret"
3847
  msgid "Channel Secret"
3848
  msgstr "Client Geheim"
3849
 
3850
- #: nextend-social-login-pro/providers/line/line.php:36
3851
  #, fuzzy
3852
  #| msgid "Continue with <b>LinkedIn</b>"
3853
  msgid "Continue with <b>Line</b>"
3854
  msgstr "Doorgaan met <b>LinkedIn</b>"
3855
 
3856
- #: nextend-social-login-pro/providers/line/line.php:37
3857
  #, fuzzy
3858
  #| msgid "Continue with <b>LinkedIn</b>"
3859
  msgid "Sign up with <b>Line</b>"
3860
  msgstr "Doorgaan met <b>LinkedIn</b>"
3861
 
3862
- #: nextend-social-login-pro/providers/line/line.php:38
3863
  #, fuzzy
3864
  #| msgid "Link account with <b>LinkedIn</b>"
3865
  msgid "Link account with <b>Line</b>"
3866
  msgstr "Koppel met <b>LinkedIn</b>"
3867
 
3868
- #: nextend-social-login-pro/providers/line/line.php:39
3869
  #, fuzzy
3870
  #| msgid "Unlink account from <b>LinkedIn</b>"
3871
  msgid "Unlink account from <b>Line</b>"
3872
  msgstr "Ontkoppel van <b>LinkedIn</b>"
3873
 
3874
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:10
3875
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
3876
  msgstr ""
3877
 
3878
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:13
3879
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:14
3880
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:24
3881
  #, fuzzy
3882
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3883
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
3884
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3885
 
3886
- #: nextend-social-login-pro/providers/linkedin/admin/fix-redirect-uri.php:21
3887
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:38
3888
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:22
3889
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:22
3890
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:21
3891
  #, fuzzy
3892
  #| msgid "Hit update to save the changes"
3893
  msgid "Click on \"<b>Update</b>\" to save the changes"
3894
  msgstr "Klik op update om de wijzigingen op te slaan"
3895
 
3896
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:19
3897
  #, fuzzy
3898
  #| msgid "Locate the \"Create app\" button and click on it."
3899
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
3900
  msgstr "Zoek de knop \"App maken\" op en klik erop."
3901
 
3902
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:20
3903
  msgid "Enter the name of your App to the \"App name\" field."
3904
  msgstr "Voer de naam van je App in het veld \"App name\" in."
3905
 
3906
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:21
3907
  #, php-format
3908
  msgid ""
3909
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
3910
  "one yet, create new one at: %s"
3911
  msgstr ""
3912
 
3913
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:22
3914
  #, fuzzy
3915
  #| msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
3916
  msgid ""
3917
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
3918
  msgstr "Vul \"Privacy policy URL\" en \"User agreement URL\" in."
3919
 
3920
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:23
3921
  #, fuzzy
3922
  #| msgid ""
3923
  #| "Read and agree the \"API Terms of Use\" then click the \"Create App\" "
@@ -3929,7 +2814,6 @@ msgstr ""
3929
  "Lees en accordeer de \"API Gebruiksvoorwaarden\" en klik dan op de knop "
3930
  "\"Maak App\"!"
3931
 
3932
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:24
3933
  #, fuzzy
3934
  #| msgid "You will end up in the App setting area. Click on the Auth tab."
3935
  msgid ""
@@ -3938,25 +2822,21 @@ msgid ""
3938
  msgstr ""
3939
  "Je komt dan in de sectie App instellingen terecht. Klik op het tabblad Auth."
3940
 
3941
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:25
3942
  #, php-format
3943
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
3944
  msgstr ""
3945
 
3946
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:26
3947
  msgid ""
3948
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
3949
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
3950
  "button."
3951
  msgstr ""
3952
 
3953
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:27
3954
  #, fuzzy
3955
  #| msgid "Click on the Create button"
3956
  msgid "Click on the \"<b>Auth</b>\" tab."
3957
  msgstr "Klik op de knop Aanmaken"
3958
 
3959
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:30
3960
  #, fuzzy
3961
  #| msgid ""
3962
  #| "Find \"OAuth 2.0 settings\" section and add the following URL to the "
@@ -3968,7 +2848,6 @@ msgstr ""
3968
  "Zoek de sectie \"OAuth 2.0-instellingen\" en voeg de volgende URL toe aan "
3969
  "het veld \"Omleidings-URLs:\": <b>%s</b>"
3970
 
3971
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:39
3972
  #, fuzzy
3973
  #| msgid ""
3974
  #| "Find the necessary \"Client ID\" and \"Client Secret\" under the "
@@ -3980,54 +2859,43 @@ msgstr ""
3980
  "Zoek de benodigde \"Client ID\" en \"Client Geheim\" onder de sectie "
3981
  "Applicatie inloggegevens, op het tabblad Auth."
3982
 
3983
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:38
3984
  msgid "Continue with <b>LinkedIn</b>"
3985
  msgstr "Doorgaan met <b>LinkedIn</b>"
3986
 
3987
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:39
3988
  #, fuzzy
3989
  #| msgid "Continue with <b>LinkedIn</b>"
3990
  msgid "Sign up with <b>LinkedIn</b>"
3991
  msgstr "Doorgaan met <b>LinkedIn</b>"
3992
 
3993
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:40
3994
  msgid "Link account with <b>LinkedIn</b>"
3995
  msgstr "Koppel met <b>LinkedIn</b>"
3996
 
3997
- #: nextend-social-login-pro/providers/linkedin/linkedin.php:41
3998
  msgid "Unlink account from <b>LinkedIn</b>"
3999
  msgstr "Ontkoppel van <b>LinkedIn</b>"
4000
 
4001
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:9
4002
  #, fuzzy, php-format
4003
  #| msgid "Log in with your %s credentials if you are not logged in yet"
4004
  msgid "Log in with your %s credentials if you are not logged in yet."
4005
  msgstr "Log in met je %s inloggegevens als je nog niet ingelogd bent"
4006
 
4007
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:10
4008
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:19
4009
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
4010
  msgstr ""
4011
 
4012
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:11
4013
  #, fuzzy, php-format
4014
  #| msgid "Click on the App with App ID: %s"
4015
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
4016
  msgstr "Klik op de App met App ID: %s"
4017
 
4018
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:12
4019
  #, fuzzy
4020
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
4021
  msgid "Click on the link next to the Redirect URIs label."
4022
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
4023
 
4024
- #: nextend-social-login-pro/providers/microsoft/admin/fix-redirect-uri.php:15
4025
  #, fuzzy
4026
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
4027
  msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
4028
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
4029
 
4030
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:18
4031
  #, fuzzy, php-format
4032
  #| msgid "Log in with your %s credentials if you are not logged in yet"
4033
  msgid ""
@@ -4035,77 +2903,64 @@ msgid ""
4035
  "account."
4036
  msgstr "Log in met je %s inloggegevens als je nog niet ingelogd bent"
4037
 
4038
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:20
4039
  #, fuzzy
4040
  #| msgid "Click on \"Save\""
4041
  msgid "Click on \"<b>New registration</b>\"."
4042
  msgstr "Klik op \"Opslaan\""
4043
 
4044
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:21
4045
  #, fuzzy
4046
  #| msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
4047
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
4048
  msgstr "Vul het veld \"Domeinen\" in met je domeinnaam zoals: <b>%s</b>"
4049
 
4050
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:22
4051
  msgid ""
4052
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
4053
  "account types."
4054
  msgstr ""
4055
 
4056
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:25
4057
  #, fuzzy
4058
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
4059
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
4060
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
4061
 
4062
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:33
4063
  #, fuzzy
4064
  #| msgid "Click on the \"Create New Application\" button."
4065
  msgid "Create your App with the \"<b>Register</b>\" button."
4066
  msgstr "Klik op de knop \"Nieuwe Applicatie Maken\"."
4067
 
4068
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:34
4069
  #, fuzzy
4070
  #| msgid "Click on the Create button"
4071
  msgid "You land on the \"<b>Overview</b>\" page."
4072
  msgstr "Klik op de knop Aanmaken"
4073
 
4074
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:35
4075
  msgid ""
4076
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
4077
  "(client) ID</b> in the plugin settings."
4078
  msgstr ""
4079
 
4080
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:36
4081
  msgid ""
4082
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
4083
  "Client credentials label."
4084
  msgstr ""
4085
 
4086
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:37
4087
  #, fuzzy
4088
  #| msgid "Click on \"Save\""
4089
  msgid "Click on \"<b>New client secret</b>\"."
4090
  msgstr "Klik op \"Opslaan\""
4091
 
4092
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:38
4093
  #, fuzzy
4094
  #| msgid "Enter a \"Description\" for your app!"
4095
  msgid "Fill the \"<b>Description</b>\" field."
4096
  msgstr "Vul een \"Beschrijving\" in voor je app!"
4097
 
4098
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:39
4099
  #, fuzzy
4100
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
4101
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
4102
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
4103
 
4104
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:40
4105
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
4106
  msgstr ""
4107
 
4108
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:41
4109
  #, fuzzy
4110
  #| msgid ""
4111
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
@@ -4117,54 +2972,44 @@ msgstr ""
4117
  "Hier kun je je \"Client ID\" en \"Client Geheim\" zien. Deze zijn nodig in "
4118
  "de instellingen van de plugin."
4119
 
4120
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:26
4121
  #, fuzzy
4122
  #| msgid "Application ID"
4123
  msgid "Application (client) ID"
4124
  msgstr "Applicatie-ID"
4125
 
4126
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:38
4127
  #, fuzzy
4128
  #| msgid "Client Secret"
4129
  msgid "Client secret"
4130
  msgstr "Client Geheim"
4131
 
4132
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:38
4133
  #, fuzzy
4134
  #| msgid "Continue with <b>Yahoo</b>"
4135
  msgid "Continue with <b>Microsoft</b>"
4136
  msgstr "Doorgaan met <b>Yahoo</b>"
4137
 
4138
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:39
4139
  #, fuzzy
4140
  #| msgid "Continue with <b>Yahoo</b>"
4141
  msgid "Sign up with <b>Microsoft</b>"
4142
  msgstr "Doorgaan met <b>Yahoo</b>"
4143
 
4144
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:40
4145
  #, fuzzy
4146
  #| msgid "Link account with <b>Yahoo</b>"
4147
  msgid "Link account with <b>Microsoft</b>"
4148
  msgstr "Koppel met <b>Yahoo</b>"
4149
 
4150
- #: nextend-social-login-pro/providers/microsoft/microsoft.php:41
4151
  #, fuzzy
4152
  #| msgid "Unlink account from <b>Yahoo</b>"
4153
  msgid "Unlink account from <b>Microsoft</b>"
4154
  msgstr "Ontkoppel van <b>Yahoo</b>"
4155
 
4156
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:10
4157
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:22
4158
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
4159
  msgstr ""
4160
 
4161
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:11
4162
  #, fuzzy, php-format
4163
  #| msgid "Click on the name of your %s App."
4164
  msgid "Click on the name of your %s App, under the REST API apps section."
4165
  msgstr "Klik op de naam van je %s App."
4166
 
4167
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:12
4168
  #, fuzzy
4169
  #| msgid ""
4170
  #| "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" "
@@ -4176,52 +3021,42 @@ msgstr ""
4176
  "Scroll naar beneden naar \"LIVE APP INSTELLINGEN\", zoek in de rubriek "
4177
  "\"Live Return URL\" en klik op \"Weergeven\"."
4178
 
4179
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:15
4180
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:28
4181
  #, fuzzy
4182
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
4183
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
4184
  msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
4185
 
4186
- #: nextend-social-login-pro/providers/paypal/admin/fix-redirect-uri.php:23
4187
  msgid "Click on \"Save\""
4188
  msgstr "Klik op \"Opslaan\""
4189
 
4190
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:17
4191
  #, php-format
4192
  msgid ""
4193
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
4194
  "step, if not click on the link!"
4195
  msgstr ""
4196
 
4197
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:18
4198
  msgid "Click on Registration and create a Business account."
4199
  msgstr ""
4200
 
4201
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:19
4202
  msgid "If you are done, follow the guide from the 5. step."
4203
  msgstr ""
4204
 
4205
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:20
4206
  #, fuzzy, php-format
4207
  #| msgid "Log in with your %s credentials if you are not logged in."
4208
  msgid "Log in with your %s credentials."
4209
  msgstr "Log in met je %s inloggegevens als je niet ingelogd bent."
4210
 
4211
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:23
4212
  #, fuzzy
4213
  #| msgid "Click on the \"Create an App\" button on the top right corner."
4214
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
4215
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
4216
 
4217
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:24
4218
  #, fuzzy
4219
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
4220
  msgid ""
4221
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
4222
  msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
4223
 
4224
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:25
4225
  #, fuzzy
4226
  #| msgid ""
4227
  #| "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" "
@@ -4233,7 +3068,6 @@ msgstr ""
4233
  "Scroll naar beneden naar \"LIVE APP INSTELLINGEN\", zoek in de rubriek "
4234
  "\"Live Return URL\" en klik op \"Weergeven\"."
4235
 
4236
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:36
4237
  #, fuzzy
4238
  #| msgid ""
4239
  #| "Scroll down to \"App feature options\" section and tick \"Log In with "
@@ -4245,7 +3079,6 @@ msgstr ""
4245
  "Scroll naar beneden naar de sectie \"App functieopties\" en vink \"Aanmelden "
4246
  "met PayPal\" aan."
4247
 
4248
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:37
4249
  #, fuzzy
4250
  #| msgid ""
4251
  #| "Click \"Advanced Options\" which can be found at the end of text after "
@@ -4257,13 +3090,11 @@ msgstr ""
4257
  "Klik op \"Geavanceerde Opties\" die je kunt vinden aan het einde van de "
4258
  "tekst na \"Verbinding maken met PayPal (voorheen ingelogd met PayPal)\"."
4259
 
4260
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:38
4261
  #, fuzzy
4262
  #| msgid "Tick \"Full name\"."
4263
  msgid "Tick \"<b>Full name</b>\"."
4264
  msgstr "Vink \"Volledige naam\" aan."
4265
 
4266
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:39
4267
  #, fuzzy
4268
  #| msgid ""
4269
  #| "\"Email address\" now requires an App Review by PayPal. To get the email "
@@ -4285,13 +3116,11 @@ msgstr ""
4285
  "Zorg er tot dan voor dat de e-mailscope niet is \"Ingeschakeld\" in ons "
4286
  "PayPal-instellingen-tabblad."
4287
 
4288
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:40
4289
  #, fuzzy
4290
  #| msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
4291
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
4292
  msgstr "Vul \"Privacy policy URL\" en \"User agreement URL\" in."
4293
 
4294
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:42
4295
  #, fuzzy
4296
  #| msgid ""
4297
  #| "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary "
@@ -4306,50 +3135,39 @@ msgstr ""
4306
  "\" en \"Geheim\"! ( Zorg ervoor dat je in \"Live\" modus bent en niet in "
4307
  "\"Sandbox\". )"
4308
 
4309
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:38
4310
  msgid "Secret"
4311
  msgstr "Geheim"
4312
 
4313
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:45
4314
  msgid "Email scope"
4315
  msgstr "E-mail scope"
4316
 
4317
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:54
4318
  msgid "Disable, when you have no rights for email address."
4319
  msgstr "Uitschakelen, wanneer je geen rechten hebt voor e-mailadres."
4320
 
4321
- #: nextend-social-login-pro/providers/paypal/paypal.php:65
4322
  msgid "Continue with <b>PayPal</b>"
4323
  msgstr "Doorgaan met <b>PayPal</b>"
4324
 
4325
- #: nextend-social-login-pro/providers/paypal/paypal.php:66
4326
  #, fuzzy
4327
  #| msgid "Continue with <b>PayPal</b>"
4328
  msgid "Sign up with <b>PayPal</b>"
4329
  msgstr "Doorgaan met <b>PayPal</b>"
4330
 
4331
- #: nextend-social-login-pro/providers/paypal/paypal.php:67
4332
  msgid "Link account with <b>PayPal</b>"
4333
  msgstr "Koppel met <b>PayPal</b>"
4334
 
4335
- #: nextend-social-login-pro/providers/paypal/paypal.php:68
4336
  msgid "Unlink account from <b>PayPal</b>"
4337
  msgstr "Ontkoppel van <b>PayPal</b>"
4338
 
4339
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:10
4340
  #, fuzzy
4341
  #| msgid "Click on the Manage button at the App"
4342
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
4343
  msgstr "Klik op de knop Beheer bij de App"
4344
 
4345
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:11
4346
  #, fuzzy
4347
  #| msgid "Go to the Settings menu"
4348
  msgid "Go to the \"<b>Settings</b>\" menu"
4349
  msgstr "Ga naar het menu Instellingen"
4350
 
4351
- #: nextend-social-login-pro/providers/vk/admin/fix-redirect-uri.php:14
4352
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:28
4353
  #, fuzzy
4354
  #| msgid ""
4355
  #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
@@ -4358,13 +3176,11 @@ msgstr ""
4358
  "Voeg de volgende URL toe aan het veld \"Geautoriseerde omleidings-URI:\": <b>"
4359
  "%s</b>"
4360
 
4361
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:19
4362
  #, fuzzy
4363
  #| msgid "Locate the \"Create app\" button and click on it."
4364
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
4365
  msgstr "Zoek de knop \"App maken\" op en klik erop."
4366
 
4367
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:20
4368
  #, fuzzy
4369
  #| msgid "Enter the title of your app and select \"Website\"."
4370
  msgid ""
@@ -4372,7 +3188,6 @@ msgid ""
4372
  "platform."
4373
  msgstr "Voer de titel van je app in en selecteer \"Website\"."
4374
 
4375
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:21
4376
  #, fuzzy, php-format
4377
  #| msgid ""
4378
  #| "Fill \"Site address\" with the url of your homepage, probably: <b>%s</b>"
@@ -4382,7 +3197,6 @@ msgid ""
4382
  msgstr ""
4383
  "Vul \"Siteadres\" in met de url van je homepage, waarschijnlijk: <b>%s</b>"
4384
 
4385
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:22
4386
  #, fuzzy, php-format
4387
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
4388
  msgid ""
@@ -4390,13 +3204,11 @@ msgid ""
4390
  msgstr ""
4391
  "Vul het veld \"Basisdomein\" in met je domein, waarschijnlijk: <b>%s</b>"
4392
 
4393
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:23
4394
  #, fuzzy
4395
  #| msgid "When all fields are filled, click \"Save\"."
4396
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
4397
  msgstr "Wanneer alle velden zijn ingevuld, klik je op \"Opslaan\"."
4398
 
4399
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:24
4400
  #, fuzzy
4401
  #| msgid "Fill the form for your app and upload an app icon then hit Save."
4402
  msgid ""
@@ -4406,19 +3218,16 @@ msgstr ""
4406
  "Vul het formulier in voor je app en upload een app-icoontje en klik "
4407
  "vervolgens op Opslaan."
4408
 
4409
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:25
4410
  #, fuzzy
4411
  #| msgid "Pick Settings at the left-hand menu "
4412
  msgid "Pick <b>Settings</b> at the left-hand menu "
4413
  msgstr "Kies Instellingen in het linker menu "
4414
 
4415
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:36
4416
  #, fuzzy
4417
  #| msgid "Save your app"
4418
  msgid "<b>Save</b> your app"
4419
  msgstr "Bewaar je app"
4420
 
4421
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:37
4422
  #, fuzzy
4423
  #| msgid ""
4424
  #| "Find the necessary Application ID and Secure key at the top of the "
@@ -4430,47 +3239,38 @@ msgstr ""
4430
  "Vind de benodigde Applicatie-ID en Secure sleutel bovenaan de Instellingen-"
4431
  "pagina waar je zojuist op de Opslaan knop hebt gedrukt."
4432
 
4433
- #: nextend-social-login-pro/providers/vk/admin/settings.php:39
4434
  msgid "Secure key"
4435
  msgstr "Beveiligde sleutel"
4436
 
4437
- #: nextend-social-login-pro/providers/vk/vk.php:36
4438
  msgid "Continue with <b>VK</b>"
4439
  msgstr "Doorgaan met <b>VK</b>"
4440
 
4441
- #: nextend-social-login-pro/providers/vk/vk.php:37
4442
  #, fuzzy
4443
  #| msgid "Continue with <b>VK</b>"
4444
  msgid "Sign up with <b>VK</b>"
4445
  msgstr "Doorgaan met <b>VK</b>"
4446
 
4447
- #: nextend-social-login-pro/providers/vk/vk.php:38
4448
  msgid "Link account with <b>VK</b>"
4449
  msgstr "Koppel met <b>VK</b>"
4450
 
4451
- #: nextend-social-login-pro/providers/vk/vk.php:39
4452
  msgid "Unlink account from <b>VK</b>"
4453
  msgstr "Ontkoppel van <b>VK</b>"
4454
 
4455
- #: nextend-social-login-pro/providers/wordpress/admin/fix-redirect-uri.php:11
4456
  #, fuzzy
4457
  #| msgid "Click \"Manage Settings\" under the Tools section!"
4458
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
4459
  msgstr "Klik op \"Instellingen Beheren\" onder de sectie \"Gereedschappen\"!"
4460
 
4461
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:19
4462
  #, fuzzy
4463
  #| msgid "Click on the \"Create New Application\" button."
4464
  msgid "Click on the \"<b>Create New Application</b>\" button."
4465
  msgstr "Klik op de knop \"Nieuwe Applicatie Maken\"."
4466
 
4467
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:20
4468
  #, fuzzy
4469
  #| msgid "Enter a \"Name\" and \"Description\" for your App."
4470
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
4471
  msgstr "Voer een \"Naam\" en \"Beschrijving\" in voor je app."
4472
 
4473
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:21
4474
  #, fuzzy, php-format
4475
  #| msgid ""
4476
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
@@ -4480,27 +3280,22 @@ msgid ""
4480
  msgstr ""
4481
  "Vul \"Website URL\" in met de url van je homepage, waarschijnlijk: <b>%s</b>"
4482
 
4483
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:32
4484
  msgid "You can leave the \"Javascript Origins\" field blank!"
4485
  msgstr "Je kunt het veld \"Javascript Origins\" leeg laten!"
4486
 
4487
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:33
4488
  msgid "Complete the human verification test."
4489
  msgstr "Voltooi de menselijke verificatietest."
4490
 
4491
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:34
4492
  #, fuzzy
4493
  #| msgid "At the \"Type\" make sure \"Web\" is selected!"
4494
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
4495
  msgstr "Zorg er bij \"Type\" \"Web\" is geselecteerd!"
4496
 
4497
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:35
4498
  #, fuzzy
4499
  #| msgid "Click the \"Create\" button!"
4500
  msgid "Click the \"<b>Create</b>\" button!"
4501
  msgstr "Klik op de \"Maak\"-knop!"
4502
 
4503
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:36
4504
  #, fuzzy
4505
  #| msgid ""
4506
  #| "Click the name of your App either in the Breadcrumb navigation or next to "
@@ -4511,7 +3306,6 @@ msgid ""
4511
  msgstr ""
4512
  "Klik op de naam van je App in de broodkruimel-navigatie of naast Bewerken!"
4513
 
4514
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:37
4515
  #, fuzzy
4516
  #| msgid ""
4517
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
@@ -4523,42 +3317,33 @@ msgstr ""
4523
  "Hier kun je je \"Client ID\" en \"Client Geheim\" zien. Deze zijn nodig in "
4524
  "de instellingen van de plugin."
4525
 
4526
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:74
4527
  msgid "Continue with <b>WordPress.com</b>"
4528
  msgstr "Doorgaan met <b>WordPress.com</b>"
4529
 
4530
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:75
4531
  #, fuzzy
4532
  #| msgid "Continue with <b>WordPress.com</b>"
4533
  msgid "Sign up with <b>WordPress.com</b>"
4534
  msgstr "Doorgaan met <b>WordPress.com</b>"
4535
 
4536
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:76
4537
  msgid "Link account with <b>WordPress.com</b>"
4538
  msgstr "Koppel met <b>WordPress.com</b>"
4539
 
4540
- #: nextend-social-login-pro/providers/wordpress/wordpress.php:77
4541
  msgid "Unlink account from <b>WordPress.com</b>"
4542
  msgstr "Ontkoppel van <b>WordPress.com</b>"
4543
 
4544
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:10
4545
  msgid "Click on the App which has its credentials associated with the plugin."
4546
  msgstr "Klik op de App met de inloggegevens die aan de plugin zijn gekoppeld."
4547
 
4548
- #: nextend-social-login-pro/providers/yahoo/admin/fix-redirect-uri.php:13
4549
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:26
4550
  #, fuzzy
4551
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
4552
  msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
4553
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
4554
 
4555
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:20
4556
  #, fuzzy
4557
  #| msgid "Click on the \"Create an App\" button on the top right corner."
4558
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
4559
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
4560
 
4561
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:21
4562
  #, fuzzy
4563
  #| msgid ""
4564
  #| "Fill the \"Application Name\" and select \"Web Application\" at "
@@ -4570,32 +3355,27 @@ msgstr ""
4570
  "Vul de \"Applicatie Naam\" in en selecteer \"Web Applicatie\" bij "
4571
  "\"Applicatie Type\"."
4572
 
4573
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:22
4574
  #, fuzzy
4575
  #| msgid "Enter a \"Description\" for your app!"
4576
  msgid "Enter a \"<b>Description</b>\" for your app!"
4577
  msgstr "Vul een \"Beschrijving\" in voor je app!"
4578
 
4579
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:23
4580
  #, fuzzy, php-format
4581
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
4582
  msgid ""
4583
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
4584
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
4585
 
4586
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:34
4587
  msgid ""
4588
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
4589
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
4590
  msgstr ""
4591
 
4592
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:35
4593
  #, fuzzy
4594
  #| msgid "Click \"Create App\"."
4595
  msgid "Click \"<b>Create App</b>\"."
4596
  msgstr "Klik op \"Maak App\"."
4597
 
4598
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:36
4599
  #, fuzzy
4600
  #| msgid ""
4601
  #| "On the top of the page, you will find the necessary \"Client ID\" and "
@@ -4607,66 +3387,27 @@ msgstr ""
4607
  "Bovenaan de pagina vind je de nodige \"Client ID\" en \"Client Geheim\"! "
4608
  "Deze zijn nodig in de instellingen van de plugin."
4609
 
4610
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:65
4611
  msgid "Continue with <b>Yahoo</b>"
4612
  msgstr "Doorgaan met <b>Yahoo</b>"
4613
 
4614
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:66
4615
  #, fuzzy
4616
  #| msgid "Continue with <b>Yahoo</b>"
4617
  msgid "Sign up with <b>Yahoo</b>"
4618
  msgstr "Doorgaan met <b>Yahoo</b>"
4619
 
4620
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:67
4621
  msgid "Link account with <b>Yahoo</b>"
4622
  msgstr "Koppel met <b>Yahoo</b>"
4623
 
4624
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:68
4625
  msgid "Unlink account from <b>Yahoo</b>"
4626
  msgstr "Ontkoppel van <b>Yahoo</b>"
4627
 
4628
- #: nextend-social-login-pro/providers/yahoo/yahoo.php:188
4629
  #, php-format
4630
  msgid "Required permission: %1$s"
4631
  msgstr "Vereiste toestemming: %1$s"
4632
 
4633
- #: nextend-social-login-pro/template-parts/buddypress/login/above-separator.php:18
4634
- #: nextend-social-login-pro/template-parts/buddypress/login/below-separator.php:18
4635
- #: nextend-social-login-pro/template-parts/buddypress/register/above-separator.php:25
4636
- #: nextend-social-login-pro/template-parts/buddypress/register/below-separator.php:25
4637
- #: nextend-social-login-pro/template-parts/embedded-login/above-separator.php:18
4638
- #: nextend-social-login-pro/template-parts/embedded-login/below-separator.php:18
4639
- #: nextend-social-login-pro/template-parts/login/above-separator.php:25
4640
- #: nextend-social-login-pro/template-parts/login/below-separator.php:30
4641
- #: nextend-social-login-pro/template-parts/memberpress/login/above-separator.php:18
4642
- #: nextend-social-login-pro/template-parts/memberpress/login/below-separator.php:18
4643
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/above-separator.php:18
4644
- #: nextend-social-login-pro/template-parts/memberpress/sign-up/below-separator.php:18
4645
- #: nextend-social-login-pro/template-parts/ultimate-member/login/above-separator.php:18
4646
- #: nextend-social-login-pro/template-parts/ultimate-member/login/below-separator.php:18
4647
- #: nextend-social-login-pro/template-parts/ultimate-member/register/above-separator.php:18
4648
- #: nextend-social-login-pro/template-parts/ultimate-member/register/below-separator.php:18
4649
- #: nextend-social-login-pro/template-parts/userpro/login/above-separator.php:18
4650
- #: nextend-social-login-pro/template-parts/userpro/login/below-separator.php:18
4651
- #: nextend-social-login-pro/template-parts/userpro/register/above-separator.php:18
4652
- #: nextend-social-login-pro/template-parts/userpro/register/below-separator.php:18
4653
- #: nextend-social-login-pro/template-parts/woocommerce/billing/above-separator.php:25
4654
- #: nextend-social-login-pro/template-parts/woocommerce/billing/below-separator.php:25
4655
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-after.php:13
4656
- #: nextend-social-login-pro/template-parts/woocommerce/billing/default-separator-before.php:13
4657
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/above-separator.php:25
4658
- #: nextend-social-login-pro/template-parts/woocommerce/checkout-for-woocommerce/below-separator.php:25
4659
- #: nextend-social-login-pro/template-parts/woocommerce/login/above-separator.php:18
4660
- #: nextend-social-login-pro/template-parts/woocommerce/login/below-separator.php:18
4661
- #: nextend-social-login-pro/template-parts/woocommerce/register/above-separator.php:18
4662
- #: nextend-social-login-pro/template-parts/woocommerce/register/below-separator.php:18
4663
  msgid "OR"
4664
  msgstr "OF"
4665
 
4666
- #: nextend-social-login-pro/template-parts/memberpress/account-home.php:1
4667
- #: nextend-social-login-pro/template-parts/ultimate-member/account-home.php:2
4668
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-after.php:1
4669
- #: nextend-social-login-pro/template-parts/woocommerce/edit-account-before.php:1
4670
  msgid "Social accounts"
4671
  msgstr "Social accounts"
4672
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-09-13 20:38+0200\n"
5
+ "PO-Revision-Date: 2021-09-13 20:42+0200\n"
6
  "Last-Translator: Erik Molenaar <info@erikmolenaar.nl>\n"
7
  "Language-Team: nextend-facebook-connect\n"
8
  "Language: nl_NL\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-Flags-xgettext: --no-location\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
 
 
24
  msgid "What personal data we collect and why we collect it"
25
  msgstr "Welke persoonlijke gegevens we verzamelen en waarom we deze verzamelen"
26
 
 
27
  #, php-format
28
  msgid ""
29
  "%1$s collects data when a visitor register, login or link the account with "
38
  "toegangstoken. Ook kan het de profielfoto en meer velden verzamelen met de "
39
  "synchronisatiegegevensfunctie van de Pro-uitbreiding."
40
 
 
41
  msgid "Who we share your data with"
42
  msgstr "Met wie we je gegevens delen"
43
 
 
44
  #, php-format
45
  msgid ""
46
  "%1$s stores the personal data on your site and does not share it with anyone "
51
  "behalve het toegangstoken dat werd gebruikt voor de geverifieerde "
52
  "communicatie met de social providers."
53
 
 
54
  msgid "Does the plugin share personal data with third parties"
55
  msgstr "Deelt de plug-in persoonlijke gegevens met derden"
56
 
 
57
  #, php-format
58
  msgid ""
59
  "%1$s use the access token what the social provider gave to communicate with "
63
  "de providers te communiceren om het account te verifiëren en veilig toegang "
64
  "te krijgen tot persoonlijke gegevens."
65
 
 
66
  msgid "How long we retain your data"
67
  msgstr "Hoe lang wij je gegevens bewaren"
68
 
 
69
  #, php-format
70
  msgid ""
71
  "%1$s removes the collected personal data when the user deleted from "
74
  "%1$s verwijdert de verzamelde persoonlijke gegevens wanneer de gebruiker "
75
  "deze heeft verwijderd uit WordPress."
76
 
 
77
  msgid "Does the plugin use personal data collected by others?"
78
  msgstr ""
79
  "Gebruikt de plugin persoonlijke gegevens die door anderen zijn verzameld?"
80
 
 
81
  #, php-format
82
  msgid ""
83
  "%1$s use the personal data collected by the social providers to create "
87
  "verzameld om een account op je site te maken wanneer de bezoeker deze "
88
  "autoriseert."
89
 
 
90
  msgid "Does the plugin store things in the browser?"
91
  msgstr "Slaat de plugin dingen op in de browser?"
92
 
 
93
  #, php-format
94
  msgid ""
95
  "Yes, %1$s must create a cookie for visitors who use the social login "
101
  "de communicatie te beveiligen en de gebruiker om te leiden naar de laatste "
102
  "locatie."
103
 
 
104
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
105
  msgstr "Verzamelt de plug-in telemetriegegevens, direct of indirect?"
106
 
 
 
107
  msgid "No"
108
  msgstr "Nee"
109
 
 
110
  msgid ""
111
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
112
  "third party?"
114
  "Voegt de plug-in JavaScript, trackingpixels of ingesloten iframes toe van "
115
  "een derde partij?"
116
 
 
 
117
  msgid "User"
118
  msgstr "Gebruiker"
119
 
 
120
  #, php-format
121
  msgid "%s needs json_decode function."
122
  msgstr "%s heeft de functie json_decode nodig."
123
 
 
124
  msgid "Please contact your server administrator and ask for solution!"
125
  msgstr "Neem contact op met je serverbeheerder en vraag om een oplossing!"
126
 
 
 
127
  msgid "Settings saved."
128
  msgstr "Instellingen opgeslagen."
129
 
 
130
  msgid "The activation was successful"
131
  msgstr "De activering was succesvol"
132
 
 
133
  msgid "Deactivate completed."
134
  msgstr "Deactiveren voltooid."
135
 
 
 
 
 
 
136
  msgid "Settings"
137
  msgstr "Instellingen"
138
 
 
 
 
 
 
 
 
139
  #, php-format
140
  msgid "Unexpected response: %s"
141
  msgstr "Onverwachte reactie: %s"
142
 
 
 
143
  #, php-format
144
  msgid ""
145
  "%s detected that your login url changed. You must update the Oauth redirect "
148
  "%s detecteert dat je inlog-URL is gewijzigd. Je moet de Oauth-omleidings-"
149
  "URI's bijwerken in de bijbehorende social applicatie."
150
 
 
 
151
  msgid "Fix Error"
152
  msgstr "Fout Oplossen"
153
 
 
154
  msgid "Oauth Redirect URI"
155
  msgstr "Oauth Omleidings-URI"
156
 
 
157
  #, php-format
158
  msgid ""
159
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
163
  "Add-on nodig om Social Login-knoppen weer te geven in het %2$s "
164
  "aanmeldingsformulier!"
165
 
 
166
  msgid "Dismiss and check Pro Addon"
167
  msgstr "Sluiten en vink Pro-uitbreiding aan"
168
 
 
169
  msgid "Dismiss"
170
  msgstr "Sluiten"
171
 
 
172
  #, php-format
173
  msgid ""
174
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
179
  "\"<b>Pagina voor registreerproces</b>\" en \"<b>OAuth-omleidingspagina voor "
180
  "uri-proxy</b>\" instellen om %1$s correct te laten werken."
181
 
 
182
  msgid "Fix now"
183
  msgstr "Nu maken"
184
 
 
185
  msgid "Activate your Pro Addon"
186
  msgstr "Activeer je Pro Add-on"
187
 
 
188
  #, fuzzy
189
  #| msgid ""
190
  #| "To be able to use the Pro features, you need to activate Nextend Social "
199
  "uitbreiding activeren. Je kunt dit doen door hieronder op de knop Activeren "
200
  "te klikken en vervolgens de bijbehorende aankoop te selecteren."
201
 
 
 
202
  msgid "Activate"
203
  msgstr "Activeren"
204
 
 
205
  msgid "License key"
206
  msgstr "Licentiesleutel"
207
 
 
208
  msgid "OAuth proxy page"
209
  msgstr "OAuth-proxy-pagina"
210
 
 
211
  msgid "Register flow page"
212
  msgstr "Registreerproces-pagina"
213
 
 
214
  #, php-format
215
  msgid ""
216
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
218
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
219
  msgstr ""
220
 
 
 
221
  msgid "You have logged in successfully."
222
  msgstr "Je bent succesvol ingelogd."
223
 
 
224
  msgid "Login label"
225
  msgstr "Login label"
226
 
 
 
 
 
 
 
 
227
  msgid "Reset to default"
228
  msgstr "Reset naar standaard"
229
 
 
230
  #, fuzzy
231
  #| msgid "Register layout"
232
  msgid "Register label"
233
  msgstr "Registratie layout"
234
 
 
235
  msgid "Link label"
236
  msgstr "Koppel label"
237
 
 
238
  msgid "Unlink label"
239
  msgstr "Ontkoppel label"
240
 
 
241
  msgid "Default button"
242
  msgstr "Standaard knop"
243
 
 
 
244
  msgid "Use custom button"
245
  msgstr "Gebruik de aangepaste knop"
246
 
 
247
  #, php-format
248
  msgid "Use the %s in your custom button's code to make the label show up."
249
  msgstr ""
250
  "Gebruik de %s in de code van je aangepaste knop om het label te laten "
251
  "verschijnen."
252
 
 
253
  msgid "Icon button"
254
  msgstr "Pictogram knop"
255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  msgid "Save Changes"
257
  msgstr "Wijzigingen Opslaan"
258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Getting Started"
260
  msgstr "Aan de Slag"
261
 
 
262
  msgid "Buttons"
263
  msgstr "Knoppen"
264
 
 
265
  msgid "Sync data"
266
  msgstr "Gegevens synchroniseren"
267
 
 
268
  msgid "Usage"
269
  msgstr "Gebruik"
270
 
 
271
  msgid "Other settings"
272
  msgstr "Overige instellingen"
273
 
 
274
  msgid "Username prefix on register"
275
  msgstr "Voorvoegsel gebruikersnaam bij registratie"
276
 
 
277
  msgid "Fallback username prefix on register"
278
  msgstr "Terugval gebruikersnaam prefix bij registratie"
279
 
 
280
  msgid "Used when username is invalid or not stored"
281
  msgstr ""
282
  "Wordt gebruikt wanneer gebruikersnaam ongeldig is of niet is opgeslagen"
283
 
 
 
 
284
  msgid "Terms and conditions"
285
  msgstr "Algemene voorwaarden"
286
 
 
287
  #, php-format
288
  msgid "Override global \"%1$s\""
289
  msgstr "Overschrijd globale \"%1$s\""
290
 
 
 
 
291
  msgid "PRO settings"
292
  msgstr "PRO-instellingen"
293
 
 
 
294
  msgid "Ask E-mail on registration"
295
  msgstr "Vraag E-mail bij inschrijving"
296
 
 
 
297
  msgid "Never"
298
  msgstr "Nooit"
299
 
 
300
  msgid "When email is not provided or empty"
301
  msgstr "Wanneer e-mail niet wordt verstrekt of leeg is"
302
 
 
 
 
303
  msgid "Always"
304
  msgstr "Altijd"
305
 
 
 
306
  msgid "Ask Username on registration"
307
  msgstr "Vraag Gebruikersnaam bij registratie"
308
 
 
309
  msgid "Never, generate automatically"
310
  msgstr "Nooit, automatisch genereren"
311
 
 
312
  msgid "When username is empty or invalid"
313
  msgstr "Wanneer gebruikersnaam leeg of ongeldig is"
314
 
 
315
  msgid "Ask Password on registration"
316
  msgstr "Vraag Wachtwoord bij registratie"
317
 
 
 
318
  msgid "Automatically connect the existing account upon registration"
319
  msgstr "Verbind het bestaande account automatisch bij registratie"
320
 
 
 
 
 
 
 
 
 
 
321
  msgid "Disabled"
322
  msgstr "Uitgeschakeld"
323
 
 
324
  msgid "Automatic, based on email address"
325
  msgstr "Automatisch, op basis van e-mailadres"
326
 
 
327
  msgid "Disable login for the selected roles"
328
  msgstr "Login voor de geselecteerde rollen uitschakelen"
329
 
 
330
  msgid "Default roles for user who registered with this provider"
331
  msgstr ""
332
  "Standaardrollen voor gebruiker die zich bij deze provider heeft geregistreerd"
333
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
334
  msgid "Default"
335
  msgstr "Standaard"
336
 
 
337
  msgid "Register"
338
  msgstr "Registreren"
339
 
 
340
  msgid "Login"
341
  msgstr "Inloggen"
342
 
 
343
  msgid "Link"
344
  msgstr "Koppel"
345
 
 
346
  msgid "Store in meta key"
347
  msgstr "Bewaren in metasleutel"
348
 
 
349
  msgid "Shortcode"
350
  msgstr "Shortcode"
351
 
 
352
  msgid "Important!"
353
  msgstr "Belangrijk!"
354
 
 
355
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
356
  msgstr ""
357
  "De shortcodes worden alleen weergegeven voor gebruikers die nog niet "
358
  "ingelogd zijn!"
359
 
 
360
  msgid "See the full list of shortcode parameters."
361
  msgstr "Zie de volledige lijst met shortcode-parameters."
362
 
 
363
  msgid "Simple link"
364
  msgstr "Eenvoudige link"
365
 
 
366
  msgid "Click here to login or register"
367
  msgstr "Klik hier om in te loggen of te registreren"
368
 
 
369
  msgid "Image button"
370
  msgstr "Knop afbeelding"
371
 
 
372
  msgid "Image url"
373
  msgstr "URL afbeelding"
374
 
 
 
375
  msgid "Debug"
376
  msgstr "Debug"
377
 
 
378
  msgid "Test network connection with providers"
379
  msgstr "Test de netwerkverbinding met providers"
380
 
 
381
  msgid "You don't have cURL support, please enable it in php.ini!"
382
  msgstr "Je hebt geen cURL-ondersteuning, schakel dit in in php.ini!"
383
 
 
384
  #, php-format
385
  msgid "Test %1$s connection"
386
  msgstr "Test %1$s connectie"
387
 
 
388
  msgid "Fix Oauth Redirect URIs"
389
  msgstr "Fix Oauth Omleidings-URI's"
390
 
 
391
  msgid "Every Oauth Redirect URI seems fine"
392
  msgstr "Elke Oauth Omleidings-URI lijkt in orde"
393
 
 
394
  msgid "Got it"
395
  msgstr "Oké"
396
 
 
 
397
  msgid "Global Settings"
398
  msgstr "Algemene Instellingen"
399
 
 
400
  msgid "General"
401
  msgstr "Algemeen"
402
 
 
403
  msgid "Privacy"
404
  msgstr "Privacy"
405
 
 
 
 
406
  msgid "Login Form"
407
  msgstr "Loginformulier"
408
 
 
409
  msgid "Comment"
410
  msgstr "Reactie"
411
 
 
412
  msgid "Docs"
413
  msgstr "Documentatie"
414
 
 
415
  msgid "Support"
416
  msgstr "Ondersteuning"
417
 
 
 
418
  msgid "Pro Addon"
419
  msgstr "Pro-uitbreiding"
420
 
 
421
  msgid "Providers"
422
  msgstr "Providers"
423
 
 
 
 
424
  msgid "Error"
425
  msgstr "Fout"
426
 
 
427
  msgid ""
428
  "You don’t have sufficient permissions to install and activate plugins. "
429
  "Please contact your site’s administrator!"
431
  "Je hebt niet voldoende rechten om plugins te installeren en te activeren. "
432
  "Neem contact op met de sitebeheerder!"
433
 
 
 
 
434
  msgid "Activate Pro Addon"
435
  msgstr "Activeren Pro-uitbreiding"
436
 
 
437
  msgid ""
438
  "Pro Addon is installed but not activated. To be able to use the Pro "
439
  "features, you need to activate it."
441
  "Pro-uitbreiding is geïnstalleerd maar niet geactiveerd. Om de Pro-functies "
442
  "te kunnen gebruiken, moet je deze activeren."
443
 
 
 
444
  msgid "Deactivate Pro Addon"
445
  msgstr "Deactiveren Pro-uitbreiding"
446
 
 
 
447
  msgid "Pro Addon is not installed"
448
  msgstr "Pro-uitbreiding is niet geïnstalleerd"
449
 
 
450
  msgid ""
451
  "To access the Pro features, you need to install and activate the Pro Addon."
452
  msgstr ""
453
  "Om toegang te krijgen tot de Pro-functies moet je de Pro-uitbreiding "
454
  "installeren en activeren."
455
 
 
456
  #, php-format
457
  msgid "Install %s now"
458
  msgstr "Installeer %s nu"
459
 
 
 
460
  msgid "Install Pro Addon"
461
  msgstr "Installeer Pro-uitbreiding"
462
 
 
463
  msgid "Activating..."
464
  msgstr "Activeren..."
465
 
 
466
  msgid "Not compatible!"
467
  msgstr "Niet compatibel!"
468
 
 
469
  #, php-format
470
  msgid ""
471
  "%1$s and %2$s are not compatible. Please update %2$s to version %3$s or "
474
  "%1$s en %2$s zijn niet compatibel. Gelieve %2$s bij te werken naar versie "
475
  "%3$s of nieuwer."
476
 
 
477
  msgid "Update Pro Addon"
478
  msgstr "Update Pro-uitbreiding"
479
 
 
480
  msgid "Pro Addon is installed and activated"
481
  msgstr "Pro-uitbreiding is geïnstalleerd en geactiveerd"
482
 
 
483
  msgid ""
484
  "You installed and activated the Pro Addon. If you don’t want to use it "
485
  "anymore, you can deactivate using the button below."
487
  "Je hebt de Pro-uitbreiding geïnstalleerd en geactiveerd. Als je deze niet "
488
  "meer wilt gebruiken, kun je deze uitschakelen met de onderstaande knop."
489
 
 
490
  msgid "Get Pro Addon to unlock more features"
491
  msgstr "Koop Pro-uitbreiding om meer functies te ontgrendelen"
492
 
 
493
  #, php-format
494
  msgid ""
495
  "The features below are available in %s Pro Addon. Get it today and tweak the "
498
  "De onderstaande functies zijn beschikbaar in %s Pro-uitbreiding. Koop deze "
499
  "vandaag nog en pas deze geweldige instellingen aan."
500
 
 
501
  msgid ""
502
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
503
  "you can purchase it using the button below."
505
  "Als je al een licentie hebt, kunt je je Pro-uitbreiding autoriseren. Anders "
506
  "kun je deze kopen met onderstaande knop."
507
 
 
508
  msgid "Buy Pro Addon"
509
  msgstr "Koop Pro-uitbreiding"
510
 
 
511
  msgid "Authorize Pro Addon"
512
  msgstr "Machtigen Pro-uitbreiding"
513
 
 
514
  msgid "Pro Addon is not activated"
515
  msgstr "Pro-uitbreiding is niet geactiveerd"
516
 
 
 
517
  #, fuzzy
518
  #| msgid ""
519
  #| "To be able to use the Pro features, you need to install and activate the "
525
  "Om de Pro-functies te kunnen gebruiken, moet je de Nextend Social Connect "
526
  "Pro-uitbreiding installeren en activeren."
527
 
 
528
  #, php-format
529
  msgid ""
530
  "%1$s detected that you have providers configured but none of them are "
532
  "one provider enabled!"
533
  msgstr ""
534
 
 
535
  msgid "Not Available"
536
  msgstr "Niet Beschikbaar"
537
 
 
538
  msgid "Not Configured"
539
  msgstr "Niet Geconfigureerd"
540
 
 
541
  msgid "Not Verified"
542
  msgstr "Niet Geverifieerd"
543
 
 
 
 
 
 
 
 
 
 
 
544
  msgid "Enabled"
545
  msgstr "Ingeschakeld"
546
 
 
547
  msgid "Upgrade Now"
548
  msgstr "Nu Bijwerken"
549
 
 
 
550
  msgid "Verify Settings"
551
  msgstr "Instellingen Controleren"
552
 
 
 
553
  msgid "Enable"
554
  msgstr "Inschakelen"
555
 
 
 
556
  msgid "Disable"
557
  msgstr "Uitschakelen"
558
 
 
559
  msgid "Stay Updated"
560
  msgstr "Blijf op de Hoogte"
561
 
 
562
  msgid ""
563
  "Receive info on the latest plugin updates and social provider related "
564
  "changes."
566
  "Ontvang informatie over de laatste plugin-updates en wijzigingen bij social "
567
  "providers."
568
 
 
569
  msgid "Enter your email address"
570
  msgstr "Vul je e-mailadres in"
571
 
 
572
  msgid "Subscribe"
573
  msgstr "Inschrijven"
574
 
 
575
  msgid "Saving..."
576
  msgstr "Opslaan…"
577
 
 
578
  msgid "Saving failed"
579
  msgstr "Opslaan mislukt"
580
 
 
581
  msgid "Order Saved"
582
  msgstr "Bestelling Opgeslagen"
583
 
 
584
  msgid "Successfully subscribed!"
585
  msgstr "Succesvol ingeschreven!"
586
 
 
587
  msgid ""
588
  "We'll be bringing you all the latest news and updates about Social Login - "
589
  "right to your inbox."
591
  "We brengen je het laatste nieuws en updates over Social Login - direct in je "
592
  "inbox."
593
 
 
594
  msgid "The entered email address is invalid!"
595
  msgstr "Het ingevoerde e-mailadres is ongeldig!"
596
 
 
597
  msgid "Rate your experience!"
598
  msgstr "Beoordeel je ervaring!"
599
 
 
600
  msgid "Hated it"
601
  msgstr "Haatte het"
602
 
 
603
  msgid "Disliked it"
604
  msgstr "Niet zo leuk"
605
 
 
606
  msgid "It was ok"
607
  msgstr "Het was oké"
608
 
 
609
  msgid "Liked it"
610
  msgstr "Vond het leuk"
611
 
 
612
  msgid "Loved it"
613
  msgstr "Vond het geweldig"
614
 
 
615
  msgid "Please Leave a Review"
616
  msgstr "Laat alsjeblieft een recensie achter"
617
 
 
618
  msgid ""
619
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
620
  "please leave us a review. It will be a tremendous help for us!"
622
  "Als je tevreden bent met <b>Nextend Social Login</b> en je hebt een minuutje "
623
  "de tijd, laat dan een beoordeling achter. Je helpt ons daar enorm mee!"
624
 
 
625
  msgid "Ok, you deserve it"
626
  msgstr "Ok, je verdient het"
627
 
 
 
 
628
  msgid "Register form"
629
  msgstr "Registratieformulier"
630
 
 
631
  msgid "No Connect button"
632
  msgstr "Geen Verbindingsknop"
633
 
 
634
  msgid "Connect button before register"
635
  msgstr "Verbindingsknop voor registratie"
636
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
637
  msgid "Action:"
638
  msgstr "Actie:"
639
 
 
640
  msgid "Connect button before account details"
641
  msgstr "Verbindingsknop voor account details"
642
 
 
643
  msgid "Connect button after register"
644
  msgstr "Verbindingsknop na registratie"
645
 
 
646
  msgid "Register button style"
647
  msgstr "Registreerknop-stijl"
648
 
 
 
 
 
 
 
 
 
 
 
 
 
649
  msgid "Fullwidth"
650
  msgstr ""
651
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
  msgid "Icon"
653
  msgstr "Icoon"
654
 
 
 
 
 
655
  msgid "Register layout"
656
  msgstr "Registratie layout"
657
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
658
  msgid "Below"
659
  msgstr "Onderstaand"
660
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
661
  msgid "Below with separator"
662
  msgstr "Hieronder met separator"
663
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
664
  msgid "Above"
665
  msgstr "Boven"
666
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
667
  msgid "Above with separator"
668
  msgstr "Hierboven met separator"
669
 
 
670
  msgid "Sidebar Login form"
671
  msgstr "Sidebar Login formulier"
672
 
 
 
 
 
 
 
 
673
  msgid "Hide login buttons"
674
  msgstr "Inlogknoppen verbergen"
675
 
 
 
 
 
 
 
 
 
676
  msgid "Show login buttons"
677
  msgstr "Inlogknoppen tonen"
678
 
 
679
  msgid ""
680
  "Some themes that use BuddyPress, display the social buttons twice in the "
681
  "same login form. This option can disable the one for: "
685
  "twee keer in hetzelfde inlogformulier. Deze optie kan die voor: "
686
  "<b>bp_sidebar_login_form action</b> uitschakelen. "
687
 
 
 
 
 
688
  msgid "Login form"
689
  msgstr "Login formulier"
690
 
 
691
  msgid "Login button style"
692
  msgstr "Inlogknop stijl"
693
 
 
 
 
 
 
 
694
  msgid "Login layout"
695
  msgstr "Inlog-layout"
696
 
 
 
 
 
 
 
 
697
  msgid "Button alignment"
698
  msgstr "Knoppen uitlijning"
699
 
 
 
 
 
 
 
 
 
 
700
  msgid "Left"
701
  msgstr "Links"
702
 
 
 
 
 
 
 
 
 
 
703
  msgid "Center"
704
  msgstr "Midden"
705
 
 
 
 
 
 
 
 
 
 
706
  msgid "Right"
707
  msgstr "Rechts"
708
 
 
709
  msgid "Login button"
710
  msgstr "Loginknop"
711
 
 
 
712
  msgid "Show"
713
  msgstr "Toon"
714
 
 
715
  msgid "Hide"
716
  msgstr "Verberg"
717
 
 
718
  #, php-format
719
  msgid "You need to turn on the ' %1$s > %2$s > %3$s ' for this feature to work"
720
  msgstr ""
721
  "Je moet de ' %1$s > %2$s > %3$s ' aanzetten om deze functie te laten werken"
722
 
 
723
  msgid "Discussion"
724
  msgstr "Discussie"
725
 
 
726
  msgid "Users must be registered and logged in to comment"
727
  msgstr ""
728
  "Je moet geregistreerd en ingelogd zijn om een reactie te kunnen plaatsen"
729
 
 
 
730
  msgid "Button style"
731
  msgstr "Knop stijl"
732
 
733
+ msgid "No Connect button in Login form"
734
+ msgstr "Geen Verbindingsknop in inlogformulier"
735
+
736
+ msgid "Connect button on"
737
+ msgstr "Verbindingsknop op"
738
+
739
+ msgid "Login form button style"
740
+ msgstr "Aanmeldingsformulier knopstijl"
741
+
742
+ msgid "No Connect button in Register form"
743
+ msgstr "Geen Verbindingsknop in het Registratieformulier"
744
+
745
+ msgid "Register form button style"
746
+ msgstr "Registratieformulier knopstijl"
747
+
748
  msgid "Target window"
749
  msgstr "Doelvenster"
750
 
 
751
  msgid "Prefer popup"
752
  msgstr "Bij voorkeur popup"
753
 
 
754
  msgid "Prefer new tab"
755
  msgstr "Bij voorkeur nieuw tabblad"
756
 
 
757
  msgid "Prefer same window"
758
  msgstr "Bij voorkeur hetzelfde venster"
759
 
 
760
  msgid "Registration notification sent to"
761
  msgstr "Registratie notificatie verzonden naar"
762
 
 
 
763
  msgid "WordPress default"
764
  msgstr "WordPress standaard"
765
 
 
766
  msgid "Nobody"
767
  msgstr "Niemand"
768
 
 
769
  msgid "Admin"
770
  msgstr "Beheerder"
771
 
 
772
  msgid "User and Admin"
773
  msgstr "Gebruiker en Beheerder"
774
 
 
775
  msgid "Unlink"
776
  msgstr "Ontkoppelen"
777
 
 
778
  msgid "Allow Social account unlink"
779
  msgstr "Sta ontkoppelen Social account toe"
780
 
 
781
  #, fuzzy
782
  #| msgid "Show link buttons"
783
  msgid "Show linked providers"
784
  msgstr "Toon koppel-knoppen"
785
 
 
786
  #, php-format
787
  msgid "Providers linked to the account will appear in the %1$s."
788
  msgstr ""
789
 
 
790
  #, fuzzy
791
  #| msgid "Username"
792
  msgid "Users table"
793
  msgstr "Gebruikersnaam"
794
 
 
795
  msgid "Disable Admin bar for roles"
796
  msgstr "Adminbalk voor rollen uitschakelen"
797
 
 
798
  msgid "Debug mode"
799
  msgstr "Debugmodus"
800
 
 
801
  msgid "Page for register flow"
802
  msgstr "Pagina voor registreerproces"
803
 
 
 
804
  msgid "None"
805
  msgstr "Geen"
806
 
 
807
  msgid ""
808
  "This setting is used when you request additional data from the users (such "
809
  "as email address) and to display the Terms and conditions."
811
  "Deze instelling wordt gebruikt wanneer je gebruikers om aanvullende gegevens "
812
  "vraagt (zoals het e-mailadres) en om de algemene voorwaarden weer te geven."
813
 
 
814
  #, php-format
815
  msgid ""
816
  "%2$s First create a new page and insert the following shortcode: %1$s then "
819
  "%2$s Maak eerst een nieuwe pagina aan en voeg de volgende shortcode toe: "
820
  "%1$s en selecteer dan deze pagina hierboven"
821
 
 
 
822
  msgid "Usage:"
823
  msgstr "Gebruik:"
824
 
 
 
825
  #, php-format
826
  msgid ""
827
  "%1$s You won't be able to reach the selected page unless a social login/"
830
  "%1$s Je kunt de geselecteerde pagina niet bereiken tenzij er een social "
831
  "login/registratie plaatsvindt."
832
 
 
 
833
  msgid "Important:"
834
  msgstr "Let op:"
835
 
 
836
  msgid "OAuth redirect uri proxy page"
837
  msgstr "OAuth omleidings-uri proxy pagina"
838
 
 
839
  msgid ""
840
  "You can use this setting when wp-login.php page is not available to handle "
841
  "the OAuth flow."
843
  "Je kunt deze instelling gebruiken wanneer de wp-login.php pagina niet "
844
  "beschikbaar is om het OAuth-proces te verwerken."
845
 
 
846
  #, php-format
847
  msgid "%1$s First create a new page then select this page above."
848
  msgstr ""
849
  "%1$s Maak eerst een nieuwe pagina aan en selecteer dan deze pagina hierboven."
850
 
 
851
  msgid "Prevent external redirect overrides"
852
  msgstr "Voorkom overschrijvingen bij externe omleidingen"
853
 
 
854
  msgid "Disable external redirects"
855
  msgstr "Externe omleidingen uitschakelen"
856
 
 
857
  msgid "Default redirect url"
858
  msgstr "Standaard omleidings-URL"
859
 
 
 
860
  msgid "for Login"
861
  msgstr "voor Inloggen"
862
 
 
 
863
  msgid "for Register"
864
  msgstr "voor Registreren"
865
 
 
866
  msgid "Fixed redirect url"
867
  msgstr "Vaste omleidings-URL"
868
 
 
869
  msgid "Blacklisted redirects"
870
  msgstr "Zwarte lijst van omleidingen"
871
 
 
872
  msgid "If you want to blacklist redirect url params. One pattern per line."
873
  msgstr ""
874
  "Als je omleidings-URL parameters op de zwarte lijst wilt zetten. Eén patroon "
875
  "per regel."
876
 
 
877
  msgid "Support login restrictions"
878
  msgstr "Ondersteunende inlog-beperkingen"
879
 
 
880
  #, php-format
881
  msgid "Please visit to our %1$s to check what plugins are supported!"
882
  msgstr "Bezoek onze %1$s om te controleren welke plugins worden ondersteund!"
883
 
 
884
  msgid "Display avatars in \"All media items\""
885
  msgstr "Weergeven profielfoto's in \"Alle media-items\""
886
 
 
887
  msgid ""
888
  "Enabling this option can speed up loading images in Media Library - Grid "
889
  "view!"
891
  "Door deze optie in te schakelen kan het laden van afbeeldingen in de "
892
  "mediabibliotheek worden versneld - Rasterweergave!"
893
 
 
894
  msgid "Membership"
895
  msgstr "Lidmaatschap"
896
 
 
897
  msgid "Allow registration with Social login."
898
  msgstr "Registratie toestaan met Social login."
899
 
 
900
  #, fuzzy
901
  #| msgid "Page for register flow"
902
  msgid "Custom label for register buttons"
903
  msgstr "Pagina voor registreerproces"
904
 
 
905
  #, php-format
906
  msgid ""
907
  "Set a custom label for the social buttons in registration forms and for "
909
  "can be modified at the Buttons tab of each provider."
910
  msgstr ""
911
 
 
 
 
 
 
 
 
 
912
  msgid "Below and floating"
913
  msgstr "Onder en zwevend"
914
 
 
915
  msgid "Embedded Login form button style"
916
  msgstr "Geïntegreerd Loginformulier knopstijl"
917
 
 
918
  msgid "Embedded Login layout"
919
  msgstr "Geïntegreerd Login layout"
920
 
 
921
  msgid "Embedded login form button alignment"
922
  msgstr "Geïntegreerd inlogformulier knopuitlijning"
923
 
 
 
924
  msgid "Registration Form"
925
  msgstr "Registratieformulier"
926
 
 
927
  msgid "Embedded login form"
928
  msgstr "Geïntegreerd inlogformulier"
929
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
930
  msgid "Sign Up form"
931
  msgstr "Aanmeldingsformulier"
932
 
 
933
  msgid "No Connect button in Sign Up form"
934
  msgstr "Geen Verbindingsknop in het aanmeldingsformulier"
935
 
 
936
  msgid "Sign Up form button style"
937
  msgstr "Aanmeldingsformulier knopstijl"
938
 
 
939
  msgid "Sign Up layout"
940
  msgstr "Aanmelding layout"
941
 
 
 
 
942
  msgid "Account details"
943
  msgstr "Accountgegevens"
944
 
 
 
945
  msgid "No link buttons"
946
  msgstr "Geen koppelknoppen"
947
 
 
 
948
  msgid "Link buttons after account details"
949
  msgstr "Koppelknoppen na accountgegevens"
950
 
 
 
951
  msgid ""
952
  "By clicking Register, you accept our <a href=\"#privacy_policy_url\" target="
953
  "\"_blank\">Privacy Policy</a>"
955
  "Door op Registreren te klikken, accepteer je onze <a href="
956
  "\"#privacy_policy_url\" target=\"_blank\">Privacybeleid</a>"
957
 
 
958
  msgid "Store"
959
  msgstr "Winkel"
960
 
 
961
  msgid "First and last name"
962
  msgstr "Voor- en achternaam"
963
 
 
964
  msgid "When not enabled, username will be randomly generated."
965
  msgstr ""
966
  "Indien niet ingeschakeld, wordt de gebruikersnaam willekeurig gegenereerd."
967
 
 
 
968
  msgid "Email"
969
  msgstr "E-mail"
970
 
 
971
  msgid "When not enabled, email will be empty."
972
  msgstr "Indien niet ingeschakeld, zal e-mail leeg zijn."
973
 
 
 
974
  msgid "Avatar"
975
  msgstr "Profielfoto"
976
 
 
 
977
  msgid "Access token"
978
  msgstr "Toegangstoken"
979
 
 
 
 
 
 
 
 
 
 
 
980
  msgid "Register Form"
981
  msgstr "Registratieformulier"
982
 
 
983
  msgid "No Connect button in login form"
984
  msgstr "Geen Verbindingsknop in inlogformulier"
985
 
 
986
  msgid "No Connect button in register form"
987
  msgstr "Geen Verbindingsknop in registratieformulier"
988
 
 
989
  msgid "Billing form"
990
  msgstr "Factureringsformulier"
991
 
 
992
  msgid "No Connect button in billing form"
993
  msgstr "Geen Verbindingsknop in het factureringsformulier"
994
 
 
995
  msgid "Billing layout"
996
  msgstr "Facturering layout"
997
 
 
998
  #, fuzzy
999
  #| msgid "Below with separator"
1000
  msgid "Default with separator"
1001
  msgstr "Hieronder met separator"
1002
 
 
1003
  msgid "Checkout for WooCommerce"
1004
  msgstr ""
1005
 
 
1006
  #, fuzzy
1007
  #| msgid "No Connect button in Register form"
1008
  msgid "No Connect button in \"Checkout for WooCommerce\" form"
1009
  msgstr "Geen Verbindingsknop in het Registratieformulier"
1010
 
 
1011
  msgid "Checkout for WooCommerce layout"
1012
  msgstr ""
1013
 
 
1014
  msgid "No Connect buttons in account details form"
1015
  msgstr "Geen Verbindingsknop in het accountgegevens formulier"
1016
 
 
 
1017
  msgid "Link buttons on"
1018
  msgstr "Koppelknoppen op"
1019
 
 
1020
  #, fuzzy
1021
  #| msgid "Ask E-mail on registration"
1022
  msgid "Email template for registration"
1023
  msgstr "Vraag E-mail bij inschrijving"
1024
 
 
1025
  #, fuzzy
1026
  #| msgid "WordPress default"
1027
  msgid "WordPress default notification"
1028
  msgstr "WordPress standaard"
1029
 
 
1030
  #, fuzzy
1031
  #| msgid "Registration notification sent to"
1032
  msgid "WooCommerce registration notification"
1033
  msgstr "Registratie notificatie verzonden naar"
1034
 
 
1035
  #, php-format
1036
  msgid ""
1037
  "Defines whether the registration with %1$s will send the same registration "
1038
  "notification that %2$s does, instead of the %3$s default one."
1039
  msgstr ""
1040
 
 
1041
  #, php-format
1042
  msgid "Network connection successful: %1$s"
1043
  msgstr "Netwerkverbinding succesvol: %1$s"
1044
 
 
1045
  #, php-format
1046
  msgid "Network connection failed: %1$s"
1047
  msgstr "Netwerkverbinding mislukt: %1$s"
1048
 
 
1049
  msgid ""
1050
  "Please contact with your hosting provider to resolve the network issue "
1051
  "between your server and the provider."
1053
  "Neem contact op met je hostingprovider om het netwerkprobleem tussen je "
1054
  "server en de provider op te lossen."
1055
 
 
1056
  msgid "Manage Avatar"
1057
  msgstr "Profielfoto beheren"
1058
 
 
1059
  #, php-format
1060
  msgid "Avatar <span class=\"count\">(%s)</span>"
1061
  msgid_plural "Avatar <span class=\"count\">(%s)</span>"
1062
  msgstr[0] "Profielfoto <span class=\"count\">(%s)</span>"
1063
  msgstr[1] "Profielfoto <span class=\"count\">(%s)</span>"
1064
 
 
1065
  msgid "Invalid URL Provided."
1066
  msgstr ""
1067
 
 
1068
  msgid "Could not create Temporary file."
1069
  msgstr ""
1070
 
 
1071
  #, php-format
1072
  msgid "%1$s &lsaquo; %2$s &#8212; WordPress"
1073
  msgstr "%1$s &lsaquo; %2$s &#8212; WordPress"
1074
 
 
1075
  msgid "https://wordpress.org/"
1076
  msgstr "https://nl.wordpress.org/"
1077
 
 
1078
  msgid "Powered by WordPress"
1079
  msgstr "Mogelijk gemaakt door WordPress"
1080
 
 
1081
  #, php-format
1082
  msgctxt "site"
1083
  msgid "&larr; Back to %s"
1084
  msgstr "&larr; Terug naar %s"
1085
 
 
1086
  msgid "Your configuration needs to be verified"
1087
  msgstr "Je configuratie moet worden geverifieerd"
1088
 
 
1089
  msgid ""
1090
  "Before you can start letting your users register with your app it needs to "
1091
  "be tested. This test makes sure that no users will have troubles with the "
1099
  "een foutmelding ziet in de popup, controleer dan de gekopieerde ID en het "
1100
  "geheim of de app zelf. Anders zijn je instellingen in orde."
1101
 
 
1102
  msgid "Please save your changes to verify settings."
1103
  msgstr "Sla je wijzigingen op om de instellingen te controleren."
1104
 
 
1105
  msgid "Works Fine"
1106
  msgstr "Werkt Prima"
1107
 
 
1108
  #, php-format
1109
  msgid ""
1110
  "This provider is currently disabled, which means that users can’t register "
1113
  "Deze provider is momenteel uitgeschakeld, wat betekent dat gebruikers zich "
1114
  "niet kunnen registreren of inloggen via hun %s account."
1115
 
 
1116
  #, php-format
1117
  msgid ""
1118
  "This provider works fine, but you can test it again. If you don’t want to "
1122
  "gebruikers niet meer wilt laten registreren of inloggen met %s kun je deze "
1123
  "uitschakelen."
1124
 
 
1125
  #, php-format
1126
  msgid ""
1127
  "This provider is currently enabled, which means that users can register or "
1130
  "Deze provider is momenteel ingeschakeld, wat betekent dat gebruikers zich "
1131
  "kunnen registreren of inloggen via hun %s account."
1132
 
 
1133
  msgid "Verify Settings Again"
1134
  msgstr "Controleer Instellingen Nogmaals"
1135
 
 
1136
  msgid "Please save your changes before verifying settings."
1137
  msgstr "Sla je wijzigingen op voordat je de instellingen controleert."
1138
 
 
 
 
1139
  msgid "Authentication successful"
1140
  msgstr "Authenticatie geslaagd"
1141
 
 
 
 
1142
  msgid "Authentication error"
1143
  msgstr "Authenticatiefout"
1144
 
 
1145
  msgid "Unlink successful."
1146
  msgstr "Ontkoppeling succesvol."
1147
 
 
1148
  msgid "Unlink is not allowed!"
1149
  msgstr "Ontkoppelen is niet toegestaan!"
1150
 
 
 
1151
  msgid "The test was successful"
1152
  msgstr "De test was succesvol"
1153
 
 
1154
  msgid "Authentication failed"
1155
  msgstr "Authenticatie mislukt"
1156
 
 
1157
  msgid "Identifier"
1158
  msgstr "Identificatie"
1159
 
 
1160
  #, fuzzy
1161
  #| msgid "Profile picture"
1162
  msgid "Profile Picture"
1163
  msgstr "Profielfoto"
1164
 
 
1165
  #, php-format
1166
  msgid ""
1167
  "Your %1$s account is successfully linked with your account. Now you can sign "
1170
  "Je %1$s account is succesvol gekoppeld aan je account. Je kunt je nu "
1171
  "gemakkelijk aanmelden met %2$s."
1172
 
 
1173
  #, fuzzy, php-format
1174
  #| msgid ""
1175
  #| "You have already linked a(n) %s account. Please unlink the current and "
1181
  "Je hebt al een %s account gekoppeld. Ontkoppel de huidige en dan kun je "
1182
  "andere %s account koppelen."
1183
 
 
1184
  #, fuzzy, php-format
1185
  #| msgid "This %s account is already linked to other user."
1186
  msgid "This %s account is already linked to another user."
1187
  msgstr "Dit %s account is al gekoppeld aan een andere gebruiker."
1188
 
 
1189
  msgid "User registration is currently not allowed."
1190
  msgstr "Gebruikersregistratie is momenteel niet toegestaan."
1191
 
 
1192
  #, php-format
1193
  msgid ""
1194
  "We found a user with your %1$s email address. Unfortunately it belongs to a "
1196
  "linked %1$s account or log in with your password!"
1197
  msgstr ""
1198
 
 
1199
  #, fuzzy
1200
  #| msgid "Register For This Site!"
1201
  msgid "Register For This Site"
1202
  msgstr "Registreer Voor Deze Site!"
1203
 
 
1204
  #, fuzzy
1205
  #| msgid "Register"
1206
  msgctxt "Register form submit button label"
1207
  msgid "Register"
1208
  msgstr "Registreren"
1209
 
 
1210
  #, php-format
1211
  msgid "%1$s requires PHP version %2$s+, plugin is currently NOT ACTIVE."
1212
  msgstr "%1$s vereist PHP versie %2$s+, plugin is momenteel NIET ACTIEF."
1213
 
 
1214
  #, php-format
1215
  msgid ""
1216
  "%1$s requires WordPress version %2$s+. Because you are using an earlier "
1219
  "%1$s vereist WordPress versie %2$s+. Omdat je een eerdere versie gebruikt, "
1220
  "is de plugin momenteel NIET ACTIEF."
1221
 
 
 
1222
  #, php-format
1223
  msgid "Please update %1$s to version %2$s or newer."
1224
  msgstr "Gelieve %1$s bij te werken naar versie %2$s of nieuwer."
1225
 
 
 
1226
  msgid "Update now!"
1227
  msgstr "Update nu!"
1228
 
 
 
1229
  msgid "Social Login"
1230
  msgstr "Social Login"
1231
 
 
1232
  msgid "Social Accounts"
1233
  msgstr "Social Accounts"
1234
 
 
 
 
1235
  msgid "Button skin"
1236
  msgstr "Knop skin"
1237
 
 
 
 
1238
  msgid "Dark"
1239
  msgstr "Donker"
1240
 
 
 
 
1241
  msgid "Light"
1242
  msgstr "Licht"
1243
 
 
1244
  msgid "Black"
1245
  msgstr ""
1246
 
 
1247
  msgid "White"
1248
  msgstr ""
1249
 
 
 
 
 
 
1250
  #, fuzzy, php-format
1251
  #| msgid "Navigate to %s"
1252
  msgid "Navigate to <b>%s</b>"
1253
  msgstr "Navigeer naar %s"
1254
 
 
 
 
 
 
 
 
 
 
 
1255
  #, php-format
1256
  msgid "Log in with your %s credentials if you are not logged in"
1257
  msgstr "Log in met je %s inloggegevens als je niet ingelogd bent"
1258
 
 
1259
  #, fuzzy, php-format
1260
  #| msgid "Click on the App with App ID: %s"
1261
  msgid "Click on the App with App ID: <b>%s</b>"
1262
  msgstr "Klik op de App met App ID: %s"
1263
 
 
1264
  #, fuzzy
1265
  #| msgid "In the left sidebar, click on \"Facebook Login/Settings\""
1266
  msgid "In the left sidebar, click on \"<b>Facebook Login > Settings</b>\""
1267
  msgstr "Klik in de linkerbalk op \"Facebook Login/Instellingen\""
1268
 
 
 
1269
  #, fuzzy
1270
  #| msgid ""
1271
  #| "Add the following URL to the \"Valid OAuth redirect URIs\" field: <b>%s</"
1276
  "Voeg de volgende URL toe aan het veld \"Geldige OAuth omleidings-URI's\": <b>"
1277
  "%s</b>"
1278
 
 
1279
  #, fuzzy
1280
  #| msgid "Click on \"Save Changes\""
1281
  msgid "Click on \"<b>Save Changes</b>\""
1282
  msgstr "Klik op \"Wijzigingen Opslaan\""
1283
 
 
 
 
 
1284
  #, php-format
1285
  msgid ""
1286
  "%1$s allows HTTPS OAuth Redirects only. You must move your site to HTTPS in "
1289
  "%1$s staat alleen HTTPS OAuth Omleidingen toe. Je moet je site verplaatsen "
1290
  "naar HTTPS om in te kunnen loggen met %1$s."
1291
 
 
 
 
 
1292
  msgid "How to get SSL for my WordPress site?"
1293
  msgstr "Hoe krijg ik SSL voor mijn WordPress site?"
1294
 
 
 
 
 
 
 
1295
  #, php-format
1296
  msgid ""
1297
  "To allow your visitors to log in with their %1$s account, first you must "
1306
  "\"Instellingen\" en configureer je de gegeven \"%2$s\" en \"%3$s\" volgens "
1307
  "je %1$s App."
1308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1309
  #, php-format
1310
  msgctxt "App creation"
1311
  msgid "Create %s"
1312
  msgstr "Maak %s"
1313
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1314
  #, php-format
1315
  msgid "Navigate to %s"
1316
  msgstr "Navigeer naar %s"
1317
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1318
  #, php-format
1319
  msgid "Log in with your %s credentials if you are not logged in."
1320
  msgstr "Log in met je %s inloggegevens als je niet ingelogd bent."
1321
 
 
1322
  #, fuzzy
1323
  #| msgid "Click on the \"Create an App\" button on the top right corner."
1324
  msgid ""
1326
  "\"<b>Consumer</b>\" App type!"
1327
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
1328
 
 
1329
  msgid ""
1330
  "If you see the message \"<b>Become a Facebook Developer</b>\", then you need "
1331
  "to click on the green \"<b>Register Now</b>\" button, fill the form then "
1332
  "finally verify your account."
1333
  msgstr ""
1334
 
 
1335
  #, fuzzy, php-format
1336
  #| msgid ""
1337
  #| "Fill \"Display Name\" and \"Contact Email\". The specified \"Display Name"
1343
  "Vul \"Schermnaam\" en \"E-mail\" in. De opgegeven \"Schermnaam\" zal "
1344
  "verschijnen op je %s!"
1345
 
 
1346
  msgid ""
1347
  "<b>Optional</b>: choose a \"<b>Business Manager Account</b>\" in the popup, "
1348
  "if you have any."
1349
  msgstr ""
1350
 
 
1351
  #, fuzzy
1352
  #| msgid "Click on the \"Create an App\" button on the top right corner."
1353
  msgid "Click the \"<b>Create App</b>\" button and complete the Security Check."
1354
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
1355
 
 
1356
  #, fuzzy, php-format
1357
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
1358
  msgid "Find \"<b>%1$s</b>\" and click \"<b>Set Up</b>\"."
1359
  msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
1360
 
 
1361
  #, fuzzy, php-format
1362
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
1363
  msgid ""
1365
  "field: <b>%s</b>"
1366
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
1367
 
 
1368
  #, fuzzy
1369
  #| msgid "Click on \"Save Changes\""
1370
  msgid "Press “<b>Save</b>”."
1371
  msgstr "Klik op \"Wijzigingen Opslaan\""
1372
 
 
1373
  #, php-format
1374
  msgid ""
1375
  "Click on the “<b>%1$s</b>” option what you find on the left side, under “<b>"
1376
  "%2$s</b> - <b>%3$s</b>”"
1377
  msgstr ""
1378
 
 
1379
  #, fuzzy
1380
  #| msgid "Click on \"Save Changes\""
1381
  msgid "Click on “<b>Save Changes</b>”."
1382
  msgstr "Klik op \"Wijzigingen Opslaan\""
1383
 
 
 
1384
  #, php-format
1385
  msgid ""
1386
  "On the top left side, click on the “<b>%1$s</b>” menu point, then click “<b>"
1387
  "%2$s</b>”."
1388
  msgstr ""
1389
 
 
1390
  #, fuzzy, php-format
1391
  #| msgid "Enter your domain name to the App Domains"
1392
  msgid ""
1394
  "b>"
1395
  msgstr "Voer je domeinnaam in bij de App Domeinen"
1396
 
 
1397
  #, fuzzy
1398
  #| msgid ""
1399
  #| "Fill up the \"Privacy Policy URL\". Provide a publicly available and "
1408
  "gemakkelijk toegankelijk privacybeleid waarin wordt uitgelegd welke gegevens "
1409
  "je verzamelt en hoe je deze gegevens zult gebruiken."
1410
 
 
1411
  msgid ""
1412
  "At \"<b>User Data Deletion</b>\", choose the \"<b>Data Deletion Instructions "
1413
  "URL</b>\" option, and enter the <i>URL of your page</i>* with the "
1414
  "instructions on how users can delete their accounts on your site."
1415
  msgstr ""
1416
 
 
1417
  msgid ""
1418
  "To comply with GDPR, you should already offer possibility to delete accounts "
1419
  "on your site, either by the user or by the admin:"
1420
  msgstr ""
1421
 
 
1422
  msgid ""
1423
  "<u>If each user has an option to delete the account</u>: the URL should "
1424
  "point to a guide showing the way users can delete their accounts."
1425
  msgstr ""
1426
 
 
1427
  msgid ""
1428
  "<u>If the accounts are deleted by an admin</u>: then you should have a "
1429
  "section - usually in the Privacy Policy - with the contact details, where "
1431
  "point to this section of the document."
1432
  msgstr ""
1433
 
 
1434
  msgid ""
1435
  "Select a “<b>Category</b>”, an “<b>App Icon</b>” and pick the “<b>App "
1436
  "Purpose</b>” option that describes your App the best, then press \"<b>Save "
1437
  "Changes</b>\"."
1438
  msgstr ""
1439
 
 
1440
  #, fuzzy
1441
  #| msgid ""
1442
  #| "Your application is currently private ( Status: In Development ), which "
1451
  "alleen jij ermee kunt inloggen. Klik in de bovenste balk op de \"OFF\" "
1452
  "schakelaar en selecteer een categorie voor je App."
1453
 
 
1454
  #, php-format
1455
  msgid ""
1456
  "By default, your application only has Standard access for the permissions, "
1460
  "should click on the <strong>%6$s</strong> buttons next to them. "
1461
  msgstr ""
1462
 
 
1463
  #, fuzzy, php-format
1464
  #| msgid ""
1465
  #| "Here you can see your \"APP ID\" and you can see your \"App secret\" if "
1473
  "Hier kun je je \"APP ID\" zien en je \"App geheim\" als je op de knop "
1474
  "\"Weergeven\" klikt. Deze zullen nodig zijn in de instellingen van de plugin."
1475
 
 
1476
  #, php-format
1477
  msgid ""
1478
  "<b>WARNING:</b> <u>Don't replace your Facebook App with another!</u> Since "
1483
  "the Facebook App, then please check our %2$sdocumentation%3$s."
1484
  msgstr ""
1485
 
 
1486
  msgid "Maintaining the Facebook App:"
1487
  msgstr ""
1488
 
 
1489
  #, php-format
1490
  msgid ""
1491
  "<strong><u>Facebook Data Use Checkup:</u></strong> To protecting people's "
1496
  "that we need."
1497
  msgstr ""
1498
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1499
  #, php-format
1500
  msgid "I am done setting up my %s"
1501
  msgstr "Ik ben klaar met het instellen van mijn %s"
1502
 
 
 
1503
  msgid "App ID"
1504
  msgstr "App ID"
1505
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1506
  msgid "Required"
1507
  msgstr "Verplicht"
1508
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1509
  #, php-format
1510
  msgid ""
1511
  "If you are not sure what is your %1$s, please head over to <a href=\"%2$s"
1514
  "Als je niet zeker weet wat je %1$s is, ga dan naar <a href=\"%2$s\">Aan de "
1515
  "slag</a>"
1516
 
 
1517
  msgid "App Secret"
1518
  msgstr "App Geheim"
1519
 
 
 
1520
  #, php-format
1521
  msgid ""
1522
  "By replacing your existing %1$s App, users with linked %1$s accounts will no "
1523
  "longer be able to login with %1$s."
1524
  msgstr ""
1525
 
 
 
1526
  msgid "Find out why?"
1527
  msgstr ""
1528
 
 
1529
  msgid "Continue with <b>Facebook</b>"
1530
  msgstr "Doorgaan met <b>Facebook</b>"
1531
 
 
1532
  #, fuzzy
1533
  #| msgid "Continue with <b>Facebook</b>"
1534
  msgid "Sign up with <b>Facebook</b>"
1535
  msgstr "Doorgaan met <b>Facebook</b>"
1536
 
 
1537
  msgid "Link account with <b>Facebook</b>"
1538
  msgstr "Koppel met <b>Facebook</b>"
1539
 
 
1540
  msgid "Unlink account from <b>Facebook</b>"
1541
  msgstr "Ontkoppel van <b>Facebook</b>"
1542
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1543
  #, php-format
1544
  msgid ""
1545
  "The %1$s entered did not appear to be a valid. Please enter a valid %2$s."
1546
  msgstr "Het ingevoerde %1$s bleek niet geldig te zijn. Vul een geldig %2$s in."
1547
 
 
 
1548
  #, php-format
1549
  msgid "Required scope: %1$s"
1550
  msgstr "Vereiste scope: %1$s"
1551
 
 
1552
  #, fuzzy
1553
  #| msgid "Uniform"
1554
  msgid "Uniform - Legacy"
1555
  msgstr "Uniform"
1556
 
 
1557
  #, fuzzy
1558
  #| msgid "Click on the \"Credentials\" in the left hand menu"
1559
  msgid "Click on the \"<b>Credentials</b>\" in the left hand menu"
1560
  msgstr "Klik op de \"Inloggegevens\" in het linker menu"
1561
 
 
1562
  #, php-format
1563
  msgid ""
1564
  "Under the \"<b>OAuth 2.0 Client IDs</b>\" section find your Client ID: <b>"
1565
  "%s</b>"
1566
  msgstr ""
1567
 
 
 
1568
  #, fuzzy, php-format
1569
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
1570
  msgid ""
1572
  "following URL:"
1573
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
1574
 
 
 
 
 
1575
  #, fuzzy
1576
  #| msgid "Click on \"Save\""
1577
  msgid "Click on \"<b>Save</b>\""
1578
  msgstr "Klik op \"Opslaan\""
1579
 
 
1580
  #, fuzzy, php-format
1581
  #| msgid ""
1582
  #| "If you don't have a project yet, you'll need to create one. You can do "
1595
  "een project hebt, klik dan op de naam van je project in plaats daarvan in "
1596
  "het dashboard, die een modal zal weergeven en klik op Nieuw Project. )"
1597
 
 
1598
  #, fuzzy, php-format
1599
  #| msgid "Name your project and then click on the Create button again"
1600
  msgid "Name your project and then click on the \"<b>%1$s</b>\" button again!"
1601
  msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
1602
 
 
1603
  msgid ""
1604
  "Once you have a project, you'll end up in the dashboard. ( If earlier you "
1605
  "have already had a Project, then make sure you select the created project in "
1606
  "the top bar! )"
1607
  msgstr ""
1608
 
 
1609
  #, fuzzy, php-format
1610
  #| msgid "Click on the \"Credentials\" in the left hand menu"
1611
  msgid "Click the “<b>%1$s</b>” button on the left hand side."
1612
  msgstr "Klik op de \"Inloggegevens\" in het linker menu"
1613
 
 
1614
  #, php-format
1615
  msgid ""
1616
  "Choose a <b>%1$s</b> according to your needs and press \"<b>%2$s</b>\". If "
1618
  "account, then pick the \"%4$s\" option!"
1619
  msgstr ""
1620
 
 
1621
  #, php-format
1622
  msgid ""
1623
  "<b>Note:</b> We don't use sensitive or restricted scopes either. But if you "
1625
  "%1$s!"
1626
  msgstr ""
1627
 
 
1628
  #, fuzzy, php-format
1629
  #| msgid ""
1630
  #| "Enter a name for your App under the \"Application name\" field, which "
1636
  "Voer een naam in voor je App in het veld \"Toepassingsnaam\", die zal "
1637
  "verschijnen als de naam van de app die om toestemming vraagt."
1638
 
 
1639
  #, php-format
1640
  msgid ""
1641
  "For the \"<b>%1$s</b>\" field, select an email address that users can use to "
1642
  "contact you with questions about their consent."
1643
  msgstr ""
1644
 
 
1645
  #, fuzzy, php-format
1646
  #| msgid ""
1647
  #| "Fill the \"Authorized domains\" field with your domain name probably: <b>"
1653
  "Vul het veld \"Geautoriseerde domeinen\" in met je domeinnaam "
1654
  "waarschijnlijk: <b>%s</b> zonder subdomeinen!"
1655
 
 
1656
  #, php-format
1657
  msgid ""
1658
  "At the \"<b>%1$s</b>\" section, enter an email address that %2$s can use to "
1659
  "notify you about any changes to your project."
1660
  msgstr ""
1661
 
 
1662
  #, php-format
1663
  msgid ""
1664
  "Press \"<b>%1$s</b>\" then press it again on the \"%2$s\", \"%3$s\" pages, "
1665
  "too!"
1666
  msgstr ""
1667
 
 
1668
  #, php-format
1669
  msgid ""
1670
  "On the left side, click on the \"<b>%1$s</b>\" menu point, then click the "
1671
  "\"<b>%2$s</b>\" button in the top bar."
1672
  msgstr ""
1673
 
 
1674
  #, fuzzy, php-format
1675
  #| msgid "Click on the Create button"
1676
  msgid "Choose the \"<b>%1$s</b>\" option."
1677
  msgstr "Klik op de knop Aanmaken"
1678
 
 
1679
  #, fuzzy, php-format
1680
  #| msgid ""
1681
  #| "Click on the link \"registering an application\" under the Applications "
1684
  msgstr ""
1685
  "Klik op de link \"aanvraag registreren\" onder het tabblad \"Applicaties\"."
1686
 
 
1687
  #, fuzzy, php-format
1688
  #| msgid "Enter a \"Description\" for your app!"
1689
  msgid "Enter a \"<b>%1$s</b>\" for your OAuth client ID."
1690
  msgstr "Vul een \"Beschrijving\" in voor je app!"
1691
 
 
1692
  #, fuzzy, php-format
1693
  #| msgid "Click on the Create button"
1694
  msgid "Click on the \"<b>%1$s</b>\" button"
1695
  msgstr "Klik op de knop Aanmaken"
1696
 
 
1697
  #, fuzzy, php-format
1698
  #| msgid ""
1699
  #| "A modal should pop up with your credentials. If that doesn't happen, go "
1711
  "te klikken en je kunt van daaruit de Client ID en Client Geheim kopiëren en "
1712
  "plakken."
1713
 
 
 
 
 
 
 
 
 
1714
  msgid "Client ID"
1715
  msgstr "Client ID"
1716
 
 
 
 
 
 
 
 
1717
  msgid "Client Secret"
1718
  msgstr "Client Geheim"
1719
 
 
1720
  msgid "Select account on each login"
1721
  msgstr ""
1722
 
 
1723
  msgid ""
1724
  "Disable, when you don't want to see the account select prompt on each login."
1725
  msgstr ""
1726
 
 
1727
  msgid "Continue with <b>Google</b>"
1728
  msgstr "Doorgaan met <b>Google</b>"
1729
 
 
1730
  #, fuzzy
1731
  #| msgid "Continue with <b>Google</b>"
1732
  msgid "Sign up with <b>Google</b>"
1733
  msgstr "Doorgaan met <b>Google</b>"
1734
 
 
1735
  msgid "Link account with <b>Google</b>"
1736
  msgstr "Koppel met <b>Google</b>"
1737
 
 
1738
  msgid "Unlink account from <b>Google</b>"
1739
  msgstr "Ontkoppel van <b>Google</b>"
1740
 
 
1741
  #, php-format
1742
  msgid "Required API: %1$s"
1743
  msgstr "Vereiste API: %1$s"
1744
 
 
1745
  #, fuzzy
1746
  #| msgid "Find your App and click on the Details button"
1747
  msgid ""
1749
  "like a gear.)"
1750
  msgstr "Vind jew app en klik op de knop Details"
1751
 
 
1752
  #, fuzzy
1753
  #| msgid "Click on the \"Create an App\" button on the top right corner."
1754
  msgid "Click on the <b>Edit</b> button at <b>Authentication settings</b>."
1755
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
1756
 
 
 
1757
  #, fuzzy, php-format
1758
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
1759
  msgid "Add the following URL to the \"<b>%1$s</b>\" field:"
1760
  msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
1761
 
 
1762
  #, fuzzy, php-format
1763
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
1764
  msgid ""
1765
  "Make sure the \"<b>%1$s</b>\" field contains the following URL: <b>%2$s</b>"
1766
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
1767
 
 
1768
  msgid ""
1769
  "If you don't have a developer account yet, please apply one by filling all "
1770
  "the required details! This is required for the next steps!"
1772
  "Als je nog geen ontwikkelaarsaccount heeft, kun je je aanmelden door alle "
1773
  "benodigde gegevens in te vullen! Dit is vereist voor de volgende stappen!"
1774
 
 
1775
  #, fuzzy, php-format
1776
  #| msgid ""
1777
  #| "Once your developer account is complete, navigate back to %s if you "
1783
  "Zodra je ontwikkelaarsaccount is voltooid, navigeer terug naar %s als je er "
1784
  "nog niet bent!"
1785
 
 
1786
  #, fuzzy, php-format
1787
  #| msgid "Click on \"Save\""
1788
  msgid "Click on \"<b>%s</b>\"!"
1789
  msgstr "Klik op \"Opslaan\""
1790
 
 
1791
  msgid ""
1792
  "Name your project, and go through the basic setup. You’ll need to select "
1793
  "your use case, give a description and enter a name for the App as well."
1794
  msgstr ""
1795
 
 
1796
  #, fuzzy, php-format
1797
  #| msgid "Click \"Edit\"."
1798
  msgid "Click \"<b>%s</b>\"!"
1799
  msgstr "Klik op \"Bewerken\"."
1800
 
 
1801
  #, php-format
1802
  msgid ""
1803
  "You’ll find your API key and secret on this page. Copy and paste the \"<b>"
1805
  "press \"<b>Save Changes</b>\"."
1806
  msgstr ""
1807
 
 
1808
  #, php-format
1809
  msgid ""
1810
  "Go back to your Twitter project and on the left side, under the \"<b>%s</b>"
1811
  "\" section click on the name of your App."
1812
  msgstr ""
1813
 
 
1814
  #, fuzzy, php-format
1815
  #| msgid "Name your project and then click on the Create button again"
1816
  msgid "Scroll down and click on the \"<b>%1$s</b>\" button at \"<b>%2$s</b>\"."
1817
  msgstr "Geef je project een naam en klik dan opnieuw op de knop Aanmaken"
1818
 
 
1819
  #, fuzzy, php-format
1820
  #| msgid "Click on the Create button"
1821
  msgid "Switch on the \"<b>%s</b>\" option."
1822
  msgstr "Klik op de knop Aanmaken"
1823
 
 
1824
  #, fuzzy, php-format
1825
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
1826
  msgid "Enter your site's URL to the \"<b>%1$s</b>\" field: <b>%2$s</b>"
1827
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
1828
 
 
1829
  #, php-format
1830
  msgid ""
1831
  "If you want to get the email address as well, then don’t forget to enable "
1833
  "%2$s</b>\" and the \"<b>%3$s</b>\" fields with the corresponding URLs!"
1834
  msgstr ""
1835
 
 
1836
  #, fuzzy, php-format
1837
  #| msgid "Click on \"Save\""
1838
  msgid "Click on \"<b>%s</b>\"."
1839
  msgstr "Klik op \"Opslaan\""
1840
 
 
1841
  #, php-format
1842
  msgid "Go back to %1$s and <b>Verify</b> your %2$s provider."
1843
  msgstr ""
1844
 
 
 
1845
  msgid "API Key"
1846
  msgstr "API Sleutel"
1847
 
 
1848
  msgid "API secret key"
1849
  msgstr "API geheime sleutel"
1850
 
 
1851
  msgid "Profile image size"
1852
  msgstr "Profielafbeelding grootte"
1853
 
 
1854
  msgid "Original"
1855
  msgstr "Origineel"
1856
 
 
1857
  msgid "Continue with <b>Twitter</b>"
1858
  msgstr "Doorgaan met <b>Twitter</b>"
1859
 
 
1860
  #, fuzzy
1861
  #| msgid "Continue with <b>Twitter</b>"
1862
  msgid "Sign up with <b>Twitter</b>"
1863
  msgstr "Doorgaan met <b>Twitter</b>"
1864
 
 
1865
  msgid "Link account with <b>Twitter</b>"
1866
  msgstr "Koppel met <b>Twitter</b>"
1867
 
 
1868
  msgid "Unlink account from <b>Twitter</b>"
1869
  msgstr "Ontkoppel van <b>Twitter</b>"
1870
 
 
1871
  #, php-format
1872
  msgid "%s Buttons"
1873
  msgstr "%s Knoppen"
1874
 
 
1875
  msgid "Title:"
1876
  msgstr "Titel:"
1877
 
 
1878
  msgid "Button style:"
1879
  msgstr "Knop stijl:"
1880
 
 
1881
  msgid "Button align:"
1882
  msgstr "Knop uitlijning:"
1883
 
 
1884
  msgid "Show link buttons"
1885
  msgstr "Toon koppel-knoppen"
1886
 
 
1887
  msgid "Show unlink buttons"
1888
  msgstr "Toon ontkoppel-knoppen"
1889
 
 
1890
  msgid "Social login is not allowed with this role!"
1891
  msgstr "Social login is niet toegestaan bij deze rol!"
1892
 
 
1893
  msgid "Please enter a username."
1894
  msgstr "Vul gebruikersnaam in."
1895
 
 
1896
  msgid ""
1897
  "This username is invalid because it uses illegal characters. Please enter a "
1898
  "valid username."
1900
  "Deze gebruikersnaam is ongeldig omdat hij illegale tekens gebruikt. Vul een "
1901
  "geldige gebruikersnaam in."
1902
 
 
1903
  #, fuzzy
1904
  #| msgid "This username is already registered. Please choose another one."
1905
  msgid ""
1907
  "another one."
1908
  msgstr "Deze gebruikersnaam is al in gebruik. Kies een andere."
1909
 
 
1910
  #, fuzzy
1911
  #| msgid "Sorry, that username is not allowed."
1912
  msgid "<strong>Error</strong>: Sorry, that username is not allowed."
1913
  msgstr "Sorry, deze gebruikersnaam is niet toegestaan."
1914
 
 
1915
  msgid "Username"
1916
  msgstr "Gebruikersnaam"
1917
 
 
1918
  #, fuzzy
1919
  #| msgid "<strong>ERROR</strong>: Please enter a password."
1920
  msgid "<strong>Error</strong>: Please enter an email address."
1921
  msgstr "<strong>FOUT</strong>: Voer een wachtwoord in."
1922
 
 
1923
  #, fuzzy
1924
  #| msgid "The email address isn&#8217;t correct."
1925
  msgid "<strong>Error</strong>: The email address isn&#8217;t correct."
1926
  msgstr "Het e-mailadres is niet juist."
1927
 
 
1928
  #, fuzzy
1929
  #| msgid "This email is already registered, please choose another one."
1930
  msgid ""
1932
  "another one."
1933
  msgstr "Dit e-mailadres is al geregistreerd. Kies een andere."
1934
 
 
1935
  msgid "Registration confirmation will be emailed to you."
1936
  msgstr "Een bevestiging van de registratie wordt naar je gemaild."
1937
 
 
1938
  #, fuzzy
1939
  #| msgid "<strong>ERROR</strong>: Please enter a password."
1940
  msgid "<strong>Error</strong>: Please enter a password."
1941
  msgstr "<strong>FOUT</strong>: Voer een wachtwoord in."
1942
 
 
1943
  #, fuzzy
1944
  #| msgid ""
1945
  #| "<strong>ERROR</strong>: Passwords may not contain the character \"\\\"."
1947
  msgstr ""
1948
  "<strong>FOUT</strong>: Wachtwoorden mogen niet het teken \"\\\" bevatten."
1949
 
 
1950
  #, fuzzy
1951
  #| msgid ""
1952
  #| "<strong>ERROR</strong>: Please enter the same password in both password "
1958
  "<strong>FOUT</strong>: Voer hetzelfde wachtwoord in beide wachtwoordvelden "
1959
  "in."
1960
 
 
1961
  msgid "Password"
1962
  msgstr "Wachtwoord"
1963
 
 
1964
  msgid "Strength indicator"
1965
  msgstr "Sterkte-indicator"
1966
 
 
1967
  msgid "Confirm use of weak password"
1968
  msgstr "Bevestig het gebruik van een zwak wachtwoord"
1969
 
 
1970
  msgid "Confirm password"
1971
  msgstr "Bevestig wachtwoord"
1972
 
 
1973
  #, php-format
1974
  msgid ""
1975
  "This email is already registered, please login in to your account to link "
1978
  "Dit e-mailadres is al geregistreerd, log in op je account om te koppelen met "
1979
  "%1$s."
1980
 
 
1981
  #, php-format
1982
  msgid "Please install and activate %1$s to use the %2$s"
1983
  msgstr "Installeer en activeer %1$s om de %2$s te gebruiken"
1984
 
 
1985
  msgid "Network Activate"
1986
  msgstr "Netwerk Activeren"
1987
 
 
1988
  msgid "Install now!"
1989
  msgstr "Installeer nu!"
1990
 
 
1991
  #, fuzzy
1992
  #| msgid "Providers"
1993
  msgid "Social Providers"
1994
  msgstr "Providers"
1995
 
 
1996
  #, php-format
1997
  msgid ""
1998
  "The Facebook Sync data needs an approved %1$s and your App must use the "
2001
  "De Facebook Sync data heeft een goedgekeurd %1$s nodig en je App moet de "
2002
  "laatste %2$s versie gebruiken!"
2003
 
 
2004
  #, php-format
2005
  msgid ""
2006
  "Most of these information can only be retrieved, when the field is marked as "
2009
  "De meeste van deze informatie kan alleen worden opgehaald, wanneer het veld "
2010
  "als openbaar is gemarkeerd op de %s pagina van de gebruiker!"
2011
 
 
 
2012
  #, php-format
2013
  msgid "Visit %s"
2014
  msgstr "Bezoek %s"
2015
 
 
 
2016
  #, fuzzy
2017
  #| msgid ""
2018
  #| "On the right side, under \"Manage\", hover over the gear icon and select "
2024
  "Aan de rechterkant, onder \"Beheer\", ga met de muis over het "
2025
  "tandwielpictogram en selecteer de optie \"Webinstellingen\"."
2026
 
 
 
2027
  #, fuzzy
2028
  #| msgid "Click \"Edit\"."
2029
  msgid "Click \"<b>Edit</b>\"."
2030
  msgstr "Klik op \"Bewerken\"."
2031
 
 
 
2032
  #, fuzzy
2033
  #| msgid ""
2034
  #| "Add the following URL to the \"Allowed Return URLs\" field <b>%s</b> "
2036
  msgstr ""
2037
  "Voeg de volgende URL toe aan het veld \"Toegestane Return URLs\" <b>%s</b> "
2038
 
 
 
 
 
 
 
 
2039
  #, php-format
2040
  msgid ""
2041
  "To allow your visitors to log in with their %1$s account, first you must "
2050
  "\"Instellingen\" en configureer je de gegevens \"%2$s\" en \"%3$s\" volgens "
2051
  "je %1$s App."
2052
 
 
2053
  #, fuzzy
2054
  #| msgid ""
2055
  #| "If you don't have a Security Profile yet, you'll need to create one. You "
2064
  "dit doen door op de oranje knop \"Maak een Nieuw Veiligheidsprofiel\" aan de "
2065
  "linkerkant te klikken."
2066
 
 
2067
  #, fuzzy
2068
  #| msgid ""
2069
  #| "Fill \"Security Profile Name\", \"Security Profile Description\" and "
2075
  "Vul \"Naam Beveiligingsprofiel\", \"Beschrijving Beveiligingsprofiel\" en "
2076
  "\"Toestemming privacyverklaring URL\" in."
2077
 
 
2078
  #, fuzzy
2079
  #| msgid "Once you filled all the required fields, click \"Save\"."
2080
  msgid "Once you filled all the required fields, click \"<b>Save</b>\"."
2081
  msgstr "Zodra je alle verplichte velden hebt ingevuld, klik je op \"Opslaan\"."
2082
 
 
2083
  #, fuzzy, php-format
2084
  #| msgid ""
2085
  #| "Fill \"Allowed Origins\" with the url of your homepage, probably: <b>%s</"
2091
  "Vul \"Toegestane Oorsprong\" in met de url van je homepage, waarschijnlijk: "
2092
  "<b>%s</b>"
2093
 
 
 
2094
  #, fuzzy
2095
  #| msgid "When all fields are filled, click \"Save\"."
2096
  msgid "When all fields are filled, click \"<b>Save</b>\"."
2097
  msgstr "Wanneer alle velden zijn ingevuld, klik je op \"Opslaan\"."
2098
 
 
2099
  #, fuzzy
2100
  #| msgid ""
2101
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2107
  "Vind de benodigde \"Client ID\" en \"Client Geheim\" in het midden van de "
2108
  "pagina, onder het tabblad \"Web Instelling\"."
2109
 
 
2110
  msgid "Continue with <b>Amazon</b>"
2111
  msgstr "Doorgaan met <b>Amazonië</b>"
2112
 
 
2113
  #, fuzzy
2114
  #| msgid "Continue with <b>Amazon</b>"
2115
  msgid "Sign up with <b>Amazon</b>"
2116
  msgstr "Doorgaan met <b>Amazonië</b>"
2117
 
 
2118
  msgid "Link account with <b>Amazon</b>"
2119
  msgstr "Koppel met <b>Amazon</b>"
2120
 
 
2121
  msgid "Unlink account from <b>Amazon</b>"
2122
  msgstr "Ontkoppel van <b>Amazon</b>"
2123
 
 
2124
  #, fuzzy
2125
  #| msgid "Click on the name of your %s App."
2126
  msgid "Click on the name of your service."
2127
  msgstr "Klik op de naam van je %s App."
2128
 
 
2129
  msgid ""
2130
  "Click the \"<b>Configure</b>\" button next to \"<b>Sign In with Apple</b>\"."
2131
  msgstr ""
2132
 
 
 
2133
  #, php-format
2134
  msgid "Click the <b>blue + icon</b> next to %1$s heading."
2135
  msgstr ""
2136
 
 
 
2137
  #, fuzzy, php-format
2138
  #| msgid ""
2139
  #| "Fill the \"Callback Domain\" field with your domain name probably: <b>%s</"
2145
  "Vul het \"Callback Domein\" veld in met je domeinnaam waarschijnlijk: <b>%s</"
2146
  "b> "
2147
 
 
 
2148
  #, fuzzy
2149
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
2150
  msgid "Add the following URL to the \"<b>Return URLs</b>\" field:"
2151
  msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
2152
 
 
2153
  msgid ""
2154
  "Finally press \"<b>Next</b>\" then \"<b>Done</b>\" and finally click on the "
2155
  "\"<b>Continue</b>\" and the \"<b>Save</b>\" button!"
2156
  msgstr ""
2157
 
 
2158
  #, fuzzy, php-format
2159
  #| msgid ""
2160
  #| "To allow your visitors to log in with their %1$s account, first you must "
2175
  "\"Instellingen\" en configureer je de gegevens \"%2$s\" en \"%3$s\" volgens "
2176
  "je %1$s App."
2177
 
 
2178
  msgid ""
2179
  "Make sure you have an <strong>active subscription for the <a href=\"https://"
2180
  "developer.apple.com/programs/\" target=\"_blank\">Apple Developer Program</"
2182
  "App!"
2183
  msgstr ""
2184
 
 
2185
  msgid ""
2186
  "Make sure your site have <b>SSL</b>, since <b>Apple only allows HTTPS urls</"
2187
  "b>!"
2188
  msgstr ""
2189
 
 
2190
  msgid "1.) Create the associated App:"
2191
  msgstr ""
2192
 
 
2193
  #, php-format
2194
  msgid ""
2195
  "Click the <b>blue + icon</b> next to %1$s, then select the <b>%2$s</b> "
2196
  "option and click the \"Continue\" button."
2197
  msgstr ""
2198
 
 
2199
  #, php-format
2200
  msgid ""
2201
  "Choose the \"<strong>%1$s</strong>\" option as type and press the "
2202
  "\"<b>Continue</b>\" button."
2203
  msgstr ""
2204
 
 
2205
  #, fuzzy
2206
  #| msgid "Enter a \"Description\" for your app!"
2207
  msgid "Enter a \"<b>Description</b>\""
2208
  msgstr "Vul een \"Beschrijving\" in voor je app!"
2209
 
 
2210
  #, php-format
2211
  msgid ""
2212
  "At the \"<b>Bundle ID</b>\" field select the \"<b>Explicit</b>\" option and "
2214
  "app at its end: <b>%s.nslapp</b>"
2215
  msgstr ""
2216
 
 
2217
  msgid ""
2218
  "Under the \"<b>Capabilities</b>\" section, tick the \"<b>Sign In with Apple</"
2219
  "b>\" option."
2220
  msgstr ""
2221
 
 
2222
  msgid ""
2223
  "Scroll up and press the \"<b>Continue</b>\" button and then the "
2224
  "\"<b>Register</b>\" button."
2225
  msgstr ""
2226
 
 
2227
  msgid "2.) Create the Key:"
2228
  msgstr ""
2229
 
 
2230
  #, php-format
2231
  msgid "On the left hand side, click on the \"<b>%s</b>\" tab."
2232
  msgstr ""
2233
 
 
2234
  #, fuzzy
2235
  #| msgid "Enter the name of your App to the \"App name\" field."
2236
  msgid "Enter a name in the <b>Key Name</b> field."
2237
  msgstr "Voer de naam van je App in het veld \"App name\" in."
2238
 
 
2239
  msgid ""
2240
  "Tick the \"<b>Sign In with Apple</b>\" option, then click on \"<b>Configure</"
2241
  "b>\"."
2242
  msgstr ""
2243
 
 
2244
  msgid ""
2245
  "If you have multiple Apps, then at the \"<b>Choose a Primary App ID</b>\" "
2246
  "field <b>select the App what you just created</b>, then click \"<b>Save</b>"
2247
  "\"."
2248
  msgstr ""
2249
 
 
2250
  msgid ""
2251
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Register</b>"
2252
  "\" button."
2253
  msgstr ""
2254
 
 
2255
  msgid "<b>Don't download the key yet!</b>"
2256
  msgstr ""
2257
 
 
2258
  msgid "3.) Create the Service:"
2259
  msgstr ""
2260
 
 
2261
  #, php-format
2262
  msgid ""
2263
  "Go to the \"<b>%1$s</b>\" section, what you will find within the \"%2$s\" "
2264
  "tab."
2265
  msgstr ""
2266
 
 
2267
  #, php-format
2268
  msgid ""
2269
  "Click the <b>blue + icon</b> next to %1$s, then select the \"<b>%2$s</b>\" "
2270
  "option and click the \"<b>Continue</b>\" button."
2271
  msgstr ""
2272
 
 
2273
  #, fuzzy
2274
  #| msgid "Enter a \"Description\" for your app!"
2275
  msgid "Enter a \"<b>Description</b>\"."
2276
  msgstr "Vul een \"Beschrijving\" in voor je app!"
2277
 
 
2278
  #, php-format
2279
  msgid ""
2280
  "At the \"<b>Identifier</b>\" field enter your domain name in reverse-domain "
2281
  "name style, with the name of the client at its end: <b>%s.nslclient</b>"
2282
  msgstr ""
2283
 
 
2284
  msgid "<b>Note:</b> This will also be used as Service Identifier later!"
2285
  msgstr ""
2286
 
 
2287
  msgid ""
2288
  "Press the \"<b>Continue</b>\" button and then the \"<b>Register</b>\" button."
2289
  msgstr ""
2290
 
 
2291
  #, php-format
2292
  msgid "In the \"<b>%1$s</b>\" section, click the service you just created."
2293
  msgstr ""
2294
 
 
2295
  msgid ""
2296
  "Tick the \"<b>Sign In with Apple</b>\" option and click the \"<b>Configure</"
2297
  "b>\" button next to it."
2298
  msgstr ""
2299
 
 
2300
  msgid ""
2301
  "If you have multiple Apps, then at the \"Primary App ID\" field select the "
2302
  "App what you just created."
2303
  msgstr ""
2304
 
 
2305
  #, fuzzy
2306
  #| msgid "Click on the \"Create an App\" button on the top right corner."
2307
  msgid "Click the \"<b>Next</b>\" button then press the \"<b>Done</b>\" button."
2308
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
2309
 
 
2310
  msgid ""
2311
  "Finally press the \"<b>Continue</b>\" button and then the \"<b>Save</b>\" "
2312
  "button."
2313
  msgstr ""
2314
 
 
2315
  msgid "4.) Configure Nextend Social Login with your credentials:"
2316
  msgstr ""
2317
 
 
2318
  msgid "Go to Nextend Social Login > Providers > Apple > Settings tab."
2319
  msgstr ""
2320
 
 
2321
  msgid "<strong><u>Private Key ID:</u></strong>"
2322
  msgstr ""
2323
 
 
 
2324
  #, fuzzy, php-format
2325
  #| msgid "Navigate to %s"
2326
  msgid "Navigate to: <b>%s</b>"
2327
  msgstr "Navigeer naar %s"
2328
 
 
2329
  #, fuzzy
2330
  #| msgid "Click on the name of your %s App."
2331
  msgid "Click on the <b>name of your Key</b>."
2332
  msgstr "Klik op de naam van je %s App."
2333
 
 
2334
  msgid "You will find your \"<b>Private Key ID</b>\" under \"<b>Key ID</b>\"."
2335
  msgstr ""
2336
 
 
2337
  msgid "<strong><u>Private Key:</u></strong>"
2338
  msgstr ""
2339
 
 
2340
  msgid ""
2341
  "Click the \"<b>Download</b>\" button to download the key file. <u>Once this "
2342
  "file is downloaded, it will no longer be available, so <b>make sure you keep "
2343
  "this file safe</b>!</u> "
2344
  msgstr ""
2345
 
 
2346
  msgid ""
2347
  "<b>Open the downloaded file</b> with a text editor, like Notepad, <b><u>copy "
2348
  "all of its contents</u></b> and <b>paste it</b> into the \"<b>Private Key</b>"
2349
  "\" field of Nextend Social Login."
2350
  msgstr ""
2351
 
 
2352
  msgid "<strong><u>Team Identifier:</u></strong>"
2353
  msgstr ""
2354
 
 
2355
  msgid ""
2356
  "A 10 character long identifier, what you can find on the <b>top-right "
2357
  "corner, just under your name</b>."
2358
  msgstr ""
2359
 
 
2360
  msgid "<strong><u>Service Identifier:</u></strong>"
2361
  msgstr ""
2362
 
 
2363
  #, php-format
2364
  msgid ""
2365
  "You will find it under the \"<b>IDENTIFIER</b>\" column. If you configured "
2367
  "e.g.: <b>%s.nslclient</b>"
2368
  msgstr ""
2369
 
 
2370
  #, fuzzy
2371
  #| msgid "Once you filled all the required fields, click \"Save\"."
2372
  msgid ""
2374
  "button."
2375
  msgstr "Zodra je alle verplichte velden hebt ingevuld, klik je op \"Opslaan\"."
2376
 
 
2377
  msgid "Finally <b>verify the settings</b> and <b>enable the provider</b>!"
2378
  msgstr ""
2379
 
 
2380
  msgid ""
2381
  "When you need to change your credentials for some reason, then you must "
2382
  "delete the token, copy the new credentials and generate a new token!"
2383
  msgstr ""
2384
 
 
2385
  msgid "Delete credentials"
2386
  msgstr ""
2387
 
 
2388
  msgid "Private Key ID"
2389
  msgstr ""
2390
 
 
2391
  #, fuzzy
2392
  #| msgid "Privacy"
2393
  msgid "Private Key"
2394
  msgstr "Privacy"
2395
 
 
2396
  #, fuzzy
2397
  #| msgid "Identifier"
2398
  msgid "Team Identifier"
2399
  msgstr "Identificatie"
2400
 
 
2401
  #, fuzzy
2402
  #| msgid "Identifier"
2403
  msgid "Service Identifier"
2404
  msgstr "Identificatie"
2405
 
 
2406
  msgid "Generate Token"
2407
  msgstr ""
2408
 
 
2409
  msgid "Continue with <b>Apple</b>"
2410
  msgstr "Doorgaan met <b>Apple</b>"
2411
 
 
2412
  #, fuzzy
2413
  #| msgid "Continue with <b>Apple</b>"
2414
  msgid "Sign up with <b>Apple</b>"
2415
  msgstr "Doorgaan met <b>Apple</b>"
2416
 
 
2417
  msgid "Link account with <b>Apple</b>"
2418
  msgstr "Koppel met <b>Apple</b>"
2419
 
 
2420
  msgid "Unlink account from <b>Apple</b>"
2421
  msgstr "Ontkoppel van <b>Apple</b>"
2422
 
 
2423
  #, php-format
2424
  msgid "An error occurred when storing of the expiration timestamp : %1$s"
2425
  msgstr ""
2426
 
 
 
 
 
2427
  #, fuzzy, php-format
2428
  #| msgid "Network connection failed: %1$s"
2429
  msgid "Token generation failed: %1$s"
2430
  msgstr "Netwerkverbinding mislukt: %1$s"
2431
 
 
2432
  msgid "Please check your credentials!"
2433
  msgstr ""
2434
 
 
2435
  msgid "Private key format is not valid!"
2436
  msgstr ""
2437
 
 
2438
  #, php-format
2439
  msgid ""
2440
  "%s detected that your Apple credentials have expired. Please delete the "
2441
  "current credentials and generate new one!"
2442
  msgstr ""
2443
 
 
2444
  msgid "Apple Credentials"
2445
  msgstr ""
2446
 
 
 
2447
  #, php-format
2448
  msgid "Click on the name of your %s App."
2449
  msgstr "Klik op de naam van je %s App."
2450
 
 
2451
  #, fuzzy
2452
  #| msgid ""
2453
  #| "Select the \"Settings\" tab and scroll down to the Authentication section!"
2458
  "Selecteer het tabblad \"Instellingen\" en scroll naar beneden naar de sectie "
2459
  "Authenticatie!"
2460
 
 
 
 
2461
  #, fuzzy
2462
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2463
  msgid "Add the following URL to the \"<b>Callback URL</b>\" field:"
2464
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2465
 
 
2466
  #, fuzzy
2467
  #| msgid "Click on the \"Save Changes\" button."
2468
  msgid "Click on the \"<b>Save Changes</b>\" button."
2469
  msgstr "Klik op de knop \"Wijzigingen Opslaan\"."
2470
 
 
2471
  #, fuzzy
2472
  #| msgid ""
2473
  #| "Click on the link \"registering an application\" under the Applications "
2478
  msgstr ""
2479
  "Klik op de link \"aanvraag registreren\" onder het tabblad \"Applicaties\"."
2480
 
 
2481
  #, fuzzy
2482
  #| msgid "Enter a \"Label\" and \"Description\" for your App."
2483
  msgid "Enter a \"<b>Label</b>\" and \"<b>Description</b>\" for your App."
2484
  msgstr "Voer een \"Label\" en \"Beschrijving\" in voor je App."
2485
 
 
2486
  #, fuzzy, php-format
2487
  #| msgid "Fill \"Website\" with the url of your homepage, probably: <b>%s</b>"
2488
  msgid ""
2490
  msgstr ""
2491
  "Vul \"Website\" in met de url van je homepage, waarschijnlijk: <b>%s</b>"
2492
 
 
2493
  #, fuzzy
2494
  #| msgid ""
2495
  #| "Complete the Human test and click the \"Register my application\" button."
2499
  msgstr ""
2500
  "Voltooi de Menselijke test en klik op de knop \"Registreer mijn aanvraag\"."
2501
 
 
2502
  #, fuzzy, php-format
2503
  #| msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2504
  msgid "Fill the \"<b>Domains</b>\" field with your domain name like: <b>%s</b>"
2505
  msgstr "Vul het veld \"Domeinen\" in met je domeinnaam zoals: <b>%s</b>"
2506
 
 
2507
  #, fuzzy
2508
  #| msgid ""
2509
  #| "Select \"Read only\" at Default Access under the Authentication section."
2514
  "Selecteer \"Alleen lezen\" bij Standaard toegang onder de sectie "
2515
  "Authenticatie."
2516
 
 
2517
  #, fuzzy
2518
  #| msgid "Click on the \"Save Changes\" button."
2519
  msgid "Click on the \"<b>Save Changes</b>\" button!"
2520
  msgstr "Klik op de knop \"Wijzigingen Opslaan\"."
2521
 
 
2522
  #, fuzzy
2523
  #| msgid "Navigate to the \"Details\" tab of your Application!"
2524
  msgid "Navigate to the \"<b>Details</b>\" tab of your Application!"
2525
  msgstr "Navigeer naar het tabblad \"Details\" van je Applicatie!"
2526
 
 
2527
  #, fuzzy
2528
  #| msgid ""
2529
  #| "Here you can see your \"API Key\" and \"API Secret:\". These will be "
2535
  "Hier kun je je \"API Sleutel\" en \"API Geheim:\" zien. Deze zijn nodig in "
2536
  "de instellingen van de plugin."
2537
 
 
2538
  msgid "API Secret"
2539
  msgstr "API Geheim"
2540
 
 
2541
  msgid "Continue with <b>Disqus</b>"
2542
  msgstr "Doorgaan met <b>Disqus</b>"
2543
 
 
2544
  #, fuzzy
2545
  #| msgid "Continue with <b>Disqus</b>"
2546
  msgid "Sign up with <b>Disqus</b>"
2547
  msgstr "Doorgaan met <b>Disqus</b>"
2548
 
 
2549
  msgid "Link account with <b>Disqus</b>"
2550
  msgstr "Koppel met <b>Disqus</b>"
2551
 
 
2552
  msgid "Unlink account from <b>Disqus</b>"
2553
  msgstr "Ontkoppel van <b>Disqus</b>"
2554
 
 
2555
  #, fuzzy, php-format
2556
  #| msgid "Click on the name of your %s App."
2557
  msgid "Click on the name of the App you configured %s with."
2558
  msgstr "Klik op de naam van je %s App."
2559
 
 
2560
  #, fuzzy, php-format
2561
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
2562
  msgid "Make sure the <b>Homepage URL</b> matches with: <b>%s</b>"
2563
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
2564
 
 
 
2565
  #, fuzzy
2566
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2567
  msgid "Add the following URL to the <b>Authorization callback URL</b> field:"
2568
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2569
 
 
2570
  #, fuzzy
2571
  #| msgid "Hit update to save the changes"
2572
  msgid "Press the <b>Update application</b> button to save the changes."
2573
  msgstr "Klik op update om de wijzigingen op te slaan"
2574
 
 
2575
  #, php-format
2576
  msgid ""
2577
  "Make sure the <b>%1$s</b> tab is selected and click on the <b>%2$s</b> "
2578
  "button."
2579
  msgstr ""
2580
 
 
2581
  #, fuzzy
2582
  #| msgid ""
2583
  #| "Enter a name for your App under the \"Application name\" field, which "
2589
  "Voer een naam in voor je App in het veld \"Toepassingsnaam\", die zal "
2590
  "verschijnen als de naam van de app die om toestemming vraagt."
2591
 
 
2592
  #, fuzzy, php-format
2593
  #| msgid ""
2594
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
2597
  msgstr ""
2598
  "Vul \"Website URL\" in met de url van je homepage, waarschijnlijk: <b>%s</b>"
2599
 
 
2600
  msgid ""
2601
  "In the <b>Description</b> field you should explain what this App will be "
2602
  "used for."
2603
  msgstr ""
2604
 
 
2605
  #, fuzzy
2606
  #| msgid "Click on the \"Create New Application\" button."
2607
  msgid "Click the <b>Register application</b> button."
2608
  msgstr "Klik op de knop \"Nieuwe Applicatie Maken\"."
2609
 
 
2610
  #, fuzzy
2611
  #| msgid ""
2612
  #| "Find the necessary \"Client ID\" and \"Client Secret\" at the middle of "
2618
  "Vind de benodigde \"Client ID\" en \"Client Geheim\" in het midden van de "
2619
  "pagina, onder het tabblad \"Web Instelling\"."
2620
 
 
2621
  #, php-format
2622
  msgid ""
2623
  "<b>Important note:</b> The email address is only retrievable, if there is a "
2624
  "public email address set at the %1$s profile page%2$s!"
2625
  msgstr ""
2626
 
 
2627
  msgid "Continue with <b>GitHub</b>"
2628
  msgstr "Doorgaan met <b>GitHub</b>"
2629
 
 
2630
  #, fuzzy
2631
  msgid "Sign up with <b>GitHub</b>"
2632
  msgstr "Doorgaan met <b>GitHub</b>"
2633
 
 
2634
  msgid "Link account with <b>GitHub</b>"
2635
  msgstr "Koppel met <b>GitHub</b>"
2636
 
 
2637
  msgid "Unlink account from <b>GitHub</b>"
2638
  msgstr "Ontkoppel van <b>GitHub</b>"
2639
 
 
2640
  #, fuzzy, php-format
2641
  #| msgid "Navigate to %s"
2642
  msgid "Navigate to your %s"
2643
  msgstr "Navigeer naar %s"
2644
 
 
2645
  #, php-format
2646
  msgid "Select your %s App and click on the LINE Login section."
2647
  msgstr ""
2648
 
 
2649
  #, fuzzy
2650
  #| msgid "Add the following URL to the \"Callback URLs\" field: <b>%s</b>"
2651
  msgid "Change your URL in the \"<b>Callback URL</b>\" field:"
2652
  msgstr "Voeg de volgende URL toe aan het veld \"Callback URL's\": <b>%s</b>"
2653
 
 
2654
  #, php-format
2655
  msgid ""
2656
  "Editing Live Apps are only possible with a %s. So please make sure you own "
2657
  "one!"
2658
  msgstr ""
2659
 
 
2660
  #, fuzzy
2661
  #| msgid "Click the \"Create\" button!"
2662
  msgid "Click the \"<b>Create a new provider</b>\" button."
2663
  msgstr "Klik op de \"Maak\"-knop!"
2664
 
 
2665
  #, fuzzy
2666
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
2667
  msgid ""
2669
  "button."
2670
  msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
2671
 
 
2672
  msgid ""
2673
  "Under the \"<b>Channels</b>\" panel select the \"<b>Create a LINE Login "
2674
  "channel</b>\" option."
2675
  msgstr ""
2676
 
 
2677
  msgid "Make sure \"<b>LINE Login</b>\" is selected as \"<b>Channel type</b>\"."
2678
  msgstr ""
2679
 
 
2680
  msgid ""
2681
  "For \"<b>Provider</b>\" choose the provider from the list, that you just "
2682
  "created."
2683
  msgstr ""
2684
 
 
2685
  #, fuzzy
2686
  #| msgid "Click on \"Save\""
2687
  msgid "Select your \"<b>Region</b>\"."
2688
  msgstr "Klik op \"Opslaan\""
2689
 
 
2690
  msgid ""
2691
  "Add your \"<b>Channel icon</b>\", \"<b>Channel name</b>\" and \"<b>Channel "
2692
  "description</b>\". These will appear on your Consent Screen!"
2693
  msgstr ""
2694
 
 
2695
  #, fuzzy
2696
  #| msgid "At the \"Type\" make sure \"Web\" is selected!"
2697
  msgid "At the \"<b>App types</b>\" select the \"<b>Web app</b>\" option."
2698
  msgstr "Zorg er bij \"Type\" \"Web\" is geselecteerd!"
2699
 
 
2700
  #, fuzzy
2701
  #| msgid ""
2702
  #| "Read and agree the \"API Terms of Use\" then click the \"Create App\" "
2708
  "Lees en accordeer de \"API Gebruiksvoorwaarden\" en klik dan op de knop "
2709
  "\"Maak App\"!"
2710
 
 
2711
  msgid ""
2712
  "Scroll down to \"<b>OpenID Connect</b>\", click the \"<b>Apply</b>\" button "
2713
  "near the \"<b>Email address permission</b>\" label."
2714
  msgstr ""
2715
 
 
2716
  #, fuzzy
2717
  #| msgid ""
2718
  #| "Complete the Human test and click the \"Register my application\" button."
2720
  msgstr ""
2721
  "Voltooi de Menselijke test en klik op de knop \"Registreer mijn aanvraag\"."
2722
 
 
2723
  msgid ""
2724
  "Scroll up to the top of the page and choose the \"<b>LINE Login</b>\" "
2725
  "section."
2726
  msgstr ""
2727
 
 
2728
  msgid ""
2729
  "Under your App name click the \"<b>Developing</b>\" button and publish your "
2730
  "Channel!"
2731
  msgstr ""
2732
 
 
2733
  #, fuzzy
2734
  #| msgid ""
2735
  #| "On the top of the page, you will find the necessary \"Client ID\" and "
2742
  "Bovenaan de pagina vind je de nodige \"Client ID\" en \"Client Geheim\"! "
2743
  "Deze zijn nodig in de instellingen van de plugin."
2744
 
 
2745
  msgid "Channel ID"
2746
  msgstr ""
2747
 
 
2748
  #, fuzzy
2749
  #| msgid "Client Secret"
2750
  msgid "Channel Secret"
2751
  msgstr "Client Geheim"
2752
 
 
2753
  #, fuzzy
2754
  #| msgid "Continue with <b>LinkedIn</b>"
2755
  msgid "Continue with <b>Line</b>"
2756
  msgstr "Doorgaan met <b>LinkedIn</b>"
2757
 
 
2758
  #, fuzzy
2759
  #| msgid "Continue with <b>LinkedIn</b>"
2760
  msgid "Sign up with <b>Line</b>"
2761
  msgstr "Doorgaan met <b>LinkedIn</b>"
2762
 
 
2763
  #, fuzzy
2764
  #| msgid "Link account with <b>LinkedIn</b>"
2765
  msgid "Link account with <b>Line</b>"
2766
  msgstr "Koppel met <b>LinkedIn</b>"
2767
 
 
2768
  #, fuzzy
2769
  #| msgid "Unlink account from <b>LinkedIn</b>"
2770
  msgid "Unlink account from <b>Line</b>"
2771
  msgstr "Ontkoppel van <b>LinkedIn</b>"
2772
 
 
2773
  msgid "Click on your App and go to the \"<b>Auth</b>\" tab."
2774
  msgstr ""
2775
 
 
 
 
2776
  #, fuzzy
2777
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2778
  msgid "Add the following URL to the \"<b>Redirect URLs</b>\" field:"
2779
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2780
 
 
 
 
 
 
2781
  #, fuzzy
2782
  #| msgid "Hit update to save the changes"
2783
  msgid "Click on \"<b>Update</b>\" to save the changes"
2784
  msgstr "Klik op update om de wijzigingen op te slaan"
2785
 
 
2786
  #, fuzzy
2787
  #| msgid "Locate the \"Create app\" button and click on it."
2788
  msgid "Locate the \"<b>Create app</b>\" button and click on it."
2789
  msgstr "Zoek de knop \"App maken\" op en klik erop."
2790
 
 
2791
  msgid "Enter the name of your App to the \"App name\" field."
2792
  msgstr "Voer de naam van je App in het veld \"App name\" in."
2793
 
 
2794
  #, php-format
2795
  msgid ""
2796
  "Find your company page in the \"<b>Company</b>\" field. If you don't have "
2797
  "one yet, create new one at: %s"
2798
  msgstr ""
2799
 
 
2800
  #, fuzzy
2801
  #| msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
2802
  msgid ""
2803
  "Enter your \"<b>Privacy policy URL</b>\" and upload an \"<b>App logo</b>\""
2804
  msgstr "Vul \"Privacy policy URL\" en \"User agreement URL\" in."
2805
 
 
2806
  #, fuzzy
2807
  #| msgid ""
2808
  #| "Read and agree the \"API Terms of Use\" then click the \"Create App\" "
2814
  "Lees en accordeer de \"API Gebruiksvoorwaarden\" en klik dan op de knop "
2815
  "\"Maak App\"!"
2816
 
 
2817
  #, fuzzy
2818
  #| msgid "You will end up in the App setting area. Click on the Auth tab."
2819
  msgid ""
2822
  msgstr ""
2823
  "Je komt dan in de sectie App instellingen terecht. Klik op het tabblad Auth."
2824
 
 
2825
  #, php-format
2826
  msgid "Find <b>\"%s\"</b> and click \"<b>Select</b>\"."
2827
  msgstr ""
2828
 
 
2829
  msgid ""
2830
  "A modal will appear where you need to tick the \"<b>I have read and agree to "
2831
  "these terms</b>\" checkbox and finally press the \"<b>Add product</b>\" "
2832
  "button."
2833
  msgstr ""
2834
 
 
2835
  #, fuzzy
2836
  #| msgid "Click on the Create button"
2837
  msgid "Click on the \"<b>Auth</b>\" tab."
2838
  msgstr "Klik op de knop Aanmaken"
2839
 
 
2840
  #, fuzzy
2841
  #| msgid ""
2842
  #| "Find \"OAuth 2.0 settings\" section and add the following URL to the "
2848
  "Zoek de sectie \"OAuth 2.0-instellingen\" en voeg de volgende URL toe aan "
2849
  "het veld \"Omleidings-URLs:\": <b>%s</b>"
2850
 
 
2851
  #, fuzzy
2852
  #| msgid ""
2853
  #| "Find the necessary \"Client ID\" and \"Client Secret\" under the "
2859
  "Zoek de benodigde \"Client ID\" en \"Client Geheim\" onder de sectie "
2860
  "Applicatie inloggegevens, op het tabblad Auth."
2861
 
 
2862
  msgid "Continue with <b>LinkedIn</b>"
2863
  msgstr "Doorgaan met <b>LinkedIn</b>"
2864
 
 
2865
  #, fuzzy
2866
  #| msgid "Continue with <b>LinkedIn</b>"
2867
  msgid "Sign up with <b>LinkedIn</b>"
2868
  msgstr "Doorgaan met <b>LinkedIn</b>"
2869
 
 
2870
  msgid "Link account with <b>LinkedIn</b>"
2871
  msgstr "Koppel met <b>LinkedIn</b>"
2872
 
 
2873
  msgid "Unlink account from <b>LinkedIn</b>"
2874
  msgstr "Ontkoppel van <b>LinkedIn</b>"
2875
 
 
2876
  #, fuzzy, php-format
2877
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2878
  msgid "Log in with your %s credentials if you are not logged in yet."
2879
  msgstr "Log in met je %s inloggegevens als je nog niet ingelogd bent"
2880
 
 
 
2881
  msgid "Click on the Search bar and search for \"<b>App registrations</b>\"."
2882
  msgstr ""
2883
 
 
2884
  #, fuzzy, php-format
2885
  #| msgid "Click on the App with App ID: %s"
2886
  msgid "Click on the App with Application (client) ID: <b>%s</b>"
2887
  msgstr "Klik op de App met App ID: %s"
2888
 
 
2889
  #, fuzzy
2890
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2891
  msgid "Click on the link next to the Redirect URIs label."
2892
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2893
 
 
2894
  #, fuzzy
2895
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2896
  msgid "Add the following URL to the \"<b>Redirect URIs</b>\" field:"
2897
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2898
 
 
2899
  #, fuzzy, php-format
2900
  #| msgid "Log in with your %s credentials if you are not logged in yet"
2901
  msgid ""
2903
  "account."
2904
  msgstr "Log in met je %s inloggegevens als je nog niet ingelogd bent"
2905
 
 
2906
  #, fuzzy
2907
  #| msgid "Click on \"Save\""
2908
  msgid "Click on \"<b>New registration</b>\"."
2909
  msgstr "Klik op \"Opslaan\""
2910
 
 
2911
  #, fuzzy
2912
  #| msgid "Fill the \"Domains\" field with your domain name like: <b>%s</b>"
2913
  msgid "Fill the \"<b>Name</b>\" field with your App Name."
2914
  msgstr "Vul het veld \"Domeinen\" in met je domeinnaam zoals: <b>%s</b>"
2915
 
 
2916
  msgid ""
2917
  "Choose \"<b>Personal Microsoft accounts only</b>\" from the Supported "
2918
  "account types."
2919
  msgstr ""
2920
 
 
2921
  #, fuzzy
2922
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2923
  msgid "Add the following URL to the \"<b>Redirect URI</b>\" field:"
2924
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2925
 
 
2926
  #, fuzzy
2927
  #| msgid "Click on the \"Create New Application\" button."
2928
  msgid "Create your App with the \"<b>Register</b>\" button."
2929
  msgstr "Klik op de knop \"Nieuwe Applicatie Maken\"."
2930
 
 
2931
  #, fuzzy
2932
  #| msgid "Click on the Create button"
2933
  msgid "You land on the \"<b>Overview</b>\" page."
2934
  msgstr "Klik op de knop Aanmaken"
2935
 
 
2936
  msgid ""
2937
  "Copy the \"<b>Application (client) ID</b>\", this will be the <b>Application "
2938
  "(client) ID</b> in the plugin settings."
2939
  msgstr ""
2940
 
 
2941
  msgid ""
2942
  "Click on the link named \"<b>Add a certificate or secret</b>\" next to the "
2943
  "Client credentials label."
2944
  msgstr ""
2945
 
 
2946
  #, fuzzy
2947
  #| msgid "Click on \"Save\""
2948
  msgid "Click on \"<b>New client secret</b>\"."
2949
  msgstr "Klik op \"Opslaan\""
2950
 
 
2951
  #, fuzzy
2952
  #| msgid "Enter a \"Description\" for your app!"
2953
  msgid "Fill the \"<b>Description</b>\" field."
2954
  msgstr "Vul een \"Beschrijving\" in voor je app!"
2955
 
 
2956
  #, fuzzy
2957
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
2958
  msgid "Set the expiration date at the \"<b>Expires</b>\" field."
2959
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
2960
 
 
2961
  msgid "Then create your Client Secret with the \"<b>Add</b>\" button."
2962
  msgstr ""
2963
 
 
2964
  #, fuzzy
2965
  #| msgid ""
2966
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
2972
  "Hier kun je je \"Client ID\" en \"Client Geheim\" zien. Deze zijn nodig in "
2973
  "de instellingen van de plugin."
2974
 
 
2975
  #, fuzzy
2976
  #| msgid "Application ID"
2977
  msgid "Application (client) ID"
2978
  msgstr "Applicatie-ID"
2979
 
 
2980
  #, fuzzy
2981
  #| msgid "Client Secret"
2982
  msgid "Client secret"
2983
  msgstr "Client Geheim"
2984
 
 
2985
  #, fuzzy
2986
  #| msgid "Continue with <b>Yahoo</b>"
2987
  msgid "Continue with <b>Microsoft</b>"
2988
  msgstr "Doorgaan met <b>Yahoo</b>"
2989
 
 
2990
  #, fuzzy
2991
  #| msgid "Continue with <b>Yahoo</b>"
2992
  msgid "Sign up with <b>Microsoft</b>"
2993
  msgstr "Doorgaan met <b>Yahoo</b>"
2994
 
 
2995
  #, fuzzy
2996
  #| msgid "Link account with <b>Yahoo</b>"
2997
  msgid "Link account with <b>Microsoft</b>"
2998
  msgstr "Koppel met <b>Yahoo</b>"
2999
 
 
3000
  #, fuzzy
3001
  #| msgid "Unlink account from <b>Yahoo</b>"
3002
  msgid "Unlink account from <b>Microsoft</b>"
3003
  msgstr "Ontkoppel van <b>Yahoo</b>"
3004
 
 
 
3005
  msgid "There is a Sandbox/Live switch. Make sure \"<b>Live</b>\" is selected!"
3006
  msgstr ""
3007
 
 
3008
  #, fuzzy, php-format
3009
  #| msgid "Click on the name of your %s App."
3010
  msgid "Click on the name of your %s App, under the REST API apps section."
3011
  msgstr "Klik op de naam van je %s App."
3012
 
 
3013
  #, fuzzy
3014
  #| msgid ""
3015
  #| "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" "
3021
  "Scroll naar beneden naar \"LIVE APP INSTELLINGEN\", zoek in de rubriek "
3022
  "\"Live Return URL\" en klik op \"Weergeven\"."
3023
 
 
 
3024
  #, fuzzy
3025
  #| msgid "Add the following URL to the \"Live Return URL\" field <b>%s</b> "
3026
  msgid "Add the following URL to the \"<b>Live Return URL</b>\" field:"
3027
  msgstr "Voeg de volgende URL toe aan het \"Live Return URL\" veld <b>%s</b> "
3028
 
 
3029
  msgid "Click on \"Save\""
3030
  msgstr "Klik op \"Opslaan\""
3031
 
 
3032
  #, php-format
3033
  msgid ""
3034
  "Editing Live Apps are only possible with a %s. If you own one, go to the 4. "
3035
  "step, if not click on the link!"
3036
  msgstr ""
3037
 
 
3038
  msgid "Click on Registration and create a Business account."
3039
  msgstr ""
3040
 
 
3041
  msgid "If you are done, follow the guide from the 5. step."
3042
  msgstr ""
3043
 
 
3044
  #, fuzzy, php-format
3045
  #| msgid "Log in with your %s credentials if you are not logged in."
3046
  msgid "Log in with your %s credentials."
3047
  msgstr "Log in met je %s inloggegevens als je niet ingelogd bent."
3048
 
 
3049
  #, fuzzy
3050
  #| msgid "Click on the \"Create an App\" button on the top right corner."
3051
  msgid "Click the \"<b>Create App</b>\" button under the REST API apps section."
3052
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
3053
 
 
3054
  #, fuzzy
3055
  #| msgid "Fill the \"App Name\" field and click \"Create App\" button."
3056
  msgid ""
3057
  "Fill the \"<b>App Name</b>\" field and click \"<b>Create App</b>\" button."
3058
  msgstr "Vul het veld \"App Naam\" in en klik op de knop \"Maak App\"."
3059
 
 
3060
  #, fuzzy
3061
  #| msgid ""
3062
  #| "Scroll down to \"LIVE APP SETTINGS\", search the \"Live Return URL\" "
3068
  "Scroll naar beneden naar \"LIVE APP INSTELLINGEN\", zoek in de rubriek "
3069
  "\"Live Return URL\" en klik op \"Weergeven\"."
3070
 
 
3071
  #, fuzzy
3072
  #| msgid ""
3073
  #| "Scroll down to \"App feature options\" section and tick \"Log In with "
3079
  "Scroll naar beneden naar de sectie \"App functieopties\" en vink \"Aanmelden "
3080
  "met PayPal\" aan."
3081
 
 
3082
  #, fuzzy
3083
  #| msgid ""
3084
  #| "Click \"Advanced Options\" which can be found at the end of text after "
3090
  "Klik op \"Geavanceerde Opties\" die je kunt vinden aan het einde van de "
3091
  "tekst na \"Verbinding maken met PayPal (voorheen ingelogd met PayPal)\"."
3092
 
 
3093
  #, fuzzy
3094
  #| msgid "Tick \"Full name\"."
3095
  msgid "Tick \"<b>Full name</b>\"."
3096
  msgstr "Vink \"Volledige naam\" aan."
3097
 
 
3098
  #, fuzzy
3099
  #| msgid ""
3100
  #| "\"Email address\" now requires an App Review by PayPal. To get the email "
3116
  "Zorg er tot dan voor dat de e-mailscope niet is \"Ingeschakeld\" in ons "
3117
  "PayPal-instellingen-tabblad."
3118
 
 
3119
  #, fuzzy
3120
  #| msgid "Fill \"Privacy policy URL\" and \"User agreement URL\"."
3121
  msgid "Fill \"<b>Privacy policy URL</b>\" and \"<b>User agreement URL</b>\"."
3122
  msgstr "Vul \"Privacy policy URL\" en \"User agreement URL\" in."
3123
 
 
3124
  #, fuzzy
3125
  #| msgid ""
3126
  #| "Scroll up to \"LIVE API CREDENTIALS\" section and find the necessary "
3135
  "\" en \"Geheim\"! ( Zorg ervoor dat je in \"Live\" modus bent en niet in "
3136
  "\"Sandbox\". )"
3137
 
 
3138
  msgid "Secret"
3139
  msgstr "Geheim"
3140
 
 
3141
  msgid "Email scope"
3142
  msgstr "E-mail scope"
3143
 
 
3144
  msgid "Disable, when you have no rights for email address."
3145
  msgstr "Uitschakelen, wanneer je geen rechten hebt voor e-mailadres."
3146
 
 
3147
  msgid "Continue with <b>PayPal</b>"
3148
  msgstr "Doorgaan met <b>PayPal</b>"
3149
 
 
3150
  #, fuzzy
3151
  #| msgid "Continue with <b>PayPal</b>"
3152
  msgid "Sign up with <b>PayPal</b>"
3153
  msgstr "Doorgaan met <b>PayPal</b>"
3154
 
 
3155
  msgid "Link account with <b>PayPal</b>"
3156
  msgstr "Koppel met <b>PayPal</b>"
3157
 
 
3158
  msgid "Unlink account from <b>PayPal</b>"
3159
  msgstr "Ontkoppel van <b>PayPal</b>"
3160
 
 
3161
  #, fuzzy
3162
  #| msgid "Click on the Manage button at the App"
3163
  msgid "Click on the \"<b>Manage</b>\" button next to the associated App."
3164
  msgstr "Klik op de knop Beheer bij de App"
3165
 
 
3166
  #, fuzzy
3167
  #| msgid "Go to the Settings menu"
3168
  msgid "Go to the \"<b>Settings</b>\" menu"
3169
  msgstr "Ga naar het menu Instellingen"
3170
 
 
 
3171
  #, fuzzy
3172
  #| msgid ""
3173
  #| "Add the following URL to the \"Authorized redirect URI:\" field: <b>%s</b>"
3176
  "Voeg de volgende URL toe aan het veld \"Geautoriseerde omleidings-URI:\": <b>"
3177
  "%s</b>"
3178
 
 
3179
  #, fuzzy
3180
  #| msgid "Locate the \"Create app\" button and click on it."
3181
  msgid "Locate the blue \"<b>Create app</b>\" button and click on it."
3182
  msgstr "Zoek de knop \"App maken\" op en klik erop."
3183
 
 
3184
  #, fuzzy
3185
  #| msgid "Enter the title of your app and select \"Website\"."
3186
  msgid ""
3188
  "platform."
3189
  msgstr "Voer de titel van je app in en selecteer \"Website\"."
3190
 
 
3191
  #, fuzzy, php-format
3192
  #| msgid ""
3193
  #| "Fill \"Site address\" with the url of your homepage, probably: <b>%s</b>"
3197
  msgstr ""
3198
  "Vul \"Siteadres\" in met de url van je homepage, waarschijnlijk: <b>%s</b>"
3199
 
 
3200
  #, fuzzy, php-format
3201
  #| msgid "Fill the \"Base domain\" field with your domain, probably: <b>%s</b>"
3202
  msgid ""
3204
  msgstr ""
3205
  "Vul het veld \"Basisdomein\" in met je domein, waarschijnlijk: <b>%s</b>"
3206
 
 
3207
  #, fuzzy
3208
  #| msgid "When all fields are filled, click \"Save\"."
3209
  msgid "When all fields are filled, click the \"<b>Upload app</b>\" button."
3210
  msgstr "Wanneer alle velden zijn ingevuld, klik je op \"Opslaan\"."
3211
 
 
3212
  #, fuzzy
3213
  #| msgid "Fill the form for your app and upload an app icon then hit Save."
3214
  msgid ""
3218
  "Vul het formulier in voor je app en upload een app-icoontje en klik "
3219
  "vervolgens op Opslaan."
3220
 
 
3221
  #, fuzzy
3222
  #| msgid "Pick Settings at the left-hand menu "
3223
  msgid "Pick <b>Settings</b> at the left-hand menu "
3224
  msgstr "Kies Instellingen in het linker menu "
3225
 
 
3226
  #, fuzzy
3227
  #| msgid "Save your app"
3228
  msgid "<b>Save</b> your app"
3229
  msgstr "Bewaar je app"
3230
 
 
3231
  #, fuzzy
3232
  #| msgid ""
3233
  #| "Find the necessary Application ID and Secure key at the top of the "
3239
  "Vind de benodigde Applicatie-ID en Secure sleutel bovenaan de Instellingen-"
3240
  "pagina waar je zojuist op de Opslaan knop hebt gedrukt."
3241
 
 
3242
  msgid "Secure key"
3243
  msgstr "Beveiligde sleutel"
3244
 
 
3245
  msgid "Continue with <b>VK</b>"
3246
  msgstr "Doorgaan met <b>VK</b>"
3247
 
 
3248
  #, fuzzy
3249
  #| msgid "Continue with <b>VK</b>"
3250
  msgid "Sign up with <b>VK</b>"
3251
  msgstr "Doorgaan met <b>VK</b>"
3252
 
 
3253
  msgid "Link account with <b>VK</b>"
3254
  msgstr "Koppel met <b>VK</b>"
3255
 
 
3256
  msgid "Unlink account from <b>VK</b>"
3257
  msgstr "Ontkoppel van <b>VK</b>"
3258
 
 
3259
  #, fuzzy
3260
  #| msgid "Click \"Manage Settings\" under the Tools section!"
3261
  msgid "Click \"<b>Manage Settings</b>\" under the Tools section!"
3262
  msgstr "Klik op \"Instellingen Beheren\" onder de sectie \"Gereedschappen\"!"
3263
 
 
3264
  #, fuzzy
3265
  #| msgid "Click on the \"Create New Application\" button."
3266
  msgid "Click on the \"<b>Create New Application</b>\" button."
3267
  msgstr "Klik op de knop \"Nieuwe Applicatie Maken\"."
3268
 
 
3269
  #, fuzzy
3270
  #| msgid "Enter a \"Name\" and \"Description\" for your App."
3271
  msgid "Enter a \"<b>Name</b>\" and \"<b>Description</b>\" for your App."
3272
  msgstr "Voer een \"Naam\" en \"Beschrijving\" in voor je app."
3273
 
 
3274
  #, fuzzy, php-format
3275
  #| msgid ""
3276
  #| "Fill \"Website URL\" with the url of your homepage, probably: <b>%s</b>"
3280
  msgstr ""
3281
  "Vul \"Website URL\" in met de url van je homepage, waarschijnlijk: <b>%s</b>"
3282
 
 
3283
  msgid "You can leave the \"Javascript Origins\" field blank!"
3284
  msgstr "Je kunt het veld \"Javascript Origins\" leeg laten!"
3285
 
 
3286
  msgid "Complete the human verification test."
3287
  msgstr "Voltooi de menselijke verificatietest."
3288
 
 
3289
  #, fuzzy
3290
  #| msgid "At the \"Type\" make sure \"Web\" is selected!"
3291
  msgid "At the \"<b>Type</b>\" make sure \"<b>Web</b>\" is selected!"
3292
  msgstr "Zorg er bij \"Type\" \"Web\" is geselecteerd!"
3293
 
 
3294
  #, fuzzy
3295
  #| msgid "Click the \"Create\" button!"
3296
  msgid "Click the \"<b>Create</b>\" button!"
3297
  msgstr "Klik op de \"Maak\"-knop!"
3298
 
 
3299
  #, fuzzy
3300
  #| msgid ""
3301
  #| "Click the name of your App either in the Breadcrumb navigation or next to "
3306
  msgstr ""
3307
  "Klik op de naam van je App in de broodkruimel-navigatie of naast Bewerken!"
3308
 
 
3309
  #, fuzzy
3310
  #| msgid ""
3311
  #| "Here you can see your \"Client ID\" and \"Client Secret\". These will be "
3317
  "Hier kun je je \"Client ID\" en \"Client Geheim\" zien. Deze zijn nodig in "
3318
  "de instellingen van de plugin."
3319
 
 
3320
  msgid "Continue with <b>WordPress.com</b>"
3321
  msgstr "Doorgaan met <b>WordPress.com</b>"
3322
 
 
3323
  #, fuzzy
3324
  #| msgid "Continue with <b>WordPress.com</b>"
3325
  msgid "Sign up with <b>WordPress.com</b>"
3326
  msgstr "Doorgaan met <b>WordPress.com</b>"
3327
 
 
3328
  msgid "Link account with <b>WordPress.com</b>"
3329
  msgstr "Koppel met <b>WordPress.com</b>"
3330
 
 
3331
  msgid "Unlink account from <b>WordPress.com</b>"
3332
  msgstr "Ontkoppel van <b>WordPress.com</b>"
3333
 
 
3334
  msgid "Click on the App which has its credentials associated with the plugin."
3335
  msgstr "Klik op de App met de inloggegevens die aan de plugin zijn gekoppeld."
3336
 
 
 
3337
  #, fuzzy
3338
  #| msgid "Add the following URL to the \"Redirect URLs\" field <b>%s</b> "
3339
  msgid "Add the following URL to the \"<b>Redirect URI(s)</b>\" field:"
3340
  msgstr "Voeg de volgende URL toe aan het veld \"Omleidings-URLs\" <b>%s</b> "
3341
 
 
3342
  #, fuzzy
3343
  #| msgid "Click on the \"Create an App\" button on the top right corner."
3344
  msgid "Click on the \"<b>Create an App</b>\" button on the top right corner."
3345
  msgstr "Klik op de knop \"Maak een App\" in de rechterbovenhoek."
3346
 
 
3347
  #, fuzzy
3348
  #| msgid ""
3349
  #| "Fill the \"Application Name\" and select \"Web Application\" at "
3355
  "Vul de \"Applicatie Naam\" in en selecteer \"Web Applicatie\" bij "
3356
  "\"Applicatie Type\"."
3357
 
 
3358
  #, fuzzy
3359
  #| msgid "Enter a \"Description\" for your app!"
3360
  msgid "Enter a \"<b>Description</b>\" for your app!"
3361
  msgstr "Vul een \"Beschrijving\" in voor je app!"
3362
 
 
3363
  #, fuzzy, php-format
3364
  #| msgid "Enter the URL of your site to the \"Home Page URL\" field: <b>%s</b>"
3365
  msgid ""
3366
  "Enter the URL of your site to the \"<b>Home Page URL</b>\" field: <b>%s</b>"
3367
  msgstr "Voer de URL van je site in het veld \"Home Page URL\" in: <b>%s</b>"
3368
 
 
3369
  msgid ""
3370
  "Under the \"<b>API Permissions</b>\" you should select \"<b>OpenID Connect "
3371
  "Permissions</b>\" with both \"<b>Email</b>\" and \"<b>Profile</b>\" enabled."
3372
  msgstr ""
3373
 
 
3374
  #, fuzzy
3375
  #| msgid "Click \"Create App\"."
3376
  msgid "Click \"<b>Create App</b>\"."
3377
  msgstr "Klik op \"Maak App\"."
3378
 
 
3379
  #, fuzzy
3380
  #| msgid ""
3381
  #| "On the top of the page, you will find the necessary \"Client ID\" and "
3387
  "Bovenaan de pagina vind je de nodige \"Client ID\" en \"Client Geheim\"! "
3388
  "Deze zijn nodig in de instellingen van de plugin."
3389
 
 
3390
  msgid "Continue with <b>Yahoo</b>"
3391
  msgstr "Doorgaan met <b>Yahoo</b>"
3392
 
 
3393
  #, fuzzy
3394
  #| msgid "Continue with <b>Yahoo</b>"
3395
  msgid "Sign up with <b>Yahoo</b>"
3396
  msgstr "Doorgaan met <b>Yahoo</b>"
3397
 
 
3398
  msgid "Link account with <b>Yahoo</b>"
3399
  msgstr "Koppel met <b>Yahoo</b>"
3400
 
 
3401
  msgid "Unlink account from <b>Yahoo</b>"
3402
  msgstr "Ontkoppel van <b>Yahoo</b>"
3403
 
 
3404
  #, php-format
3405
  msgid "Required permission: %1$s"
3406
  msgstr "Vereiste toestemming: %1$s"
3407
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3408
  msgid "OR"
3409
  msgstr "OF"
3410
 
 
 
 
 
3411
  msgid "Social accounts"
3412
  msgstr "Social accounts"
3413
 
languages/nextend-facebook-connect-pt_BR.mo CHANGED
Binary file
languages/nextend-facebook-connect-pt_BR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
- "Project-Id-Version: ss3\n"
4
- "POT-Creation-Date: 2021-09-08 13:30+0200\n"
5
- "PO-Revision-Date: 2021-09-08 13:30+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\n"
@@ -17,6 +17,7 @@ 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\n"
21
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
22
  "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
@@ -26,11 +27,9 @@ msgstr ""
26
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
27
  "compat\n"
28
 
29
- #: nextend-facebook-connect/NSL/GDPR.php:34
30
  msgid "What personal data we collect and why we collect it"
31
  msgstr "Quais dados pessoais coletamos e por que os coletamos"
32
 
33
- #: nextend-facebook-connect/NSL/GDPR.php:35
34
  #, php-format
35
  msgid ""
36
  "%1$s collects data when a visitor register, login or link the account with "
@@ -45,11 +44,9 @@ msgstr ""
45
  "acesso. Também pode coletar fotos de perfil e mais campos com o recurso de "
46
  "dados de sincronização do complemento pro."
47
 
48
- #: nextend-facebook-connect/NSL/GDPR.php:37
49
  msgid "Who we share your data with"
50
  msgstr "Com quem compartilhamos seus dados"
51
 
52
- #: nextend-facebook-connect/NSL/GDPR.php:38
53
  #, php-format
54
  msgid ""
55
  "%1$s stores the personal data on your site and does not share it with anyone "
@@ -60,11 +57,9 @@ msgstr ""
60
  "ninguém, exceto o token de acesso usado para a comunicação autenticada com "
61
  "os provedores sociais."
62
 
63
- #: nextend-facebook-connect/NSL/GDPR.php:40
64
  msgid "Does the plugin share personal data with third parties"
65
  msgstr "O plugin compartilha dados pessoais com terceiros?"
66
 
67
- #: nextend-facebook-connect/NSL/GDPR.php:41
68
  #, php-format
69
  msgid ""
70
  "%1$s use the access token what the social provider gave to communicate with "
@@ -74,11 +69,9 @@ msgstr ""
74
  "os provedores para verificar a conta e acessar com segurança os dados "
75
  "pessoais."
76
 
77
- #: nextend-facebook-connect/NSL/GDPR.php:43
78
  msgid "How long we retain your data"
79
  msgstr "Por quanto tempo retemos seus dados"
80
 
81
- #: nextend-facebook-connect/NSL/GDPR.php:44
82
  #, php-format
83
  msgid ""
84
  "%1$s removes the collected personal data when the user deleted from "
@@ -87,11 +80,9 @@ msgstr ""
87
  "%1$s Remove os dados pessoais coletados quando o usuário é excluído do "
88
  "WordPress."
89
 
90
- #: nextend-facebook-connect/NSL/GDPR.php:46
91
  msgid "Does the plugin use personal data collected by others?"
92
  msgstr "O plugin usa dados pessoais coletados por outras pessoas?"
93
 
94
- #: nextend-facebook-connect/NSL/GDPR.php:47
95
  #, php-format
96
  msgid ""
97
  "%1$s use the personal data collected by the social providers to create "
@@ -100,11 +91,9 @@ msgstr ""
100
  "%1$s Usa os dados pessoais coletados pelos provedores sociais para criar uma "
101
  "conta em seu site quando o visitante autorizá-lo."
102
 
103
- #: nextend-facebook-connect/NSL/GDPR.php:49
104
  msgid "Does the plugin store things in the browser?"
105
  msgstr "O plugin armazena coisas no navegador?"
106
 
107
- #: nextend-facebook-connect/NSL/GDPR.php:50
108
  #, php-format
109
  msgid ""
110
  "Yes, %1$s must create a cookie for visitors who use the social login "
@@ -115,16 +104,12 @@ msgstr ""
115
  "autorização de login social. Esse cookie exigia que cada provedor protegesse "
116
  "a comunicação e redirecionasse o usuário de volta ao último local."
117
 
118
- #: nextend-facebook-connect/NSL/GDPR.php:52
119
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
120
  msgstr "O plugin coleta dados de telemetria, direta ou indiretamente?"
121
 
122
- #: nextend-facebook-connect/NSL/GDPR.php:53
123
- #: nextend-facebook-connect/NSL/GDPR.php:56
124
  msgid "No"
125
  msgstr "Não"
126
 
127
- #: nextend-facebook-connect/NSL/GDPR.php:55
128
  msgid ""
129
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
130
  "third party?"
@@ -132,59 +117,37 @@ msgstr ""
132
  "O plugin carrega JavaScript, rastreia pixels ou incorpora iframes de "
133
  "terceiros?"
134
 
135
- #: nextend-facebook-connect/NSL/GDPR.php:99
136
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:57
137
  msgid "User"
138
  msgstr "Usuário"
139
 
140
- #: nextend-facebook-connect/admin/admin.php:206
141
  #, php-format
142
  msgid "%s needs json_decode function."
143
  msgstr "%s precisa da função json_decode."
144
 
145
- #: nextend-facebook-connect/admin/admin.php:206
146
  msgid "Please contact your server administrator and ask for solution!"
147
  msgstr ""
148
  "Entre em contato com o seu administrador do servidor e peça uma solução!"
149
 
150
- #: nextend-facebook-connect/admin/admin.php:250
151
- #: nextend-facebook-connect/admin/admin.php:280
152
  msgid "Settings saved."
153
  msgstr "Configurações salvas."
154
 
155
- #: nextend-facebook-connect/admin/admin.php:259
156
  #, fuzzy
157
  #| msgid "The authorization was successful"
158
  msgid "The activation was successful"
159
  msgstr "A autorização foi bem sucedida"
160
 
161
- #: nextend-facebook-connect/admin/admin.php:270
162
  #, fuzzy
163
  #| msgid "Deauthorize completed."
164
  msgid "Deactivate completed."
165
  msgstr "Desautorização concluída."
166
 
167
- #: nextend-facebook-connect/admin/admin.php:449
168
- #: nextend-facebook-connect/admin/templates-provider/menu.php:15
169
- #: nextend-facebook-connect/admin/templates/providers.php:89
170
- #: nextend-facebook-connect/admin/templates/providers.php:101
171
- #: nextend-facebook-connect/admin/templates/settings/comment.php:28
172
  msgid "Settings"
173
  msgstr "Configurações"
174
 
175
- #: nextend-facebook-connect/admin/admin.php:532
176
- #: nextend-facebook-connect/includes/oauth2.php:143
177
- #: nextend-facebook-connect/includes/oauth2.php:288
178
- #: nextend-facebook-connect/providers/facebook/facebook-client.php:84
179
- #: nextend-facebook-connect/providers/twitter/twitter-client.php:165
180
- #: nextend-social-login-pro/providers/apple/apple-client.php:87
181
- #: nextend-social-login-pro/providers/github/github-client.php:87
182
  #, php-format
183
  msgid "Unexpected response: %s"
184
  msgstr "Resposta inesperada: %s"
185
 
186
- #: nextend-facebook-connect/admin/admin.php:593
187
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:21
188
  #, php-format
189
  msgid ""
190
  "%s detected that your login url changed. You must update the Oauth redirect "
@@ -193,16 +156,12 @@ msgstr ""
193
  "%s detectou que sua url de login mudou. Você deve atualizar as URIs de "
194
  "redirecionamento do Oauth nas aplicações sociais relacionados."
195
 
196
- #: nextend-facebook-connect/admin/admin.php:594
197
- #: nextend-social-login-pro/providers/apple/apple.php:294
198
  msgid "Fix Error"
199
  msgstr "Corrigir erro"
200
 
201
- #: nextend-facebook-connect/admin/admin.php:594
202
  msgid "Oauth Redirect URI"
203
  msgstr "URI de Redirecionamento do OAuth"
204
 
205
- #: nextend-facebook-connect/admin/admin.php:611
206
  #, php-format
207
  msgid ""
208
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
@@ -211,15 +170,12 @@ msgstr ""
211
  "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para "
212
  "mostrar botões de Login Social no formulário de login %2$s!"
213
 
214
- #: nextend-facebook-connect/admin/admin.php:612
215
  msgid "Dismiss and check Pro Addon"
216
  msgstr "Dispensar e verificar Addon Pro"
217
 
218
- #: nextend-facebook-connect/admin/admin.php:612
219
  msgid "Dismiss"
220
  msgstr "Dispensar"
221
 
222
- #: nextend-facebook-connect/admin/admin.php:618
223
  #, php-format
224
  msgid ""
225
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
@@ -230,17 +186,14 @@ msgstr ""
230
  "página para fluxo de registro</b>\" e \"<b>página do proxy uri do "
231
  "redirecionamento OAuth</b>\" em %1$s para funcionar corretamente."
232
 
233
- #: nextend-facebook-connect/admin/admin.php:619
234
  msgid "Fix now"
235
  msgstr "Corrigir erro"
236
 
237
- #: nextend-facebook-connect/admin/admin.php:643
238
  #, fuzzy
239
  #| msgid "Activate Pro Addon"
240
  msgid "Activate your Pro Addon"
241
  msgstr "Ativar Addon Pro"
242
 
243
- #: nextend-facebook-connect/admin/admin.php:644
244
  #, fuzzy
245
  #| msgid ""
246
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
@@ -255,24 +208,18 @@ msgstr ""
255
  "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão "
256
  "autorizar abaixo e então selecione a compra relacionada."
257
 
258
- #: nextend-facebook-connect/admin/admin.php:649
259
- #: nextend-social-login-pro/nextend-social-login-pro.php:110
260
  msgid "Activate"
261
  msgstr "Ativar"
262
 
263
- #: nextend-facebook-connect/admin/admin.php:747
264
  msgid "License key"
265
  msgstr "Chave de licença"
266
 
267
- #: nextend-facebook-connect/admin/admin.php:770
268
  msgid "OAuth proxy page"
269
  msgstr "Página do proxy OAuth"
270
 
271
- #: nextend-facebook-connect/admin/admin.php:773
272
  msgid "Register flow page"
273
  msgstr "Registrar página de fluxo"
274
 
275
- #: nextend-facebook-connect/admin/admin.php:780
276
  #, php-format
277
  msgid ""
278
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
@@ -280,367 +227,209 @@ msgid ""
280
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
281
  msgstr ""
282
 
283
- #: nextend-facebook-connect/admin/interim.php:12
284
- #: nextend-facebook-connect/admin/interim.php:23
285
  msgid "You have logged in successfully."
286
  msgstr "Você entrou com sucesso."
287
 
288
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:86
289
  msgid "Login label"
290
  msgstr "Rótulo de Login"
291
 
292
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:91
293
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:107
294
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:120
295
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:131
296
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
297
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:190
298
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:53
299
  msgid "Reset to default"
300
  msgstr "Redefinir para o padrão"
301
 
302
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:101
303
  #, fuzzy
304
  #| msgid "Register layout"
305
  msgid "Register label"
306
  msgstr "Cadastrar layout"
307
 
308
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:114
309
  msgid "Link label"
310
  msgstr "Rótulo de Vincular"
311
 
312
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:126
313
  msgid "Unlink label"
314
  msgstr "Rótulo de Desvincular"
315
 
316
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:137
317
  msgid "Default button"
318
  msgstr "Botão padrão"
319
 
320
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:153
321
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:183
322
  msgid "Use custom button"
323
  msgstr "Usar botão personalizado"
324
 
325
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:160
326
  #, php-format
327
  msgid "Use the %s in your custom button's code to make the label show up."
328
  msgstr ""
329
  "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer."
330
 
331
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:168
332
  msgid "Icon button"
333
  msgstr "Ícone do botão"
334
 
335
- #: nextend-facebook-connect/admin/templates-provider/buttons.php:199
336
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:140
337
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:104
338
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:220
339
- #: nextend-facebook-connect/admin/templates/settings/comment.php:79
340
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:8
341
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:127
342
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:8
343
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:167
344
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:198
345
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:109
346
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:198
347
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:179
348
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:347
349
- #: nextend-facebook-connect/providers/facebook/admin/settings.php:67
350
- #: nextend-facebook-connect/providers/google/admin/settings.php:62
351
- #: nextend-facebook-connect/providers/twitter/admin/settings.php:48
352
- #: nextend-social-login-pro/providers/amazon/admin/settings.php:47
353
- #: nextend-social-login-pro/providers/disqus/admin/settings.php:47
354
- #: nextend-social-login-pro/providers/github/admin/settings.php:48
355
- #: nextend-social-login-pro/providers/line/admin/settings.php:47
356
- #: nextend-social-login-pro/providers/linkedin/admin/settings.php:57
357
- #: nextend-social-login-pro/providers/microsoft/admin/settings.php:48
358
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:60
359
- #: nextend-social-login-pro/providers/vk/admin/settings.php:48
360
- #: nextend-social-login-pro/providers/wordpress/admin/settings.php:47
361
- #: nextend-social-login-pro/providers/yahoo/admin/settings.php:47
362
  msgid "Save Changes"
363
  msgstr "Salvar Alterações"
364
 
365
- #: nextend-facebook-connect/admin/templates-provider/menu.php:13
366
- #: nextend-facebook-connect/admin/templates/providers.php:69
367
- #: nextend-facebook-connect/providers/facebook/admin/getting-started.php:17
368
- #: nextend-facebook-connect/providers/google/admin/getting-started.php:9
369
- #: nextend-facebook-connect/providers/twitter/admin/getting-started.php:9
370
- #: nextend-social-login-pro/providers/amazon/admin/getting-started.php:17
371
- #: nextend-social-login-pro/providers/apple/admin/getting-started.php:28
372
- #: nextend-social-login-pro/providers/disqus/admin/getting-started.php:8
373
- #: nextend-social-login-pro/providers/github/admin/getting-started.php:8
374
- #: nextend-social-login-pro/providers/line/admin/getting-started.php:8
375
- #: nextend-social-login-pro/providers/linkedin/admin/getting-started.php:8
376
- #: nextend-social-login-pro/providers/microsoft/admin/getting-started.php:8
377
- #: nextend-social-login-pro/providers/paypal/admin/getting-started.php:8
378
- #: nextend-social-login-pro/providers/vk/admin/getting-started.php:8
379
- #: nextend-social-login-pro/providers/wordpress/admin/getting-started.php:8
380
- #: nextend-social-login-pro/providers/yahoo/admin/getting-started.php:8
381
  msgid "Getting Started"
382
  msgstr "Iniciando"
383
 
384
- #: nextend-facebook-connect/admin/templates-provider/menu.php:17
385
  msgid "Buttons"
386
  msgstr "Botões"
387
 
388
- #: nextend-facebook-connect/admin/templates-provider/menu.php:21
389
  msgid "Sync data"
390
  msgstr "Sincronizar dados"
391
 
392
- #: nextend-facebook-connect/admin/templates-provider/menu.php:24
393
  msgid "Usage"
394
  msgstr "Utilização"
395
 
396
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:11
397
  msgid "Other settings"
398
  msgstr "Outras configurações"
399
 
400
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:16
401
  msgid "Username prefix on register"
402
  msgstr "Prefixo do nome de usuário no registro"
403
 
404
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:23
405
  msgid "Fallback username prefix on register"
406
  msgstr "Prefixo do nome de usuário de retorno no registro"
407
 
408
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:27
409
  msgid "Used when username is invalid or not stored"
410
  msgstr "Usado quando o nome de usuário é inválido ou não é armazenado"
411
 
412
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:32
413
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
414
- #: nextend-facebook-connect/admin/templates/settings/privacy.php:35
415
  msgid "Terms and conditions"
416
  msgstr "Termos e Condições"
417
 
418
- #: nextend-facebook-connect/admin/templates-provider/settings-other.php:43
419
  #, php-format
420
  msgid "Override global \"%1$s\""
421
  msgstr "Substituir global \"%1$s\""
422
 
423
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:18
424
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:12
425
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:12
426
  msgid "PRO settings"
427
  msgstr "Configurações PRO"
428
 
429
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:28
430
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:32
431
  msgid "Ask E-mail on registration"
432
  msgstr "Solicitar E-mail no registro"
433
 
434
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:35
435
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:69
436
  msgid "Never"
437
  msgstr "Nunca"
438
 
439
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:38
440
  msgid "When email is not provided or empty"
441
  msgstr "Quando o email não é informado ou vazio"
442
 
443
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:41
444
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:59
445
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:72
446
  msgid "Always"
447
  msgstr "Sempre"
448
 
449
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:46
450
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:50
451
  msgid "Ask Username on registration"
452
  msgstr "Solicitar Nome de Usuário no registro"
453
 
454
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:53
455
  msgid "Never, generate automatically"
456
  msgstr "Nunca, gerar automaticamente"
457
 
458
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:56
459
  msgid "When username is empty or invalid"
460
  msgstr "Quando o nome de usuário estiver vazio ou é inválido"
461
 
462
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:64
463
  msgid "Ask Password on registration"
464
  msgstr "Pedir senha no registro"
465
 
466
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:77
467
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:81
468
  msgid "Automatically connect the existing account upon registration"
469
  msgstr "Conectar automaticamente a conta existente durante o registro"
470
 
471
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:85
472
- #: nextend-facebook-connect/admin/templates/providers.php:47
473
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:86
474
- #: nextend-facebook-connect/admin/templates/settings/general.php:48
475
- #: nextend-facebook-connect/admin/templates/settings/general.php:213
476
- #: nextend-facebook-connect/admin/templates/settings/general.php:228
477
- #: nextend-facebook-connect/admin/templates/settings/general.php:246
478
- #: nextend-facebook-connect/admin/templates/settings/general.php:261
479
- #: nextend-facebook-connect/includes/provider-admin.php:218
480
  msgid "Disabled"
481
  msgstr "Desativado"
482
 
483
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:88
484
  msgid "Automatic, based on email address"
485
  msgstr "Automaticamente, baseado no endereço de email"
486
 
487
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:93
488
  msgid "Disable login for the selected roles"
489
  msgstr "Desabilitar login para funções selecionadas"
490
 
491
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:113
492
  msgid "Default roles for user who registered with this provider"
493
  msgstr "Funções padrão para usuário que registrou com este fornecedor"
494
 
495
- #: nextend-facebook-connect/admin/templates-provider/settings-pro.php:121
496
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:50
497
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:76
498
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:143
499
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:168
500
- #: nextend-facebook-connect/admin/templates/settings/comment.php:39
501
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:35
502
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:97
503
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:39
504
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:111
505
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:39
506
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:111
507
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:51
508
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:108
509
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:24
510
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:70
511
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:128
512
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:199
513
- #: nextend-facebook-connect/widget.php:42
514
  msgid "Default"
515
  msgstr "Padrão"
516
 
517
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:50
518
  msgid "Register"
519
  msgstr "Cadastrar"
520
 
521
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:58
522
  msgid "Login"
523
  msgstr "Log in"
524
 
525
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:66
526
  msgid "Link"
527
  msgstr "Link"
528
 
529
- #: nextend-facebook-connect/admin/templates-provider/sync-data.php:84
530
  msgid "Store in meta key"
531
  msgstr "Armazenar na chave meta"
532
 
533
- #: nextend-facebook-connect/admin/templates-provider/usage.php:9
534
  msgid "Shortcode"
535
  msgstr "Shortcode"
536
 
537
- #: nextend-facebook-connect/admin/templates-provider/usage.php:12
538
  #, fuzzy
539
  #| msgid "Import"
540
  msgid "Important!"
541
  msgstr "Importar"
542
 
543
- #: nextend-facebook-connect/admin/templates-provider/usage.php:13
544
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
545
  msgstr ""
546
 
547
- #: nextend-facebook-connect/admin/templates-provider/usage.php:14
548
  msgid "See the full list of shortcode parameters."
549
  msgstr ""
550
 
551
- #: nextend-facebook-connect/admin/templates-provider/usage.php:31
552
  msgid "Simple link"
553
  msgstr "Link simples"
554
 
555
- #: nextend-facebook-connect/admin/templates-provider/usage.php:34
556
  msgid "Click here to login or register"
557
  msgstr "Clique aqui para logar ou registrar"
558
 
559
- #: nextend-facebook-connect/admin/templates-provider/usage.php:39
560
  msgid "Image button"
561
  msgstr "Botão de imagem"
562
 
563
- #: nextend-facebook-connect/admin/templates-provider/usage.php:42
564
  msgid "Image url"
565
  msgstr "URL da Imagem"
566
 
567
- #: nextend-facebook-connect/admin/templates/debug.php:7
568
- #: nextend-facebook-connect/admin/templates/header.php:20
569
  msgid "Debug"
570
  msgstr "Depuração"
571
 
572
- #: nextend-facebook-connect/admin/templates/debug.php:41
573
  msgid "Test network connection with providers"
574
  msgstr "Teste a conexão da rede com provedores"
575
 
576
- #: nextend-facebook-connect/admin/templates/debug.php:48
577
  msgid "You don't have cURL support, please enable it in php.ini!"
578
  msgstr "Você não tem suporte a cURL, habilite-o em php.ini!"
579
 
580
- #: nextend-facebook-connect/admin/templates/debug.php:58
581
  #, php-format
582
  msgid "Test %1$s connection"
583
  msgstr "Teste %1$s conexão"
584
 
585
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:2
586
  msgid "Fix Oauth Redirect URIs"
587
  msgstr "Corrigir URIs de Redirecionamento Oauth"
588
 
589
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:13
590
  msgid "Every Oauth Redirect URI seems fine"
591
  msgstr "Todos URIs de Redirecionamento Oauth parecem corretos"
592
 
593
- #: nextend-facebook-connect/admin/templates/fix-redirect-uri.php:32
594
  msgid "Got it"
595
  msgstr "Entendi"
596
 
597
- #: nextend-facebook-connect/admin/templates/global-settings.php:28
598
- #: nextend-facebook-connect/admin/templates/menu.php:8
599
  msgid "Global Settings"
600
  msgstr "Configurações globais"
601
 
602
- #: nextend-facebook-connect/admin/templates/global-settings.php:31
603
  msgid "General"
604
  msgstr "Geral"
605
 
606
- #: nextend-facebook-connect/admin/templates/global-settings.php:33
607
  msgid "Privacy"
608
  msgstr "Privacidade"
609
 
610
- #: nextend-facebook-connect/admin/templates/global-settings.php:35
611
- #: nextend-facebook-connect/admin/templates/settings/login-form.php:9
612
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:18
613
  msgid "Login Form"
614
  msgstr "Formulário de login"
615
 
616
- #: nextend-facebook-connect/admin/templates/global-settings.php:39
617
  msgid "Comment"
618
  msgstr "Comentário"
619
 
620
- #: nextend-facebook-connect/admin/templates/header.php:14
621
  msgid "Docs"
622
  msgstr "Docs"
623
 
624
- #: nextend-facebook-connect/admin/templates/header.php:17
625
  msgid "Support"
626
  msgstr "Suporte"
627
 
628
- #: nextend-facebook-connect/admin/templates/header.php:23
629
- #: nextend-facebook-connect/admin/templates/menu.php:12
630
  msgid "Pro Addon"
631
  msgstr "Complemento pro"
632
 
633
- #: nextend-facebook-connect/admin/templates/menu.php:6
634
  msgid "Providers"
635
  msgstr "Provedores"
636
 
637
- #: nextend-facebook-connect/admin/templates/pro-addon.php:13
638
- #: nextend-social-login-pro/class-provider-extension.php:213
639
- #: nextend-social-login-pro/class-provider-extension.php:216
640
  msgid "Error"
641
  msgstr "Erro"
642
 
643
- #: nextend-facebook-connect/admin/templates/pro-addon.php:14
644
  msgid ""
645
  "You don’t have sufficient permissions to install and activate plugins. "
646
  "Please contact your site’s administrator!"
@@ -648,13 +437,9 @@ msgstr ""
648
  "Você não tem permissões suficientes para instalar e ativar plugins. Por "
649
  "favor contacte seu administrador do site!"
650
 
651
- #: nextend-facebook-connect/admin/templates/pro-addon.php:22
652
- #: nextend-facebook-connect/admin/templates/pro-addon.php:32
653
- #: nextend-facebook-connect/admin/templates/pro.php:34
654
  msgid "Activate Pro Addon"
655
  msgstr "Ativar Addon Pro"
656
 
657
- #: nextend-facebook-connect/admin/templates/pro-addon.php:23
658
  msgid ""
659
  "Pro Addon is installed but not activated. To be able to use the Pro "
660
  "features, you need to activate it."
@@ -662,45 +447,34 @@ msgstr ""
662
  "Addon Pro está instalado mas não activado. Para ser capaz de usar os "
663
  "recursos do Pro, você precisa ativá-lo."
664
 
665
- #: nextend-facebook-connect/admin/templates/pro-addon.php:37
666
- #: nextend-facebook-connect/admin/templates/pro-addon.php:142
667
  #, fuzzy
668
  #| msgid "Activate Pro Addon"
669
  msgid "Deactivate Pro Addon"
670
  msgstr "Ativar Addon Pro"
671
 
672
- #: nextend-facebook-connect/admin/templates/pro-addon.php:48
673
- #: nextend-facebook-connect/admin/templates/pro.php:43
674
  msgid "Pro Addon is not installed"
675
  msgstr "Addon pro não está instalado"
676
 
677
- #: nextend-facebook-connect/admin/templates/pro-addon.php:50
678
  msgid ""
679
  "To access the Pro features, you need to install and activate the Pro Addon."
680
  msgstr ""
681
  "Para acessar os recursos Pro, você precisa instalar e ativar o Addon Pro."
682
 
683
- #: nextend-facebook-connect/admin/templates/pro-addon.php:59
684
  #, php-format
685
  msgid "Install %s now"
686
  msgstr "Instalar %s agora"
687
 
688
- #: nextend-facebook-connect/admin/templates/pro-addon.php:60
689
- #: nextend-facebook-connect/admin/templates/pro.php:47
690
  msgid "Install Pro Addon"
691
  msgstr "Instale o Addon Pro"
692
 
693
- #: nextend-facebook-connect/admin/templates/pro-addon.php:94
694
  msgid "Activating..."
695
  msgstr "Ativando..."
696
 
697
- #: nextend-facebook-connect/admin/templates/pro-addon.php:118
698
  #, fuzzy
699
  #| msgid "Not Available"
700
  msgid "Not compatible!"
701
  msgstr "Não Disponível"
702
 
703
- #: nextend-facebook-connect/admin/templates/pro-addon.php:119
704
  #, fuzzy, php-format
705
  #| msgid "Please update %1$s to version %2$s or newer."
706
  msgid ""
@@ -708,17 +482,14 @@ msgid ""
708
  "newer."
709
  msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente."
710
 
711
- #: nextend-facebook-connect/admin/templates/pro-addon.php:123
712
  #, fuzzy
713
  #| msgid "Activate Pro Addon"
714
  msgid "Update Pro Addon"
715
  msgstr "Ativar Addon Pro"
716
 
717
- #: nextend-facebook-connect/admin/templates/pro-addon.php:133
718
  msgid "Pro Addon is installed and activated"
719
  msgstr "Addon Pro está instalado e ativado"
720
 
721
- #: nextend-facebook-connect/admin/templates/pro-addon.php:135
722
  #, fuzzy
723
  #| msgid ""
724
  #| "You installed and activated the Pro Addon. If you don’t want to use it "
@@ -730,11 +501,9 @@ msgstr ""
730
  "Você instalou e ativou o Addon Pro. Se você não desejar usá-lo mais, você "
731
  "pode desautorizar usando o botão baixo."
732
 
733
- #: nextend-facebook-connect/admin/templates/pro.php:8
734
  msgid "Get Pro Addon to unlock more features"
735
  msgstr "Obter o Addon Pro para desbloquear mais recursos"
736
 
737
- #: nextend-facebook-connect/admin/templates/pro.php:9
738
  #, php-format
739
  msgid ""
740
  "The features below are available in %s Pro Addon. Get it today and tweak the "
@@ -743,7 +512,6 @@ msgstr ""
743
  "Os recursos abaixo estão disponíveis em %s Addon Pro. Obtenha hoje e ajuste "
744
  "as configurações incríveis."
745
 
746
- #: nextend-facebook-connect/admin/templates/pro.php:10
747
  msgid ""
748
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
749
  "you can purchase it using the button below."
@@ -751,20 +519,15 @@ msgstr ""
751
  "Se você já possui uma licença, você pode autorizar seu Addon Pro. Caso "
752
  "contrário, você pode comprá-lo usando o botão abaixo."
753
 
754
- #: nextend-facebook-connect/admin/templates/pro.php:14
755
  msgid "Buy Pro Addon"
756
  msgstr "Comprar Addon Pro"
757
 
758
- #: nextend-facebook-connect/admin/templates/pro.php:16
759
  msgid "Authorize Pro Addon"
760
  msgstr "Autorize Addon Pro"
761
 
762
- #: nextend-facebook-connect/admin/templates/pro.php:25
763
  msgid "Pro Addon is not activated"
764
  msgstr "Addon Pro não está ativado"
765
 
766
- #: nextend-facebook-connect/admin/templates/pro.php:26
767
- #: nextend-facebook-connect/admin/templates/pro.php:44
768
  #, fuzzy
769
  #| msgid ""
770
  #| "To be able to use the Pro features, you need to install and activate the "
@@ -776,7 +539,6 @@ msgstr ""
776
  "Para poder usar os recursos Pro, você precisa instalar e ativar o Addon Pro "
777
  "do Nextend Social Connect."
778
 
779
- #: nextend-facebook-connect/admin/templates/providers.php:8
780
  #, php-format
781
  msgid ""
782
  "%1$s detected that you have providers configured but none of them are "
@@ -784,55 +546,33 @@ msgid ""
784
  "one provider enabled!"
785
  msgstr ""
786
 
787
- #: nextend-facebook-connect/admin/templates/providers.php:38
788
  msgid "Not Available"
789
  msgstr "Não Disponível"
790
 
791
- #: nextend-facebook-connect/admin/templates/providers.php:41
792
  msgid "Not Configured"
793
  msgstr "Não Configurado"
794
 
795
- #: nextend-facebook-connect/admin/templates/providers.php:44
796
  msgid "Not Verified"
797
  msgstr "Não Verificado"
798
 
799
- #: nextend-facebook-connect/admin/templates/providers.php:50
800
- #: nextend-facebook-connect/admin/templates/settings/general-pro.php:89
801
- #: nextend-facebook-connect/admin/templates/settings/general.php:51
802
- #: nextend-facebook-connect/admin/templates/settings/general.php:216
803
- #: nextend-facebook-connect/admin/templates/settings/general.php:231
804
- #: nextend-facebook-connect/admin/templates/settings/general.php:249
805
- #: nextend-facebook-connect/admin/templates/settings/general.php:264
806
- #: nextend-facebook-connect/includes/provider-admin.php:221
807
- #: nextend-facebook-connect/providers/google/admin/settings.php:53
808
- #: nextend-social-login-pro/providers/paypal/admin/settings.php:51
809
  msgid "Enabled"
810
  msgstr "Ativado"
811
 
812
- #: nextend-facebook-connect/admin/templates/providers.php:62
813
  msgid "Upgrade Now"
814
  msgstr "Atualizar agora"
815
 
816
- #: nextend-facebook-connect/admin/templates/providers.php:77
817
- #: nextend-facebook-connect/includes/provider-admin.php:205
818
  msgid "Verify Settings"
819
  msgstr "Verificar Configurações"
820
 
821
- #: nextend-facebook-connect/admin/templates/providers.php:85
822
- #: nextend-facebook-connect/includes/provider-admin.php:250
823
  msgid "Enable"
824
  msgstr "Habilitar"
825
 
826
- #: nextend-facebook-connect/admin/templates/providers.php:97
827
- #: nextend-facebook-connect/includes/provider-admin.php:258
828
  msgid "Disable"
829
  msgstr "Desativar"
830
 
831
- #: nextend-facebook-connect/admin/templates/providers.php:122
832
  msgid "Stay Updated"
833
  msgstr "Ficar atualizado"
834
 
835
- #: nextend-facebook-connect/admin/templates/providers.php:123
836
  msgid ""
837
  "Receive info on the latest plugin updates and social provider related "
838
  "changes."
@@ -840,31 +580,24 @@ msgstr ""
840
  "Receba informações sobre as atualizações mais recentes do plugin e as "
841
  "alterações relacionadas ao provedor social."
842
 
843
- #: nextend-facebook-connect/admin/templates/providers.php:124
844
  msgid "Enter your email address"
845
  msgstr "Digite seu endereço de e-mail"
846
 
847
- #: nextend-facebook-connect/admin/templates/providers.php:128
848
  msgid "Subscribe"
849
  msgstr "Assinante"
850
 
851
- #: nextend-facebook-connect/admin/templates/providers.php:144
852
  msgid "Saving..."
853
  msgstr "Salvando..."
854
 
855
- #: nextend-facebook-connect/admin/templates/providers.php:145
856
  msgid "Saving failed"
857
  msgstr "O salvamento falhou"
858
 
859
- #: nextend-facebook-connect/admin/templates/providers.php:146
860
  msgid "Order Saved"
861
  msgstr "Pedido Salvo"
862
 
863
- #: nextend-facebook-connect/admin/templates/providers.php:215
864
  msgid "Successfully subscribed!"
865
  msgstr "Inscrito com sucesso!"
866
 
867
- #: nextend-facebook-connect/admin/templates/providers.php:215
868
  msgid ""
869
  "We'll be bringing you all the latest news and updates about Social Login - "
870
  "right to your inbox."
@@ -872,39 +605,30 @@ msgstr ""
872
  "Apresentaremos todas as últimas novidades e atualizações sobre o Login "
873
  "Social, diretamente na sua caixa de entrada."
874
 
875
- #: nextend-facebook-connect/admin/templates/providers.php:222
876
  msgid "The entered email address is invalid!"
877
  msgstr "O endereço de e-mail inserido é inválido!"
878
 
879
- #: nextend-facebook-connect/admin/templates/review.php:14
880
  msgid "Rate your experience!"
881
  msgstr "Avalie sua experiência!"
882
 
883
- #: nextend-facebook-connect/admin/templates/review.php:15
884
  msgid "Hated it"
885
  msgstr "Odiou"
886
 
887
- #: nextend-facebook-connect/admin/templates/review.php:16
888
  msgid "Disliked it"
889
  msgstr "Não gostou"
890
 
891
- #: nextend-facebook-connect/admin/templates/review.php:17
892
  msgid "It was ok"
893
  msgstr "Foi ok"
894
 
895
- #: nextend-facebook-connect/admin/templates/review.php:18
896
  msgid "Liked it"
897
  msgstr "Gostou"
898
 
899
- #: nextend-facebook-connect/admin/templates/review.php:19
900
  msgid "Loved it"
901
  msgstr "Adorou"
902
 
903
- #: nextend-facebook-connect/admin/templates/review.php:31
904
  msgid "Please Leave a Review"
905
  msgstr "Por favor, deixe uma revisão"
906
 
907
- #: nextend-facebook-connect/admin/templates/review.php:32
908
  msgid ""
909
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
910
  "please leave us a review. It will be a tremendous help for us!"
@@ -912,395 +636,203 @@ msgstr ""
912
  "Se você está feliz com o <b>Nextend Social Login</b> e pode nos dar um "
913
  "minuto, deixe-nos um comentário. Será uma tremenda ajuda para nós!"
914
 
915
- #: nextend-facebook-connect/admin/templates/review.php:34
916
  msgid "Ok, you deserve it"
917
  msgstr "Ok"
918
 
919
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:18
920
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:90
921
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:102
922
  msgid "Register form"
923
  msgstr "Formulário de registo"
924
 
925
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:23
926
  msgid "No Connect button"
927
  msgstr "Nenhum botão Conectar"
928
 
929
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:26
930
  msgid "Connect button before register"
931
  msgstr "Botão Conectar antes de registrar"
932
 
933
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:27
934
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:32
935
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:37
936
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:27
937
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:99
938
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:171
939
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:27
940
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:99
941
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:171
942
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:53
943
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:58
944
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:111
945
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:116
946
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:169
947
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:174
948
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:180
949
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:186
950
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:248
951
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:299
952
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:304
953
  msgid "Action:"
954
  msgstr "Ação:"
955
 
956
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:31
957
  msgid "Connect button before account details"
958
  msgstr "Botão Conectar antes de detalhes da conta"
959
 
960
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:36
961
  msgid "Connect button after register"
962
  msgstr "Botão Conectar após registrar"
963
 
964
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:44
965
  msgid "Register button style"
966
  msgstr "Estilo do botão do formulário de login"
967
 
968
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:56
969
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:149
970
- #: nextend-facebook-connect/admin/templates/settings/comment.php:45
971
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:41
972
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:103
973
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:45
974
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:117
975
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:45
976
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:117
977
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:57
978
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:114
979
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:30
980
  msgid "Fullwidth"
981
  msgstr ""
982
 
983
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:62
984
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:155
985
- #: nextend-facebook-connect/admin/templates/settings/comment.php:51
986
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:47
987
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:109
988
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:51
989
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:123
990
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:51
991
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:123
992
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:63
993
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:120
994
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:36
995
- #: nextend-facebook-connect/widget.php:47
996
  msgid "Icon"
997
  msgstr "Ícone"
998
 
999
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:70
1000
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:130
1001
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:127
1002
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:122
1003
  msgid "Register layout"
1004
  msgstr "Cadastrar layout"
1005
 
1006
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:82
1007
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:174
1008
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:60
1009
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:122
1010
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:64
1011
- #: nextend-facebook-connect/admin/templates/settings/memberpress.php:136
1012
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:64
1013
- #: nextend-facebook-connect/admin/templates/settings/ultimate-member.php:136
1014
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:76
1015
- #: nextend-facebook-connect/admin/templates/settings/userpro.php:133
1016
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:76
1017
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:134
1018
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:211
1019
- #: nextend-facebook-connect/admin/templates/settings/woocommerce.php:261
1020
  msgid "Below"
1021
  msgstr "Abaixo"
1022
 
1023
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:88
1024
- #: nextend-facebook-connect/admin/templates/settings/buddypress.php:180
1025
- #: nextend-facebook-connect/admin/templates/settings/login-form-pro.php:66
1026
- #: nextend-fac
1
  msgid ""
2
  msgstr ""
3
+ "Project-Id-Version: nextend-facebook-connect\n"
4
+ "POT-Creation-Date: 2021-09-13 20:40+0200\n"
5
+ "PO-Revision-Date: 2021-09-13 20:43+0200\n"
6
  "Last-Translator: \n"
7
  "Language-Team: renato@modernstuff.com.br\n"
8
  "Language: pt_BR\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-Flags-xgettext: --no-location\n"
21
  "X-Poedit-SearchPath-0: nextend-social-login-pro\n"
22
  "X-Poedit-SearchPath-1: nextend-facebook-connect\n"
23
  "X-Poedit-SearchPathExcluded-0: nextend-facebook-connect/providers/twitter/"
27
  "X-Poedit-SearchPathExcluded-2: nextend-facebook-connect/providers/facebook/"
28
  "compat\n"
29
 
 
30
  msgid "What personal data we collect and why we collect it"
31
  msgstr "Quais dados pessoais coletamos e por que os coletamos"
32
 
 
33
  #, php-format
34
  msgid ""
35
  "%1$s collects data when a visitor register, login or link the account with "
44
  "acesso. Também pode coletar fotos de perfil e mais campos com o recurso de "
45
  "dados de sincronização do complemento pro."
46
 
 
47
  msgid "Who we share your data with"
48
  msgstr "Com quem compartilhamos seus dados"
49
 
 
50
  #, php-format
51
  msgid ""
52
  "%1$s stores the personal data on your site and does not share it with anyone "
57
  "ninguém, exceto o token de acesso usado para a comunicação autenticada com "
58
  "os provedores sociais."
59
 
 
60
  msgid "Does the plugin share personal data with third parties"
61
  msgstr "O plugin compartilha dados pessoais com terceiros?"
62
 
 
63
  #, php-format
64
  msgid ""
65
  "%1$s use the access token what the social provider gave to communicate with "
69
  "os provedores para verificar a conta e acessar com segurança os dados "
70
  "pessoais."
71
 
 
72
  msgid "How long we retain your data"
73
  msgstr "Por quanto tempo retemos seus dados"
74
 
 
75
  #, php-format
76
  msgid ""
77
  "%1$s removes the collected personal data when the user deleted from "
80
  "%1$s Remove os dados pessoais coletados quando o usuário é excluído do "
81
  "WordPress."
82
 
 
83
  msgid "Does the plugin use personal data collected by others?"
84
  msgstr "O plugin usa dados pessoais coletados por outras pessoas?"
85
 
 
86
  #, php-format
87
  msgid ""
88
  "%1$s use the personal data collected by the social providers to create "
91
  "%1$s Usa os dados pessoais coletados pelos provedores sociais para criar uma "
92
  "conta em seu site quando o visitante autorizá-lo."
93
 
 
94
  msgid "Does the plugin store things in the browser?"
95
  msgstr "O plugin armazena coisas no navegador?"
96
 
 
97
  #, php-format
98
  msgid ""
99
  "Yes, %1$s must create a cookie for visitors who use the social login "
104
  "autorização de login social. Esse cookie exigia que cada provedor protegesse "
105
  "a comunicação e redirecionasse o usuário de volta ao último local."
106
 
 
107
  msgid "Does the plugin collect telemetry data, directly or indirectly?"
108
  msgstr "O plugin coleta dados de telemetria, direta ou indiretamente?"
109
 
 
 
110
  msgid "No"
111
  msgstr "Não"
112
 
 
113
  msgid ""
114
  "Does the plugin enqueue JavaScript, tracking pixels or embed iframes from a "
115
  "third party?"
117
  "O plugin carrega JavaScript, rastreia pixels ou incorpora iframes de "
118
  "terceiros?"
119
 
 
 
120
  msgid "User"
121
  msgstr "Usuário"
122
 
 
123
  #, php-format
124
  msgid "%s needs json_decode function."
125
  msgstr "%s precisa da função json_decode."
126
 
 
127
  msgid "Please contact your server administrator and ask for solution!"
128
  msgstr ""
129
  "Entre em contato com o seu administrador do servidor e peça uma solução!"
130
 
 
 
131
  msgid "Settings saved."
132
  msgstr "Configurações salvas."
133
 
 
134
  #, fuzzy
135
  #| msgid "The authorization was successful"
136
  msgid "The activation was successful"
137
  msgstr "A autorização foi bem sucedida"
138
 
 
139
  #, fuzzy
140
  #| msgid "Deauthorize completed."
141
  msgid "Deactivate completed."
142
  msgstr "Desautorização concluída."
143
 
 
 
 
 
 
144
  msgid "Settings"
145
  msgstr "Configurações"
146
 
 
 
 
 
 
 
 
147
  #, php-format
148
  msgid "Unexpected response: %s"
149
  msgstr "Resposta inesperada: %s"
150
 
 
 
151
  #, php-format
152
  msgid ""
153
  "%s detected that your login url changed. You must update the Oauth redirect "
156
  "%s detectou que sua url de login mudou. Você deve atualizar as URIs de "
157
  "redirecionamento do Oauth nas aplicações sociais relacionados."
158
 
 
 
159
  msgid "Fix Error"
160
  msgstr "Corrigir erro"
161
 
 
162
  msgid "Oauth Redirect URI"
163
  msgstr "URI de Redirecionamento do OAuth"
164
 
 
165
  #, php-format
166
  msgid ""
167
  "%1$s detected that %2$s installed on your site. You need the Pro Addon to "
170
  "%1$s detectado que %2$s instalou em seu site. Você precisa Addon Pro para "
171
  "mostrar botões de Login Social no formulário de login %2$s!"
172
 
 
173
  msgid "Dismiss and check Pro Addon"
174
  msgstr "Dispensar e verificar Addon Pro"
175
 
 
176
  msgid "Dismiss"
177
  msgstr "Dispensar"
178
 
 
179
  #, php-format
180
  msgid ""
181
  "%1$s detected that %2$s installed on your site. You must set \"<b>Page for "
186
  "página para fluxo de registro</b>\" e \"<b>página do proxy uri do "
187
  "redirecionamento OAuth</b>\" em %1$s para funcionar corretamente."
188
 
 
189
  msgid "Fix now"
190
  msgstr "Corrigir erro"
191
 
 
192
  #, fuzzy
193
  #| msgid "Activate Pro Addon"
194
  msgid "Activate your Pro Addon"
195
  msgstr "Ativar Addon Pro"
196
 
 
197
  #, fuzzy
198
  #| msgid ""
199
  #| "To be able to use the Pro features, you need to authorize Nextend Social "
208
  "Pro do Nextend Social Connect. Você pode fazer isso clicando no botão "
209
  "autorizar abaixo e então selecione a compra relacionada."
210
 
 
 
211
  msgid "Activate"
212
  msgstr "Ativar"
213
 
 
214
  msgid "License key"
215
  msgstr "Chave de licença"
216
 
 
217
  msgid "OAuth proxy page"
218
  msgstr "Página do proxy OAuth"
219
 
 
220
  msgid "Register flow page"
221
  msgstr "Registrar página de fluxo"
222
 
 
223
  #, php-format
224
  msgid ""
225
  "<strong><u>Warning</u></strong>: You are using <b>%1$s</b>! Depending on "
227
  "information please check our %2$s %1$s compatibility tutorial%3$s!"
228
  msgstr ""
229
 
 
 
230
  msgid "You have logged in successfully."
231
  msgstr "Você entrou com sucesso."
232
 
 
233
  msgid "Login label"
234
  msgstr "Rótulo de Login"
235
 
 
 
 
 
 
 
 
236
  msgid "Reset to default"
237
  msgstr "Redefinir para o padrão"
238
 
 
239
  #, fuzzy
240
  #| msgid "Register layout"
241
  msgid "Register label"
242
  msgstr "Cadastrar layout"
243
 
 
244
  msgid "Link label"
245
  msgstr "Rótulo de Vincular"
246
 
 
247
  msgid "Unlink label"
248
  msgstr "Rótulo de Desvincular"
249
 
 
250
  msgid "Default button"
251
  msgstr "Botão padrão"
252
 
 
 
253
  msgid "Use custom button"
254
  msgstr "Usar botão personalizado"
255
 
 
256
  #, php-format
257
  msgid "Use the %s in your custom button's code to make the label show up."
258
  msgstr ""
259
  "Usar o %s em seu código de botão personalizado para fazer o rótulo aparecer."
260
 
 
261
  msgid "Icon button"
262
  msgstr "Ícone do botão"
263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  msgid "Save Changes"
265
  msgstr "Salvar Alterações"
266
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
267
  msgid "Getting Started"
268
  msgstr "Iniciando"
269
 
 
270
  msgid "Buttons"
271
  msgstr "Botões"
272
 
 
273
  msgid "Sync data"
274
  msgstr "Sincronizar dados"
275
 
 
276
  msgid "Usage"
277
  msgstr "Utilização"
278
 
 
279
  msgid "Other settings"
280
  msgstr "Outras configurações"
281
 
 
282
  msgid "Username prefix on register"
283
  msgstr "Prefixo do nome de usuário no registro"
284
 
 
285
  msgid "Fallback username prefix on register"
286
  msgstr "Prefixo do nome de usuário de retorno no registro"
287
 
 
288
  msgid "Used when username is invalid or not stored"
289
  msgstr "Usado quando o nome de usuário é inválido ou não é armazenado"
290
 
 
 
 
291
  msgid "Terms and conditions"
292
  msgstr "Termos e Condições"
293
 
 
294
  #, php-format
295
  msgid "Override global \"%1$s\""
296
  msgstr "Substituir global \"%1$s\""
297
 
 
 
 
298
  msgid "PRO settings"
299
  msgstr "Configurações PRO"
300
 
 
 
301
  msgid "Ask E-mail on registration"
302
  msgstr "Solicitar E-mail no registro"
303
 
 
 
304
  msgid "Never"
305
  msgstr "Nunca"
306
 
 
307
  msgid "When email is not provided or empty"
308
  msgstr "Quando o email não é informado ou vazio"
309
 
 
 
 
310
  msgid "Always"
311
  msgstr "Sempre"
312
 
 
 
313
  msgid "Ask Username on registration"
314
  msgstr "Solicitar Nome de Usuário no registro"
315
 
 
316
  msgid "Never, generate automatically"
317
  msgstr "Nunca, gerar automaticamente"
318
 
 
319
  msgid "When username is empty or invalid"
320
  msgstr "Quando o nome de usuário estiver vazio ou é inválido"
321
 
 
322
  msgid "Ask Password on registration"
323
  msgstr "Pedir senha no registro"
324
 
 
 
325
  msgid "Automatically connect the existing account upon registration"
326
  msgstr "Conectar automaticamente a conta existente durante o registro"
327
 
 
 
 
 
 
 
 
 
 
328
  msgid "Disabled"
329
  msgstr "Desativado"
330
 
 
331
  msgid "Automatic, based on email address"
332
  msgstr "Automaticamente, baseado no endereço de email"
333
 
 
334
  msgid "Disable login for the selected roles"
335
  msgstr "Desabilitar login para funções selecionadas"
336
 
 
337
  msgid "Default roles for user who registered with this provider"
338
  msgstr "Funções padrão para usuário que registrou com este fornecedor"
339
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
340
  msgid "Default"
341
  msgstr "Padrão"
342
 
 
343
  msgid "Register"
344
  msgstr "Cadastrar"
345
 
 
346
  msgid "Login"
347
  msgstr "Log in"
348
 
 
349
  msgid "Link"
350
  msgstr "Link"
351
 
 
352
  msgid "Store in meta key"
353
  msgstr "Armazenar na chave meta"
354
 
 
355
  msgid "Shortcode"
356
  msgstr "Shortcode"
357
 
 
358
  #, fuzzy
359
  #| msgid "Import"
360
  msgid "Important!"
361
  msgstr "Importar"
362
 
 
363
  msgid "The shortcodes are only rendered for users who haven't logged in yet!"
364
  msgstr ""
365
 
 
366
  msgid "See the full list of shortcode parameters."
367
  msgstr ""
368
 
 
369
  msgid "Simple link"
370
  msgstr "Link simples"
371
 
 
372
  msgid "Click here to login or register"
373
  msgstr "Clique aqui para logar ou registrar"
374
 
 
375
  msgid "Image button"
376
  msgstr "Botão de imagem"
377
 
 
378
  msgid "Image url"
379
  msgstr "URL da Imagem"
380
 
 
 
381
  msgid "Debug"
382
  msgstr "Depuração"
383
 
 
384
  msgid "Test network connection with providers"
385
  msgstr "Teste a conexão da rede com provedores"
386
 
 
387
  msgid "You don't have cURL support, please enable it in php.ini!"
388
  msgstr "Você não tem suporte a cURL, habilite-o em php.ini!"
389
 
 
390
  #, php-format
391
  msgid "Test %1$s connection"
392
  msgstr "Teste %1$s conexão"
393
 
 
394
  msgid "Fix Oauth Redirect URIs"
395
  msgstr "Corrigir URIs de Redirecionamento Oauth"
396
 
 
397
  msgid "Every Oauth Redirect URI seems fine"
398
  msgstr "Todos URIs de Redirecionamento Oauth parecem corretos"
399
 
 
400
  msgid "Got it"
401
  msgstr "Entendi"
402
 
 
 
403
  msgid "Global Settings"
404
  msgstr "Configurações globais"
405
 
 
406
  msgid "General"
407
  msgstr "Geral"
408
 
 
409
  msgid "Privacy"
410
  msgstr "Privacidade"
411
 
 
 
 
412
  msgid "Login Form"
413
  msgstr "Formulário de login"
414
 
 
415
  msgid "Comment"
416
  msgstr "Comentário"
417
 
 
418
  msgid "Docs"
419
  msgstr "Docs"
420
 
 
421
  msgid "Support"
422
  msgstr "Suporte"
423
 
 
 
424
  msgid "Pro Addon"
425
  msgstr "Complemento pro"
426
 
 
427
  msgid "Providers"
428
  msgstr "Provedores"
429
 
 
 
 
430
  msgid "Error"
431
  msgstr "Erro"
432
 
 
433
  msgid ""
434
  "You don’t have sufficient permissions to install and activate plugins. "
435
  "Please contact your site’s administrator!"
437
  "Você não tem permissões suficientes para instalar e ativar plugins. Por "
438
  "favor contacte seu administrador do site!"
439
 
 
 
 
440
  msgid "Activate Pro Addon"
441
  msgstr "Ativar Addon Pro"
442
 
 
443
  msgid ""
444
  "Pro Addon is installed but not activated. To be able to use the Pro "
445
  "features, you need to activate it."
447
  "Addon Pro está instalado mas não activado. Para ser capaz de usar os "
448
  "recursos do Pro, você precisa ativá-lo."
449
 
 
 
450
  #, fuzzy
451
  #| msgid "Activate Pro Addon"
452
  msgid "Deactivate Pro Addon"
453
  msgstr "Ativar Addon Pro"
454
 
 
 
455
  msgid "Pro Addon is not installed"
456
  msgstr "Addon pro não está instalado"
457
 
 
458
  msgid ""
459
  "To access the Pro features, you need to install and activate the Pro Addon."
460
  msgstr ""
461
  "Para acessar os recursos Pro, você precisa instalar e ativar o Addon Pro."
462
 
 
463
  #, php-format
464
  msgid "Install %s now"
465
  msgstr "Instalar %s agora"
466
 
 
 
467
  msgid "Install Pro Addon"
468
  msgstr "Instale o Addon Pro"
469
 
 
470
  msgid "Activating..."
471
  msgstr "Ativando..."
472
 
 
473
  #, fuzzy
474
  #| msgid "Not Available"
475
  msgid "Not compatible!"
476
  msgstr "Não Disponível"
477
 
 
478
  #, fuzzy, php-format
479
  #| msgid "Please update %1$s to version %2$s or newer."
480
  msgid ""
482
  "newer."
483
  msgstr "Por favor, atualize %1$s para versão %2$s ou mais recente."
484
 
 
485
  #, fuzzy
486
  #| msgid "Activate Pro Addon"
487
  msgid "Update Pro Addon"
488
  msgstr "Ativar Addon Pro"
489
 
 
490
  msgid "Pro Addon is installed and activated"
491
  msgstr "Addon Pro está instalado e ativado"
492
 
 
493
  #, fuzzy
494
  #| msgid ""
495
  #| "You installed and activated the Pro Addon. If you don’t want to use it "
501
  "Você instalou e ativou o Addon Pro. Se você não desejar usá-lo mais, você "
502
  "pode desautorizar usando o botão baixo."
503
 
 
504
  msgid "Get Pro Addon to unlock more features"
505
  msgstr "Obter o Addon Pro para desbloquear mais recursos"
506
 
 
507
  #, php-format
508
  msgid ""
509
  "The features below are available in %s Pro Addon. Get it today and tweak the "
512
  "Os recursos abaixo estão disponíveis em %s Addon Pro. Obtenha hoje e ajuste "
513
  "as configurações incríveis."
514
 
 
515
  msgid ""
516
  "If you already have a license, you can Authorize your Pro Addon. Otherwise "
517
  "you can purchase it using the button below."
519
  "Se você já possui uma licença, você pode autorizar seu Addon Pro. Caso "
520
  "contrário, você pode comprá-lo usando o botão abaixo."
521
 
 
522
  msgid "Buy Pro Addon"
523
  msgstr "Comprar Addon Pro"
524
 
 
525
  msgid "Authorize Pro Addon"
526
  msgstr "Autorize Addon Pro"
527
 
 
528
  msgid "Pro Addon is not activated"
529
  msgstr "Addon Pro não está ativado"
530
 
 
 
531
  #, fuzzy
532
  #| msgid ""
533
  #| "To be able to use the Pro features, you need to install and activate the "
539
  "Para poder usar os recursos Pro, você precisa instalar e ativar o Addon Pro "
540
  "do Nextend Social Connect."
541
 
 
542
  #, php-format
543
  msgid ""
544
  "%1$s detected that you have providers configured but none of them are "
546
  "one provider enabled!"
547
  msgstr ""
548
 
 
549
  msgid "Not Available"
550
  msgstr "Não Disponível"
551
 
 
552
  msgid "Not Configured"
553
  msgstr "Não Configurado"
554
 
 
555
  msgid "Not Verified"
556
  msgstr "Não Verificado"
557
 
 
 
 
 
 
 
 
 
 
 
558
  msgid "Enabled"
559
  msgstr "Ativado"
560
 
 
561
  msgid "Upgrade Now"
562
  msgstr "Atualizar agora"
563
 
 
 
564
  msgid "Verify Settings"
565
  msgstr "Verificar Configurações"
566
 
 
 
567
  msgid "Enable"
568
  msgstr "Habilitar"
569
 
 
 
570
  msgid "Disable"
571
  msgstr "Desativar"
572
 
 
573
  msgid "Stay Updated"
574
  msgstr "Ficar atualizado"
575
 
 
576
  msgid ""
577
  "Receive info on the latest plugin updates and social provider related "
578
  "changes."
580
  "Receba informações sobre as atualizações mais recentes do plugin e as "
581
  "alterações relacionadas ao provedor social."
582
 
 
583
  msgid "Enter your email address"
584
  msgstr "Digite seu endereço de e-mail"
585
 
 
586
  msgid "Subscribe"
587
  msgstr "Assinante"
588
 
 
589
  msgid "Saving..."
590
  msgstr "Salvando..."
591
 
 
592
  msgid "Saving failed"
593
  msgstr "O salvamento falhou"
594
 
 
595
  msgid "Order Saved"
596
  msgstr "Pedido Salvo"
597
 
 
598
  msgid "Successfully subscribed!"
599
  msgstr "Inscrito com sucesso!"
600
 
 
601
  msgid ""
602
  "We'll be bringing you all the latest news and updates about Social Login - "
603
  "right to your inbox."
605
  "Apresentaremos todas as últimas novidades e atualizações sobre o Login "
606
  "Social, diretamente na sua caixa de entrada."
607
 
 
608
  msgid "The entered email address is invalid!"
609
  msgstr "O endereço de e-mail inserido é inválido!"
610
 
 
611
  msgid "Rate your experience!"
612
  msgstr "Avalie sua experiência!"
613
 
 
614
  msgid "Hated it"
615
  msgstr "Odiou"
616
 
 
617
  msgid "Disliked it"
618
  msgstr "Não gostou"
619
 
 
620
  msgid "It was ok"
621
  msgstr "Foi ok"
622
 
 
623
  msgid "Liked it"
624
  msgstr "Gostou"
625
 
 
626
  msgid "Loved it"
627
  msgstr "Adorou"
628
 
 
629
  msgid "Please Leave a Review"
630
  msgstr "Por favor, deixe uma revisão"
631
 
 
632
  msgid ""
633
  "If you are happy with <b>Nextend Social Login</b> and can take a minute "
634
  "please leave us a review. It will be a tremendous help for us!"
636
  "Se você está feliz com o <b>Nextend Social Login</b> e pode nos dar um "
637
  "minuto, deixe-nos um comentário. Será uma tremenda ajuda para nós!"
638
 
 
639
  msgid "Ok, you deserve it"
640
  msgstr "Ok"
641
 
 
 
 
642
  msgid "Register form"
643
  msgstr "Formulário de registo"
644
 
 
645
  msgid "No Connect button"
646
  msgstr "Nenhum botão Conectar"
647
 
 
648
  msgid "Connect button before register"
649
  msgstr "Botão Conectar antes de registrar"
650
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
651
  msgid "Action:"
652
  msgstr "Ação:"
653
 
 
654
  msgid "Connect button before account details"
655
  msgstr "Botão Conectar antes de detalhes da conta"
656
 
 
657
  msgid "Connect button after register"
658
  msgstr "Botão Conectar após registrar"
659
 
 
660
  msgid "Register button style"
661
  msgstr "Estilo do botão do formulário de login"
662
 
 
 
 
 
 
 
 
 
 
 
 
 
663
  msgid "Fullwidth"
664
  msgstr ""
665
 
 
 
 
 
 
 
 
 
 
 
 
 
 
666
  msgid "Icon"
667
  msgstr "Ícone"
668
 
 
 
 
 
669
  msgid "Register layout"
670
  msgstr "Cadastrar layout"
671
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
  msgid "Below"
673
  msgstr "Abaixo"
674