User registration & user profile – Profile Builder - Version 2.2.8

Version Description

  • Translation Updates
  • Changed User Registered date and time according to timezone selected in WordPress settings
Download this release

Release Info

Developer madalin.ungureanu
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 2.2.8
Comparing to
See all releases

Code changes from version 2.2.7 to 2.2.8

features/email-confirmation/email-confirmation.php CHANGED
@@ -324,11 +324,20 @@ function wppb_signup_user( $username, $user_email, $meta = '' ) {
324
  $user_email = sanitize_email( $user_email );
325
  $activation_key = substr( md5( time() . rand() . $user_email ), 0, 16 );
326
  $meta = serialize( $meta );
327
-
 
 
 
 
 
 
 
 
 
328
  if ( is_multisite() )
329
- $wpdb->insert( $wpdb->signups, array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => current_time('mysql', true), 'activation_key' => $activation_key, 'meta' => $meta ) );
330
  else
331
- $wpdb->insert( $wpdb->prefix.'signups', array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => current_time('mysql', true), 'activation_key' => $activation_key, 'meta' => $meta ) );
332
 
333
  do_action ( 'wppb_signup_user', $username, $user_email, $activation_key, $meta );
334
 
324
  $user_email = sanitize_email( $user_email );
325
  $activation_key = substr( md5( time() . rand() . $user_email ), 0, 16 );
326
  $meta = serialize( $meta );
327
+
328
+ // change User Registered date and time according to timezone selected in WordPress settings
329
+ $wppb_get_date = wppb_get_date_by_timezone();
330
+
331
+ if( isset( $wppb_get_date ) ) {
332
+ $wppb_user_registered = $wppb_get_date;
333
+ } else {
334
+ $wppb_user_registered = current_time( 'mysql', true );
335
+ }
336
+
337
  if ( is_multisite() )
338
+ $wpdb->insert( $wpdb->signups, array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => $wppb_user_registered, 'activation_key' => $activation_key, 'meta' => $meta ) );
339
  else
340
+ $wpdb->insert( $wpdb->prefix.'signups', array('domain' => '', 'path' => '', 'title' => '', 'user_login' => $user, 'user_email' => $user_email, 'registered' => $wppb_user_registered, 'activation_key' => $activation_key, 'meta' => $meta ) );
341
 
342
  do_action ( 'wppb_signup_user', $username, $user_email, $activation_key, $meta );
343
 
features/functions.php CHANGED
@@ -697,4 +697,21 @@ add_filter('post_updated_messages','wppb_change_default_post_updated_messages',
697
  function wppb_handle_meta_name( $meta_name ){
698
  $meta_name = str_replace( ' ', '_', $meta_name );
699
  return $meta_name;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
700
  }
697
  function wppb_handle_meta_name( $meta_name ){
698
  $meta_name = str_replace( ' ', '_', $meta_name );
699
  return $meta_name;
700
+ }
701
+
702
+
703
+ // change User Registered date and time according to timezone selected in WordPress settings
704
+ function wppb_get_date_by_timezone() {
705
+ $wppb_wp_timezone = get_option( 'timezone_string' );
706
+
707
+ if( ! empty( $wppb_wp_timezone ) ) {
708
+ date_default_timezone_set( $wppb_wp_timezone );
709
+ $wppb_get_date = date( "Y-m-d G:i:s" );
710
+ } else {
711
+ $wppb_wp_gmt_offset = get_option( 'gmt_offset' );
712
+ $wppb_gmt_offset = $wppb_wp_gmt_offset * 60 * 60;
713
+ $wppb_get_date = gmdate( "Y-m-d G:i:s", time() + $wppb_gmt_offset );
714
+ }
715
+
716
+ return $wppb_get_date;
717
  }
front-end/class-formbuilder.php CHANGED
@@ -468,6 +468,15 @@ class Profile_Builder_Form_Creator{
468
  $userdata['role'] = $this->args['role'];
469
 
470
  $userdata = wp_unslash( $userdata );
 
 
 
 
 
 
 
 
 
471
  $user_id = wp_insert_user( $userdata );
472
  }
473
 
468
  $userdata['role'] = $this->args['role'];
469
 
470
  $userdata = wp_unslash( $userdata );
471
+
472
+ // change User Registered date and time according to timezone selected in WordPress settings
473
+ $wppb_get_date = wppb_get_date_by_timezone();
474
+
475
+ if( isset( $wppb_get_date ) ) {
476
+ $userdata['user_registered'] = $wppb_get_date;
477
+ }
478
+
479
+ // insert user to database
480
  $user_id = wp_insert_user( $userdata );
481
  }
482
 
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: http://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
- Version: 2.2.7
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: http://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.2.7' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
3
  Plugin Name: Profile Builder
4
  Plugin URI: http://www.cozmoslabs.com/wordpress-profile-builder/
5
  Description: Login, registration and edit profile shortcodes for the front-end. Also you can chose what fields should be displayed or add new (custom) ones both in the front-end and in the dashboard.
6
+ Version: 2.2.8
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: http://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.2.8' );
77
  define('WPPB_PLUGIN_DIR', plugin_dir_path(__FILE__));
78
  define('WPPB_PLUGIN_URL', plugin_dir_url(__FILE__));
79
  define('WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', apply_filters('wppb_server_max_upload_size_byte_constant', wppb_return_bytes(ini_get('upload_max_filesize'))));
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: registration, user profile, user registration, custom field registration, customize profile, user fields, extra user fields, builder, profile builder, custom user profile, user profile page, edit profile, custom registration, custom registration form, custom registration page, registration page, user custom fields, user listing, front-end user listing, user login, user registration form, front-end login, login redirect, login widget, front-end register, front-end registration, front-end edit profile, front-end user registration, custom redirects, user email, avatar upload, email confirmation, user approval, customize registration email, minimum password length, minimum password strength, password strength meter, multiple registration forms, register, register form, register user, register users, login form, member directory, redirect user
5
 
6
  Requires at least: 3.1
7
- Tested up to: 4.3.1
8
- Stable tag: 2.2.7
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -115,6 +115,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
115
  10. Profile Builder Login Widget
116
 
117
  == Changelog ==
 
 
 
 
118
  = 2.2.7 =
119
  * Translation Updates
120
 
4
  Tags: registration, user profile, user registration, custom field registration, customize profile, user fields, extra user fields, builder, profile builder, custom user profile, user profile page, edit profile, custom registration, custom registration form, custom registration page, registration page, user custom fields, user listing, front-end user listing, user login, user registration form, front-end login, login redirect, login widget, front-end register, front-end registration, front-end edit profile, front-end user registration, custom redirects, user email, avatar upload, email confirmation, user approval, customize registration email, minimum password length, minimum password strength, password strength meter, multiple registration forms, register, register form, register user, register users, login form, member directory, redirect user
5
 
6
  Requires at least: 3.1
7
+ Tested up to: 4.4.1
8
+ Stable tag: 2.2.8
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
115
  10. Profile Builder Login Widget
116
 
117
  == Changelog ==
118
+ = 2.2.8 =
119
+ * Translation Updates
120
+ * Changed User Registered date and time according to timezone selected in WordPress settings
121
+
122
  = 2.2.7 =
123
  * Translation Updates
124
 
translation/profile-builder.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: profile-builder\n"
5
- "POT-Creation-Date: 2015-12-04 10:43+0200\n"
6
  "PO-Revision-Date: 2015-04-30 10:26+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Cozmoslabs\n"
@@ -11,243 +11,422 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Generator: Poedit 1.8.5\n"
14
- "X-Poedit-Basepath: .\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
- "X-Poedit-SearchPath-0: ..\n"
 
19
 
20
- #: ../admin/add-ons.php:10 ../admin/add-ons.php:32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  msgid "Add-Ons"
22
  msgstr ""
23
 
24
- #: ../admin/add-ons.php:34 ../admin/add-ons.php:124 ../admin/add-ons.php:231
25
- #: ../admin/pms-cross-promotion.php:78 ../admin/pms-cross-promotion.php:114
26
- #: ../admin/pms-cross-promotion.php:193
 
 
 
27
  msgid "Activate"
28
  msgstr ""
29
 
30
- #: ../admin/add-ons.php:36 ../admin/pms-cross-promotion.php:80
 
31
  msgid "Downloading and installing..."
32
  msgstr ""
33
 
34
- #: ../admin/add-ons.php:37 ../admin/pms-cross-promotion.php:81
 
35
  msgid "Installation complete"
36
  msgstr ""
37
 
38
- #: ../admin/add-ons.php:39
39
  msgid "Add-On is Active"
40
  msgstr ""
41
 
42
- #: ../admin/add-ons.php:40
43
  msgid "Add-On has been activated"
44
  msgstr ""
45
 
46
- #: ../admin/add-ons.php:41 ../admin/pms-cross-promotion.php:85
 
47
  msgid "Retry Install"
48
  msgstr ""
49
 
50
- #: ../admin/add-ons.php:43 ../admin/add-ons.php:135
 
51
  msgid "Add-On is <strong>active</strong>"
52
  msgstr ""
53
 
54
- #: ../admin/add-ons.php:44 ../admin/add-ons.php:133
 
55
  msgid "Add-On is <strong>inactive</strong>"
56
  msgstr ""
57
 
58
- #: ../admin/add-ons.php:46 ../admin/add-ons.php:128 ../admin/add-ons.php:235
59
- #: ../admin/pms-cross-promotion.php:90 ../admin/pms-cross-promotion.php:118
60
- #: ../admin/pms-cross-promotion.php:197
 
 
 
61
  msgid "Deactivate"
62
  msgstr ""
63
 
64
- #: ../admin/add-ons.php:47
65
  msgid "Add-On has been deactivated."
66
  msgstr ""
67
 
68
- #: ../admin/add-ons.php:59
69
  msgid ""
70
  "Something went wrong, we could not connect to the server. Please try again "
71
  "later."
72
  msgstr ""
73
 
74
- #: ../admin/add-ons.php:144 ../admin/add-ons.php:147
 
75
  msgid "Buy Now"
76
  msgstr ""
77
 
78
- #: ../admin/add-ons.php:144 ../admin/add-ons.php:251
79
- #: ../admin/pms-cross-promotion.php:134 ../admin/pms-cross-promotion.php:213
 
 
80
  msgid "Download Now"
81
  msgstr ""
82
 
83
- #: ../admin/add-ons.php:147 ../admin/add-ons.php:254
84
- #: ../admin/pms-cross-promotion.php:137 ../admin/pms-cross-promotion.php:216
 
 
85
  msgid "Install Now"
86
  msgstr ""
87
 
88
- #: ../admin/add-ons.php:153 ../admin/add-ons.php:258
89
- #: ../admin/pms-cross-promotion.php:141 ../admin/pms-cross-promotion.php:220
 
 
90
  msgid "Compatible with your version of Profile Builder."
91
  msgstr ""
92
 
93
- #: ../admin/add-ons.php:162
94
  msgid "Upgrade Profile Builder"
95
  msgstr ""
96
 
97
- #: ../admin/add-ons.php:163
98
  msgid "Not compatible with Profile Builder"
99
  msgstr ""
100
 
101
- #: ../admin/add-ons.php:170 ../front-end/class-formbuilder.php:351
 
102
  msgid "Update"
103
  msgstr ""
104
 
105
- #: ../admin/add-ons.php:171
106
  msgid "Not compatible with your version of Profile Builder."
107
  msgstr ""
108
 
109
- #: ../admin/add-ons.php:172
110
  msgid "Minimum required Profile Builder version:"
111
  msgstr ""
112
 
113
- #: ../admin/add-ons.php:177
114
  #, php-format
115
  msgid ""
116
  "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
117
  "manually</a>."
118
  msgstr ""
119
 
120
- #: ../admin/add-ons.php:190
121
  msgid "Recommended Plugins"
122
  msgstr ""
123
 
124
- #: ../admin/add-ons.php:219 ../admin/pms-cross-promotion.php:102
 
125
  msgid "Free"
126
  msgstr ""
127
 
128
- #: ../admin/add-ons.php:221
129
  msgid ""
130
  "Accept user payments, create subscription plans and restrict content on your "
131
  "membership site."
132
  msgstr ""
133
 
134
- #: ../admin/add-ons.php:222 ../admin/pms-cross-promotion.php:105
 
135
  msgid "More Details"
136
  msgstr ""
137
 
138
- #: ../admin/add-ons.php:240 ../admin/pms-cross-promotion.php:88
139
- #: ../admin/pms-cross-promotion.php:123 ../admin/pms-cross-promotion.php:202
 
 
140
  msgid "Plugin is <strong>inactive</strong>"
141
  msgstr ""
142
 
143
- #: ../admin/add-ons.php:242 ../admin/pms-cross-promotion.php:87
144
- #: ../admin/pms-cross-promotion.php:125 ../admin/pms-cross-promotion.php:204
 
 
145
  msgid "Plugin is <strong>active</strong>"
146
  msgstr ""
147
 
148
- #: ../admin/add-ons.php:263 ../admin/pms-cross-promotion.php:146
 
149
  #, php-format
150
  msgid ""
151
  "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install "
152
  "manually</a>."
153
  msgstr ""
154
 
155
- #: ../admin/admin-bar.php:10
156
  msgid "Show/Hide the Admin Bar on the Front-End"
157
  msgstr ""
158
 
159
- #: ../admin/admin-bar.php:10 ../admin/admin-bar.php:47
 
160
  msgid "Admin Bar Settings"
161
  msgstr ""
162
 
163
- #: ../admin/admin-bar.php:48
164
  msgid ""
165
  "Choose which user roles view the admin bar in the front-end of the website."
166
  msgstr ""
167
 
168
- #: ../admin/admin-bar.php:57
169
  msgid "User-Role"
170
  msgstr ""
171
 
172
- #: ../admin/admin-bar.php:58
173
  msgid "Visibility"
174
  msgstr ""
175
 
176
- #: ../admin/admin-bar.php:73
177
  msgid "Default"
178
  msgstr ""
179
 
180
- #: ../admin/admin-bar.php:74
181
  msgid "Show"
182
  msgstr ""
183
 
184
- #: ../admin/admin-bar.php:75
185
  msgid "Hide"
186
  msgstr ""
187
 
188
- #: ../admin/admin-bar.php:86 ../admin/general-settings.php:208
189
- #: ../admin/register-version.php:95 ../features/functions.php:633
190
- #: ../modules/modules.php:117
191
- msgid "Save Changes"
192
- msgstr ""
193
-
194
- #: ../admin/admin-functions.php:34
195
  #, php-format
196
  msgid ""
197
  "Login is set to be done using the E-mail. This field will NOT appear in the "
198
  "front-end! ( you can change these settings under the \"%s\" tab )"
199
  msgstr ""
200
 
201
- #: ../admin/admin-functions.php:34 ../admin/general-settings.php:10
202
- #: ../admin/general-settings.php:38
 
203
  msgid "General Settings"
204
  msgstr ""
205
 
206
- #: ../admin/admin-functions.php:40
207
  msgid "Display name publicly as - only appears on the Edit Profile page!"
208
  msgstr ""
209
 
210
- #: ../admin/admin-functions.php:128
211
  #, php-format
212
  msgid ""
213
  "<strong>ERROR</strong>: The password must have the minimum length of %s "
214
  "characters"
215
  msgstr ""
216
 
217
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:194
 
218
  msgid "Very weak"
219
  msgstr ""
220
 
221
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:195
222
- #: ../features/functions.php:525
 
223
  msgid "Weak"
224
  msgstr ""
225
 
226
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:196
227
- #: ../features/functions.php:525
 
228
  msgid "Medium"
229
  msgstr ""
230
 
231
- #: ../admin/admin-functions.php:134 ../admin/general-settings.php:197
232
- #: ../features/functions.php:525
 
233
  msgid "Strong"
234
  msgstr ""
235
 
236
- #: ../admin/admin-functions.php:145
237
  #, php-format
238
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
239
  msgstr ""
240
 
241
- #: ../admin/admin-functions.php:184
242
  msgid "Add Field"
243
  msgstr ""
244
 
245
- #: ../admin/admin-functions.php:186
246
- #: ../modules/class-mustache-templates/class-mustache-templates.php:374
247
  msgid "Save Settings"
248
  msgstr ""
249
 
250
- #: ../admin/admin-functions.php:197
251
  #, php-format
252
  msgid ""
253
  "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target="
@@ -255,325 +434,326 @@ msgid ""
255
  "features, less bugs and better support for everyone. "
256
  msgstr ""
257
 
258
- #: ../admin/basic-info.php:10
259
  msgid "Basic Information"
260
  msgstr ""
261
 
262
- #: ../admin/basic-info.php:29
263
  #, php-format
264
  msgid "Version %s"
265
  msgstr ""
266
 
267
- #: ../admin/basic-info.php:30
268
  msgid "<strong>Profile Builder </strong>"
269
  msgstr ""
270
 
271
- #: ../admin/basic-info.php:31
272
  msgid ""
273
  "The best way to add front-end registration, edit profile and login forms."
274
  msgstr ""
275
 
276
- #: ../admin/basic-info.php:33
277
  msgid "For Modern User Interaction"
278
  msgstr ""
279
 
280
- #: ../admin/basic-info.php:36 ../features/login-widget/login-widget.php:59
281
- msgid "Login"
282
- msgstr ""
283
-
284
- #: ../admin/basic-info.php:37
285
  #, php-format
286
  msgid "Friction-less login using %s shortcode or a widget."
287
  msgstr ""
288
 
289
- #: ../admin/basic-info.php:40
290
  msgid "Registration"
291
  msgstr ""
292
 
293
- #: ../admin/basic-info.php:41
294
  #, php-format
295
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
296
  msgstr ""
297
 
298
- #: ../admin/basic-info.php:44
299
  msgid "Edit Profile"
300
  msgstr ""
301
 
302
- #: ../admin/basic-info.php:45
303
  #, php-format
304
  msgid "Straight forward edit profile forms using %s shortcode."
305
  msgstr ""
306
 
307
- #: ../admin/basic-info.php:51
308
  msgid "Extra Features"
309
  msgstr ""
310
 
311
- #: ../admin/basic-info.php:52
312
  msgid ""
313
  "Features that give you more control over your users, increased security and "
314
  "help you fight user registration spam."
315
  msgstr ""
316
 
317
- #: ../admin/basic-info.php:53
318
  msgid "Enable extra features"
319
  msgstr ""
320
 
321
- #: ../admin/basic-info.php:57
322
  msgid "Recover Password"
323
  msgstr ""
324
 
325
- #: ../admin/basic-info.php:58
326
  #, php-format
327
  msgid "Allow users to recover their password in the front-end using the %s."
328
  msgstr ""
329
 
330
- #: ../admin/basic-info.php:61
331
  msgid "Admin Approval (*)"
332
  msgstr ""
333
 
334
- #: ../admin/basic-info.php:62
335
  msgid ""
336
  "You decide who is a user on your website. Get notified via email or approve "
337
  "multiple users at once from the WordPress UI."
338
  msgstr ""
339
 
340
- #: ../admin/basic-info.php:65
341
  msgid "Email Confirmation"
342
  msgstr ""
343
 
344
- #: ../admin/basic-info.php:66
345
  msgid ""
346
  "Make sure users sign up with genuine emails. On registration users will "
347
  "receive a notification to confirm their email address."
348
  msgstr ""
349
 
350
- #: ../admin/basic-info.php:69
351
  msgid "Minimum Password Length and Strength Meter"
352
  msgstr ""
353
 
354
- #: ../admin/basic-info.php:70
355
  msgid ""
356
  "Eliminate weak passwords altogether by setting a minimum password length and "
357
  "enforcing a certain password strength."
358
  msgstr ""
359
 
360
- #: ../admin/basic-info.php:73
361
  msgid "Login with Email or Username"
362
  msgstr ""
363
 
364
- #: ../admin/basic-info.php:74
365
  msgid ""
366
  "Allow users to log in with their email or username when accessing your site."
367
  msgstr ""
368
 
369
- #: ../admin/basic-info.php:87
370
  msgid "Customize Your Forms The Way You Want (*)"
371
  msgstr ""
372
 
373
- #: ../admin/basic-info.php:88
374
  msgid ""
375
  "With Extra Profile Fields you can create the exact registration form your "
376
  "project needs."
377
  msgstr ""
378
 
379
- #: ../admin/basic-info.php:90
380
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
381
  msgstr ""
382
 
383
- #: ../admin/basic-info.php:92
384
  msgid "Get started with extra fields"
385
  msgstr ""
386
 
387
- #: ../admin/basic-info.php:95
388
  msgid "Avatar Upload"
389
  msgstr ""
390
 
391
- #: ../admin/basic-info.php:96
392
  msgid "Generic Uploads"
393
  msgstr ""
394
 
395
- #: ../admin/basic-info.php:97
396
  msgid "Agree To Terms Checkbox"
397
  msgstr ""
398
 
399
- #: ../admin/basic-info.php:98
400
  msgid "Datepicker"
401
  msgstr ""
402
 
403
- #: ../admin/basic-info.php:99
404
  msgid "reCAPTCHA"
405
  msgstr ""
406
 
407
- #: ../admin/basic-info.php:100
408
  msgid "Country Select"
409
  msgstr ""
410
 
411
- #: ../admin/basic-info.php:101
412
  msgid "Timezone Select"
413
  msgstr ""
414
 
415
- #: ../admin/basic-info.php:102
416
  msgid "Input / Hidden Input"
417
  msgstr ""
418
 
419
- #: ../admin/basic-info.php:103
420
  msgid "Checkbox"
421
  msgstr ""
422
 
423
- #: ../admin/basic-info.php:104
424
  msgid "Select"
425
  msgstr ""
426
 
427
- #: ../admin/basic-info.php:105
428
  msgid "Radio Buttons"
429
  msgstr ""
430
 
431
- #: ../admin/basic-info.php:106
432
  msgid "Textarea"
433
  msgstr ""
434
 
435
- #: ../admin/basic-info.php:115
436
  msgid "Powerful Modules (**)"
437
  msgstr ""
438
 
439
- #: ../admin/basic-info.php:116
440
  msgid ""
441
  "Everything you will need to manage your users is probably already available "
442
  "using the Pro Modules."
443
  msgstr ""
444
 
445
- #: ../admin/basic-info.php:118
446
  msgid "Enable your modules"
447
  msgstr ""
448
 
449
- #: ../admin/basic-info.php:121
450
  msgid "Find out more about PRO Modules"
451
  msgstr ""
452
 
453
- #: ../admin/basic-info.php:126 ../modules/modules.php:86
454
- #: ../modules/user-listing/userlisting.php:11
455
- #: ../modules/user-listing/userlisting.php:12
456
- #: ../modules/user-listing/userlisting.php:17
457
- #: ../modules/user-listing/userlisting.php:23
 
458
  msgid "User Listing"
459
  msgstr ""
460
 
461
- #: ../admin/basic-info.php:128
462
  msgid ""
463
  "Easy to edit templates for listing your website users as well as creating "
464
  "single user pages. Shortcode based, offering many options to customize your "
465
  "listings."
466
  msgstr ""
467
 
468
- #: ../admin/basic-info.php:130
469
  #, php-format
470
  msgid ""
471
  "To create a page containing the users registered to this current site/blog, "
472
  "insert the following shortcode in a page of your chosing: %s."
473
  msgstr ""
474
 
475
- #: ../admin/basic-info.php:134
476
  msgid "Email Customizer"
477
  msgstr ""
478
 
479
- #: ../admin/basic-info.php:135
480
  msgid ""
481
  "Personalize all emails sent to your users or admins. On registration, email "
482
  "confirmation, admin approval / un-approval."
483
  msgstr ""
484
 
485
- #: ../admin/basic-info.php:138
486
- #: ../modules/custom-redirects/custom_redirects_admin.php:32
487
- #: ../modules/custom-redirects/custom_redirects_admin.php:33
488
- #: ../modules/modules.php:107
489
  msgid "Custom Redirects"
490
  msgstr ""
491
 
492
- #: ../admin/basic-info.php:139
493
  msgid ""
494
  "Keep your users out of the WordPress dashboard, redirect them to the front-"
495
  "page after login or registration, everything is just a few clicks away."
496
  msgstr ""
497
 
498
- #: ../admin/basic-info.php:144 ../modules/modules.php:72
 
499
  msgid "Multiple Registration Forms"
500
  msgstr ""
501
 
502
- #: ../admin/basic-info.php:145
503
  msgid ""
504
  "Set up multiple registration forms with different fields for certain user "
505
  "roles. Capture different information from different types of users."
506
  msgstr ""
507
 
508
- #: ../admin/basic-info.php:148 ../modules/modules.php:79
 
509
  msgid "Multiple Edit-profile Forms"
510
  msgstr ""
511
 
512
- #: ../admin/basic-info.php:149
513
  msgid ""
514
  "Allow different user roles to edit their specific information. Set up "
515
  "multiple edit-profile forms with different fields for certain user roles."
516
  msgstr ""
517
 
518
- #: ../admin/basic-info.php:173
519
  #, php-format
520
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
521
  msgstr ""
522
 
523
- #: ../admin/basic-info.php:174
524
  #, php-format
525
  msgid "** only available in the %1$sPro version%2$s."
526
  msgstr ""
527
 
528
- #: ../admin/general-settings.php:42
529
  msgid "Load Profile Builder's own CSS file in the front-end:"
530
  msgstr ""
531
 
532
- #: ../admin/general-settings.php:45 ../admin/general-settings.php:58
533
- #: ../admin/general-settings.php:107
534
- #: ../modules/multiple-forms/register-forms.php:225
535
- #: ../modules/multiple-forms/register-forms.php:226
536
- #: ../modules/user-listing/userlisting.php:1303
 
537
  msgid "Yes"
538
  msgstr ""
539
 
540
- #: ../admin/general-settings.php:47
541
  #, php-format
542
  msgid "You can find the default file here: %1$s"
543
  msgstr ""
544
 
545
- #: ../admin/general-settings.php:54
546
  msgid "\"Email Confirmation\" Activated:"
547
  msgstr ""
548
 
549
- #: ../admin/general-settings.php:59 ../admin/general-settings.php:108
550
- #: ../modules/multiple-forms/register-forms.php:225
551
- #: ../modules/multiple-forms/register-forms.php:226
 
552
  msgid "No"
553
  msgstr ""
554
 
555
- #: ../admin/general-settings.php:62
556
  msgid ""
557
  "This works with front-end forms only. Recommended to redirect WP default "
558
  "registration to a Profile Builder one using \"Custom Redirects\" addon."
559
  msgstr ""
560
 
561
- #: ../admin/general-settings.php:64
562
  #, php-format
563
  msgid ""
564
  "You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
565
  "Email Confirmation%2$s."
566
  msgstr ""
567
 
568
- #: ../admin/general-settings.php:72
569
  msgid "\"Email Confirmation\" Landing Page:"
570
  msgstr ""
571
 
572
- #: ../admin/general-settings.php:77
573
  msgid "Existing Pages"
574
  msgstr ""
575
 
576
- #: ../admin/general-settings.php:92
577
  msgid ""
578
  "Specify the page where the users will be directed when confirming the email "
579
  "account. This page can differ from the register page(s) and can be changed "
@@ -581,29 +761,29 @@ msgid ""
581
  "for the user."
582
  msgstr ""
583
 
584
- #: ../admin/general-settings.php:103
585
  msgid "\"Admin Approval\" Activated:"
586
  msgstr ""
587
 
588
- #: ../admin/general-settings.php:111
589
  #, php-format
590
  msgid ""
591
  "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
592
  msgstr ""
593
 
594
- #: ../admin/general-settings.php:118
595
  msgid "\"Admin Approval\" on User Role:"
596
  msgstr ""
597
 
598
- #: ../admin/general-settings.php:137
599
  msgid "Select on what user roles to activate Admin Approval."
600
  msgstr ""
601
 
602
- #: ../admin/general-settings.php:149
603
  msgid "\"Admin Approval\" Feature:"
604
  msgstr ""
605
 
606
- #: ../admin/general-settings.php:152
607
  #, php-format
608
  msgid ""
609
  "You decide who is a user on your website. Get notified via email or approve "
@@ -611,101 +791,103 @@ msgid ""
611
  "upgrading to %1$sHobbyist or PRO versions%2$s."
612
  msgstr ""
613
 
614
- #: ../admin/general-settings.php:159
615
  msgid "Allow Users to Log in With:"
616
  msgstr ""
617
 
618
- #: ../admin/general-settings.php:163
619
  msgid "Username and Email"
620
  msgstr ""
621
 
622
- #: ../admin/general-settings.php:164 ../admin/manage-fields.php:159
623
- #: ../features/admin-approval/class-admin-approval.php:177
624
- #: ../features/email-confirmation/class-email-confirmation.php:167
625
- #: ../modules/custom-redirects/custom_redirects_admin.php:56
626
- #: ../modules/email-customizer/email-customizer.php:28
627
- #: ../modules/user-listing/userlisting.php:92
628
- #: ../modules/user-listing/userlisting.php:248
629
- #: ../modules/user-listing/userlisting.php:611
630
- #: ../modules/user-listing/userlisting.php:1259
 
631
  msgid "Username"
632
  msgstr ""
633
 
634
- #: ../admin/general-settings.php:165 ../front-end/login.php:173
635
- #: ../modules/email-customizer/email-customizer.php:29
636
- #: ../modules/user-listing/userlisting.php:617
637
- #: ../modules/user-listing/userlisting.php:1260
 
638
  msgid "Email"
639
  msgstr ""
640
 
641
- #: ../admin/general-settings.php:168
642
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
643
  msgstr ""
644
 
645
- #: ../admin/general-settings.php:169
646
  msgid "\"Username\" - users can Log In only with Username."
647
  msgstr ""
648
 
649
- #: ../admin/general-settings.php:170
650
  msgid "\"Email\" - users can Log In only with Email."
651
  msgstr ""
652
 
653
- #: ../admin/general-settings.php:177
654
  msgid "Minimum Password Length:"
655
  msgstr ""
656
 
657
- #: ../admin/general-settings.php:182
658
  msgid ""
659
  "Enter the minimum characters the password should have. Leave empty for no "
660
  "minimum limit"
661
  msgstr ""
662
 
663
- #: ../admin/general-settings.php:189
664
  msgid "Minimum Password Strength:"
665
  msgstr ""
666
 
667
- #: ../admin/general-settings.php:193
668
  msgid "Disabled"
669
  msgstr ""
670
 
671
- #: ../admin/manage-fields.php:12
672
  msgid "Manage Fields"
673
  msgstr ""
674
 
675
- #: ../admin/manage-fields.php:13
676
  msgid "Manage Default and Extra Fields"
677
  msgstr ""
678
 
679
- #: ../admin/manage-fields.php:68
680
  msgid "Choose one of the supported field types"
681
  msgstr ""
682
 
683
- #: ../admin/manage-fields.php:70
684
  #, php-format
685
  msgid ""
686
  ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO "
687
  "versions</a>."
688
  msgstr ""
689
 
690
- #: ../admin/manage-fields.php:94
691
  msgid "Field Title"
692
  msgstr ""
693
 
694
- #: ../admin/manage-fields.php:94
695
  msgid "Title of the field"
696
  msgstr ""
697
 
698
- #: ../admin/manage-fields.php:95
699
- #: ../modules/multiple-forms/edit-profile-forms.php:241
700
- #: ../modules/multiple-forms/register-forms.php:262
701
  msgid "Field"
702
  msgstr ""
703
 
704
- #: ../admin/manage-fields.php:96
705
  msgid "Meta-name"
706
  msgstr ""
707
 
708
- #: ../admin/manage-fields.php:96
709
  msgid ""
710
  "Use this in conjuction with WordPress functions to display the value in the "
711
  "page of your choosing<br/>Auto-completed but in some cases editable (in "
@@ -713,1610 +895,1613 @@ msgid ""
713
  "very big user-count"
714
  msgstr ""
715
 
716
- #: ../admin/manage-fields.php:97
717
- #: ../modules/custom-redirects/custom_redirects_admin.php:65
718
- #: ../modules/custom-redirects/custom_redirects_admin.php:95
719
- #: ../modules/custom-redirects/custom_redirects_admin.php:114
720
- #: ../modules/custom-redirects/custom_redirects_admin.php:139
721
- #: ../modules/multiple-forms/edit-profile-forms.php:242
722
- #: ../modules/multiple-forms/register-forms.php:263
723
  msgid "ID"
724
  msgstr ""
725
 
726
- #: ../admin/manage-fields.php:97
727
- #: ../modules/multiple-forms/edit-profile-forms.php:242
728
- #: ../modules/multiple-forms/register-forms.php:263
729
  msgid ""
730
  "A unique, auto-generated ID for this particular field<br/>You can use this "
731
  "in conjuction with filters to target this element if needed<br/>Can't be "
732
  "edited"
733
  msgstr ""
734
 
735
- #: ../admin/manage-fields.php:98
736
  msgid "Description"
737
  msgstr ""
738
 
739
- #: ../admin/manage-fields.php:98
740
  msgid ""
741
  "Enter a (detailed) description of the option for end users to read<br/"
742
  ">Optional"
743
  msgstr ""
744
 
745
- #: ../admin/manage-fields.php:99
746
  msgid "Row Count"
747
  msgstr ""
748
 
749
- #: ../admin/manage-fields.php:99
750
  msgid ""
751
  "Specify the number of rows for a 'Textarea' field<br/>If not specified, "
752
  "defaults to 5"
753
  msgstr ""
754
 
755
- #: ../admin/manage-fields.php:100
756
  msgid "Allowed Image Extensions"
757
  msgstr ""
758
 
759
- #: ../admin/manage-fields.php:100
760
  msgid ""
761
  "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
762
  "ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
763
  msgstr ""
764
 
765
- #: ../admin/manage-fields.php:101
766
  msgid "Allowed Upload Extensions"
767
  msgstr ""
768
 
769
- #: ../admin/manage-fields.php:101
770
  msgid ""
771
  "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
772
  "ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
773
  "extensions (.*)"
774
  msgstr ""
775
 
776
- #: ../admin/manage-fields.php:102
777
  msgid "Avatar Size"
778
  msgstr ""
779
 
780
- #: ../admin/manage-fields.php:102
781
  msgid ""
782
  "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
783
  "specified, defaults to 100"
784
  msgstr ""
785
 
786
- #: ../admin/manage-fields.php:103
787
  msgid "Date-format"
788
  msgstr ""
789
 
790
- #: ../admin/manage-fields.php:103
791
  msgid ""
792
  "Specify the format of the date when using Datepicker<br/>Valid options: mm/"
793
  "dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not "
794
  "specified, defaults to mm/dd/yy"
795
  msgstr ""
796
 
797
- #: ../admin/manage-fields.php:104
798
  msgid "Terms of Agreement"
799
  msgstr ""
800
 
801
- #: ../admin/manage-fields.php:104
802
  msgid ""
803
  "Enter a detailed description of the temrs of agreement for the user to read."
804
  "<br/>Links can be inserted by using standard HTML syntax: &lt;a href="
805
  "\"custom_url\"&gt;custom_text&lt;/a&gt;"
806
  msgstr ""
807
 
808
- #: ../admin/manage-fields.php:105
809
  msgid "Options"
810
  msgstr ""
811
 
812
- #: ../admin/manage-fields.php:105
813
  msgid ""
814
  "Enter a comma separated list of values<br/>This can be anything, as it is "
815
  "hidden from the user, but should not contain special characters or "
816
  "apostrophes"
817
  msgstr ""
818
 
819
- #: ../admin/manage-fields.php:106
820
  msgid "Labels"
821
  msgstr ""
822
 
823
- #: ../admin/manage-fields.php:106
824
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
825
  msgstr ""
826
 
827
- #: ../admin/manage-fields.php:107
828
  msgid "Site Key"
829
  msgstr ""
830
 
831
- #: ../admin/manage-fields.php:107
832
  msgid ""
833
  "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target="
834
  "\"_blank\">www.google.com/recaptcha</a>"
835
  msgstr ""
836
 
837
- #: ../admin/manage-fields.php:108
838
  msgid "Secret Key"
839
  msgstr ""
840
 
841
- #: ../admin/manage-fields.php:108
842
  msgid ""
843
  "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" "
844
  "target=\"_blank\">www.google.com/recaptcha</a>"
845
  msgstr ""
846
 
847
- #: ../admin/manage-fields.php:109
848
  msgid "Display on PB forms"
849
  msgstr ""
850
 
851
- #: ../admin/manage-fields.php:109
852
  msgid "PB Login"
853
  msgstr ""
854
 
855
- #: ../admin/manage-fields.php:109
856
  msgid "PB Register"
857
  msgstr ""
858
 
859
- #: ../admin/manage-fields.php:109
860
  msgid "PB Recover Password"
861
  msgstr ""
862
 
863
- #: ../admin/manage-fields.php:109
864
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
865
  msgstr ""
866
 
867
- #: ../admin/manage-fields.php:110
868
  msgid "Display on default WP forms"
869
  msgstr ""
870
 
871
- #: ../admin/manage-fields.php:110
872
  msgid "Default WP Login"
873
  msgstr ""
874
 
875
- #: ../admin/manage-fields.php:110
876
  msgid "Default WP Register"
877
  msgstr ""
878
 
879
- #: ../admin/manage-fields.php:110
880
  msgid "Default WP Recover Password"
881
  msgstr ""
882
 
883
- #: ../admin/manage-fields.php:110
884
  msgid "Select on which default WP forms to display reCAPTCHA"
885
  msgstr ""
886
 
887
- #: ../admin/manage-fields.php:111
888
  msgid "User Roles"
889
  msgstr ""
890
 
891
- #: ../admin/manage-fields.php:111
892
  msgid ""
893
  "Select which user roles to show to the user ( drag and drop to re-order )"
894
  msgstr ""
895
 
896
- #: ../admin/manage-fields.php:112
897
  msgid "User Roles Order"
898
  msgstr ""
899
 
900
- #: ../admin/manage-fields.php:112
901
  msgid "Save the user role order from the user roles checkboxes"
902
  msgstr ""
903
 
904
- #: ../admin/manage-fields.php:113
905
  msgid "Default Value"
906
  msgstr ""
907
 
908
- #: ../admin/manage-fields.php:113
909
  msgid "Default value of the field"
910
  msgstr ""
911
 
912
- #: ../admin/manage-fields.php:114 ../admin/manage-fields.php:116
913
- #: ../admin/manage-fields.php:117
 
914
  msgid "Default Option"
915
  msgstr ""
916
 
917
- #: ../admin/manage-fields.php:114
918
  msgid "Specify the option which should be selected by default"
919
  msgstr ""
920
 
921
- #: ../admin/manage-fields.php:115
922
  msgid "Default Option(s)"
923
  msgstr ""
924
 
925
- #: ../admin/manage-fields.php:115
926
  msgid ""
927
  "Specify the option which should be checked by default<br/>If there are "
928
  "multiple values, separate them with a ',' (comma)"
929
  msgstr ""
930
 
931
- #: ../admin/manage-fields.php:116 ../admin/manage-fields.php:117
 
932
  msgid "Default option of the field"
933
  msgstr ""
934
 
935
- #: ../admin/manage-fields.php:118
936
  msgid "Default Content"
937
  msgstr ""
938
 
939
- #: ../admin/manage-fields.php:118
940
  msgid "Default value of the textarea"
941
  msgstr ""
942
 
943
- #: ../admin/manage-fields.php:119
944
  msgid "Required"
945
  msgstr ""
946
 
947
- #: ../admin/manage-fields.php:119
948
  msgid "Whether the field is required or not"
949
  msgstr ""
950
 
951
- #: ../admin/manage-fields.php:120
952
  msgid "Overwrite Existing"
953
  msgstr ""
954
 
955
- #: ../admin/manage-fields.php:120
956
  msgid ""
957
  "Selecting 'Yes' will add the field to the list, but will overwrite any other "
958
  "field in the database that has the same meta-name<br/>Use this at your own "
959
  "risk"
960
  msgstr ""
961
 
962
- #: ../admin/manage-fields.php:126
963
  msgid "Field Properties"
964
  msgstr ""
965
 
966
- #: ../admin/manage-fields.php:139
967
  msgid "Registration & Edit Profile"
968
  msgstr ""
969
 
970
- #: ../admin/manage-fields.php:158
971
  msgid "Name"
972
  msgstr ""
973
 
974
- #: ../admin/manage-fields.php:159
975
  msgid "Usernames cannot be changed."
976
  msgstr ""
977
 
978
- #: ../admin/manage-fields.php:160
979
- msgid "First Name"
980
- msgstr ""
981
-
982
- #: ../admin/manage-fields.php:161
983
- msgid "Last Name"
984
- msgstr ""
985
-
986
- #: ../admin/manage-fields.php:162 ../modules/user-listing/userlisting.php:650
987
  msgid "Nickname"
988
  msgstr ""
989
 
990
- #: ../admin/manage-fields.php:163
991
  msgid "Display name publicly as"
992
  msgstr ""
993
 
994
- #: ../admin/manage-fields.php:164
995
  msgid "Contact Info"
996
  msgstr ""
997
 
998
- #: ../admin/manage-fields.php:165
999
- #: ../features/admin-approval/class-admin-approval.php:180
1000
- #: ../features/email-confirmation/class-email-confirmation.php:168
1001
- #: ../modules/user-listing/userlisting.php:98
1002
  msgid "E-mail"
1003
  msgstr ""
1004
 
1005
- #: ../admin/manage-fields.php:166
1006
- #: ../modules/email-customizer/email-customizer.php:32
1007
- #: ../modules/user-listing/userlisting.php:101
1008
- #: ../modules/user-listing/userlisting.php:632
1009
- #: ../modules/user-listing/userlisting.php:1261
1010
  msgid "Website"
1011
  msgstr ""
1012
 
1013
- #: ../admin/manage-fields.php:170
1014
  msgid "AIM"
1015
  msgstr ""
1016
 
1017
- #: ../admin/manage-fields.php:171
1018
  msgid "Yahoo IM"
1019
  msgstr ""
1020
 
1021
- #: ../admin/manage-fields.php:172
1022
  msgid "Jabber / Google Talk"
1023
  msgstr ""
1024
 
1025
- #: ../admin/manage-fields.php:175
1026
  msgid "About Yourself"
1027
  msgstr ""
1028
 
1029
- #: ../admin/manage-fields.php:176 ../modules/user-listing/userlisting.php:104
1030
- #: ../modules/user-listing/userlisting.php:635
1031
- #: ../modules/user-listing/userlisting.php:1262
 
1032
  msgid "Biographical Info"
1033
  msgstr ""
1034
 
1035
- #: ../admin/manage-fields.php:176
1036
  msgid ""
1037
  "Share a little biographical information to fill out your profile. This may "
1038
  "be shown publicly."
1039
  msgstr ""
1040
 
1041
- #: ../admin/manage-fields.php:177 ../front-end/recover.php:75
1042
- #: ../modules/email-customizer/email-customizer.php:30
 
1043
  msgid "Password"
1044
  msgstr ""
1045
 
1046
- #: ../admin/manage-fields.php:177
1047
  msgid "Type your password."
1048
  msgstr ""
1049
 
1050
- #: ../admin/manage-fields.php:178 ../front-end/recover.php:80
 
1051
  msgid "Repeat Password"
1052
  msgstr ""
1053
 
1054
- #: ../admin/manage-fields.php:178
1055
  msgid "Type your password again. "
1056
  msgstr ""
1057
 
1058
- #: ../admin/manage-fields.php:237
1059
  msgid "Afghanistan"
1060
  msgstr ""
1061
 
1062
- #: ../admin/manage-fields.php:238
1063
  msgid "Aland Islands"
1064
  msgstr ""
1065
 
1066
- #: ../admin/manage-fields.php:239
1067
  msgid "Albania"
1068
  msgstr ""
1069
 
1070
- #: ../admin/manage-fields.php:240
1071
  msgid "Algeria"
1072
  msgstr ""
1073
 
1074
- #: ../admin/manage-fields.php:241
1075
  msgid "American Samoa"
1076
  msgstr ""
1077
 
1078
- #: ../admin/manage-fields.php:242
1079
  msgid "Andorra"
1080
  msgstr ""
1081
 
1082
- #: ../admin/manage-fields.php:243
1083
  msgid "Angola"
1084
  msgstr ""
1085
 
1086
- #: ../admin/manage-fields.php:244
1087
  msgid "Anguilla"
1088
  msgstr ""
1089
 
1090
- #: ../admin/manage-fields.php:245
1091
  msgid "Antarctica"
1092
  msgstr ""
1093
 
1094
- #: ../admin/manage-fields.php:246
1095
  msgid "Antigua and Barbuda"
1096
  msgstr ""
1097
 
1098
- #: ../admin/manage-fields.php:247
1099
  msgid "Argentina"
1100
  msgstr ""
1101
 
1102
- #: ../admin/manage-fields.php:248
1103
  msgid "Armenia"
1104
  msgstr ""
1105
 
1106
- #: ../admin/manage-fields.php:249
1107
  msgid "Aruba"
1108
  msgstr ""
1109
 
1110
- #: ../admin/manage-fields.php:250
1111
  msgid "Australia"
1112
  msgstr ""
1113
 
1114
- #: ../admin/manage-fields.php:251
1115
  msgid "Austria"
1116
  msgstr ""
1117
 
1118
- #: ../admin/manage-fields.php:252
1119
  msgid "Azerbaijan"
1120
  msgstr ""
1121
 
1122
- #: ../admin/manage-fields.php:253
1123
  msgid "Bahamas"
1124
  msgstr ""
1125
 
1126
- #: ../admin/manage-fields.php:254
1127
  msgid "Bahrain"
1128
  msgstr ""
1129
 
1130
- #: ../admin/manage-fields.php:255
1131
  msgid "Bangladesh"
1132
  msgstr ""
1133
 
1134
- #: ../admin/manage-fields.php:256
1135
  msgid "Barbados"
1136
  msgstr ""
1137
 
1138
- #: ../admin/manage-fields.php:257
1139
  msgid "Belarus"
1140
  msgstr ""
1141
 
1142
- #: ../admin/manage-fields.php:258
1143
  msgid "Belgium"
1144
  msgstr ""
1145
 
1146
- #: ../admin/manage-fields.php:259
1147
  msgid "Belize"
1148
  msgstr ""
1149
 
1150
- #: ../admin/manage-fields.php:260
1151
  msgid "Benin"
1152
  msgstr ""
1153
 
1154
- #: ../admin/manage-fields.php:261
1155
  msgid "Bermuda"
1156
  msgstr ""
1157
 
1158
- #: ../admin/manage-fields.php:262
1159
  msgid "Bhutan"
1160
  msgstr ""
1161
 
1162
- #: ../admin/manage-fields.php:263
1163
  msgid "Bolivia"
1164
  msgstr ""
1165
 
1166
- #: ../admin/manage-fields.php:264
1167
  msgid "Bonaire, Saint Eustatius and Saba"
1168
  msgstr ""
1169
 
1170
- #: ../admin/manage-fields.php:265
1171
  msgid "Bosnia and Herzegovina"
1172
  msgstr ""
1173
 
1174
- #: ../admin/manage-fields.php:266
1175
  msgid "Botswana"
1176
  msgstr ""
1177
 
1178
- #: ../admin/manage-fields.php:267
1179
  msgid "Bouvet Island"
1180
  msgstr ""
1181
 
1182
- #: ../admin/manage-fields.php:268
1183
  msgid "Brazil"
1184
  msgstr ""
1185
 
1186
- #: ../admin/manage-fields.php:269
1187
  msgid "British Indian Ocean Territory"
1188
  msgstr ""
1189
 
1190
- #: ../admin/manage-fields.php:270
1191
  msgid "British Virgin Islands"
1192
  msgstr ""
1193
 
1194
- #: ../admin/manage-fields.php:271
1195
  msgid "Brunei"
1196
  msgstr ""
1197
 
1198
- #: ../admin/manage-fields.php:272
1199
  msgid "Bulgaria"
1200
  msgstr ""
1201
 
1202
- #: ../admin/manage-fields.php:273
1203
  msgid "Burkina Faso"
1204
  msgstr ""
1205
 
1206
- #: ../admin/manage-fields.php:274
1207
  msgid "Burundi"
1208
  msgstr ""
1209
 
1210
- #: ../admin/manage-fields.php:275
1211
  msgid "Cambodia"
1212
  msgstr ""
1213
 
1214
- #: ../admin/manage-fields.php:276
1215
  msgid "Cameroon"
1216
  msgstr ""
1217
 
1218
- #: ../admin/manage-fields.php:277
1219
  msgid "Canada"
1220
  msgstr ""
1221
 
1222
- #: ../admin/manage-fields.php:278
1223
  msgid "Cape Verde"
1224
  msgstr ""
1225
 
1226
- #: ../admin/manage-fields.php:279
1227
  msgid "Cayman Islands"
1228
  msgstr ""
1229
 
1230
- #: ../admin/manage-fields.php:280
1231
  msgid "Central African Republic"
1232
  msgstr ""
1233
 
1234
- #: ../admin/manage-fields.php:281
1235
  msgid "Chad"
1236
  msgstr ""
1237
 
1238
- #: ../admin/manage-fields.php:282
1239
  msgid "Chile"
1240
  msgstr ""
1241
 
1242
- #: ../admin/manage-fields.php:283
1243
  msgid "China"
1244
  msgstr ""
1245
 
1246
- #: ../admin/manage-fields.php:284
1247
  msgid "Christmas Island"
1248
  msgstr ""
1249
 
1250
- #: ../admin/manage-fields.php:285
1251
  msgid "Cocos Islands"
1252
  msgstr ""
1253
 
1254
- #: ../admin/manage-fields.php:286
1255
  msgid "Colombia"
1256
  msgstr ""
1257
 
1258
- #: ../admin/manage-fields.php:287
1259
  msgid "Comoros"
1260
  msgstr ""
1261
 
1262
- #: ../admin/manage-fields.php:288
1263
  msgid "Cook Islands"
1264
  msgstr ""
1265
 
1266
- #: ../admin/manage-fields.php:289
1267
  msgid "Costa Rica"
1268
  msgstr ""
1269
 
1270
- #: ../admin/manage-fields.php:290
1271
  msgid "Croatia"
1272
  msgstr ""
1273
 
1274
- #: ../admin/manage-fields.php:291
1275
  msgid "Cuba"
1276
  msgstr ""
1277
 
1278
- #: ../admin/manage-fields.php:292
1279
  msgid "Curacao"
1280
  msgstr ""
1281
 
1282
- #: ../admin/manage-fields.php:293
1283
  msgid "Cyprus"
1284
  msgstr ""
1285
 
1286
- #: ../admin/manage-fields.php:294
1287
  msgid "Czech Republic"
1288
  msgstr ""
1289
 
1290
- #: ../admin/manage-fields.php:295
1291
  msgid "Democratic Republic of the Congo"
1292
  msgstr ""
1293
 
1294
- #: ../admin/manage-fields.php:296
1295
  msgid "Denmark"
1296
  msgstr ""
1297
 
1298
- #: ../admin/manage-fields.php:297
1299
  msgid "Djibouti"
1300
  msgstr ""
1301
 
1302
- #: ../admin/manage-fields.php:298
1303
  msgid "Dominica"
1304
  msgstr ""
1305
 
1306
- #: ../admin/manage-fields.php:299
1307
  msgid "Dominican Republic"
1308
  msgstr ""
1309
 
1310
- #: ../admin/manage-fields.php:300
1311
  msgid "East Timor"
1312
  msgstr ""
1313
 
1314
- #: ../admin/manage-fields.php:301
1315
  msgid "Ecuador"
1316
  msgstr ""
1317
 
1318
- #: ../admin/manage-fields.php:302
1319
  msgid "Egypt"
1320
  msgstr ""
1321
 
1322
- #: ../admin/manage-fields.php:303
1323
  msgid "El Salvador"
1324
  msgstr ""
1325
 
1326
- #: ../admin/manage-fields.php:304
1327
  msgid "Equatorial Guinea"
1328
  msgstr ""
1329
 
1330
- #: ../admin/manage-fields.php:305
1331
  msgid "Eritrea"
1332
  msgstr ""
1333
 
1334
- #: ../admin/manage-fields.php:306
1335
  msgid "Estonia"
1336
  msgstr ""
1337
 
1338
- #: ../admin/manage-fields.php:307
1339
  msgid "Ethiopia"
1340
  msgstr ""
1341
 
1342
- #: ../admin/manage-fields.php:308
1343
  msgid "Falkland Islands"
1344
  msgstr ""
1345
 
1346
- #: ../admin/manage-fields.php:309
1347
  msgid "Faroe Islands"
1348
  msgstr ""
1349
 
1350
- #: ../admin/manage-fields.php:310
1351
  msgid "Fiji"
1352
  msgstr ""
1353
 
1354
- #: ../admin/manage-fields.php:311
1355
  msgid "Finland"
1356
  msgstr ""
1357
 
1358
- #: ../admin/manage-fields.php:312
1359
  msgid "France"
1360
  msgstr ""
1361
 
1362
- #: ../admin/manage-fields.php:313
1363
  msgid "French Guiana"
1364
  msgstr ""
1365
 
1366
- #: ../admin/manage-fields.php:314
1367
  msgid "French Polynesia"
1368
  msgstr ""
1369
 
1370
- #: ../admin/manage-fields.php:315
1371
  msgid "French Southern Territories"
1372
  msgstr ""
1373
 
1374
- #: ../admin/manage-fields.php:316
1375
  msgid "Gabon"
1376
  msgstr ""
1377
 
1378
- #: ../admin/manage-fields.php:317
1379
  msgid "Gambia"
1380
  msgstr ""
1381
 
1382
- #: ../admin/manage-fields.php:318
1383
  msgid "Georgia"
1384
  msgstr ""
1385
 
1386
- #: ../admin/manage-fields.php:319
1387
  msgid "Germany"
1388
  msgstr ""
1389
 
1390
- #: ../admin/manage-fields.php:320
1391
  msgid "Ghana"
1392
  msgstr ""
1393
 
1394
- #: ../admin/manage-fields.php:321
1395
  msgid "Gibraltar"
1396
  msgstr ""
1397
 
1398
- #: ../admin/manage-fields.php:322
1399
  msgid "Greece"
1400
  msgstr ""
1401
 
1402
- #: ../admin/manage-fields.php:323
1403
  msgid "Greenland"
1404
  msgstr ""
1405
 
1406
- #: ../admin/manage-fields.php:324
1407
  msgid "Grenada"
1408
  msgstr ""
1409
 
1410
- #: ../admin/manage-fields.php:325
1411
  msgid "Guadeloupe"
1412
  msgstr ""
1413
 
1414
- #: ../admin/manage-fields.php:326
1415
  msgid "Guam"
1416
  msgstr ""
1417
 
1418
- #: ../admin/manage-fields.php:327
1419
  msgid "Guatemala"
1420
  msgstr ""
1421
 
1422
- #: ../admin/manage-fields.php:328
1423
  msgid "Guernsey"
1424
  msgstr ""
1425
 
1426
- #: ../admin/manage-fields.php:329
1427
  msgid "Guinea"
1428
  msgstr ""
1429
 
1430
- #: ../admin/manage-fields.php:330
1431
  msgid "Guinea-Bissau"
1432
  msgstr ""
1433
 
1434
- #: ../admin/manage-fields.php:331
1435
  msgid "Guyana"
1436
  msgstr ""
1437
 
1438
- #: ../admin/manage-fields.php:332
1439
  msgid "Haiti"
1440
  msgstr ""
1441
 
1442
- #: ../admin/manage-fields.php:333
1443
  msgid "Heard Island and McDonald Islands"
1444
  msgstr ""
1445
 
1446
- #: ../admin/manage-fields.php:334
1447
  msgid "Honduras"
1448
  msgstr ""
1449
 
1450
- #: ../admin/manage-fields.php:335
1451
  msgid "Hong Kong"
1452
  msgstr ""
1453
 
1454
- #: ../admin/manage-fields.php:336
1455
  msgid "Hungary"
1456
  msgstr ""
1457
 
1458
- #: ../admin/manage-fields.php:337
1459
  msgid "Iceland"
1460
  msgstr ""
1461
 
1462
- #: ../admin/manage-fields.php:338
1463
  msgid "India"
1464
  msgstr ""
1465
 
1466
- #: ../admin/manage-fields.php:339
1467
  msgid "Indonesia"
1468
  msgstr ""
1469
 
1470
- #: ../admin/manage-fields.php:340
1471
  msgid "Iran"
1472
  msgstr ""
1473
 
1474
- #: ../admin/manage-fields.php:341
1475
  msgid "Iraq"
1476
  msgstr ""
1477
 
1478
- #: ../admin/manage-fields.php:342
1479
  msgid "Ireland"
1480
  msgstr ""
1481
 
1482
- #: ../admin/manage-fields.php:343
1483
  msgid "Isle of Man"
1484
  msgstr ""
1485
 
1486
- #: ../admin/manage-fields.php:344
1487
  msgid "Israel"
1488
  msgstr ""
1489
 
1490
- #: ../admin/manage-fields.php:345
1491
  msgid "Italy"
1492
  msgstr ""
1493
 
1494
- #: ../admin/manage-fields.php:346
1495
  msgid "Ivory Coast"
1496
  msgstr ""
1497
 
1498
- #: ../admin/manage-fields.php:347
1499
  msgid "Jamaica"
1500
  msgstr ""
1501
 
1502
- #: ../admin/manage-fields.php:348
1503
  msgid "Japan"
1504
  msgstr ""
1505
 
1506
- #: ../admin/manage-fields.php:349
1507
  msgid "Jersey"
1508
  msgstr ""
1509
 
1510
- #: ../admin/manage-fields.php:350
1511
  msgid "Jordan"
1512
  msgstr ""
1513
 
1514
- #: ../admin/manage-fields.php:351
1515
  msgid "Kazakhstan"
1516
  msgstr ""
1517
 
1518
- #: ../admin/manage-fields.php:352
1519
  msgid "Kenya"
1520
  msgstr ""
1521
 
1522
- #: ../admin/manage-fields.php:353
1523
  msgid "Kiribati"
1524
  msgstr ""
1525
 
1526
- #: ../admin/manage-fields.php:354
1527
  msgid "Kosovo"
1528
  msgstr ""
1529
 
1530
- #: ../admin/manage-fields.php:355
1531
  msgid "Kuwait"
1532
  msgstr ""
1533
 
1534
- #: ../admin/manage-fields.php:356
1535
  msgid "Kyrgyzstan"
1536
  msgstr ""
1537
 
1538
- #: ../admin/manage-fields.php:357
1539
  msgid "Laos"
1540
  msgstr ""
1541
 
1542
- #: ../admin/manage-fields.php:358
1543
  msgid "Latvia"
1544
  msgstr ""
1545
 
1546
- #: ../admin/manage-fields.php:359
1547
  msgid "Lebanon"
1548
  msgstr ""
1549
 
1550
- #: ../admin/manage-fields.php:360
1551
  msgid "Lesotho"
1552
  msgstr ""
1553
 
1554
- #: ../admin/manage-fields.php:361
1555
  msgid "Liberia"
1556
  msgstr ""
1557
 
1558
- #: ../admin/manage-fields.php:362
1559
  msgid "Libya"
1560
  msgstr ""
1561
 
1562
- #: ../admin/manage-fields.php:363
1563
  msgid "Liechtenstein"
1564
  msgstr ""
1565
 
1566
- #: ../admin/manage-fields.php:364
1567
  msgid "Lithuania"
1568
  msgstr ""
1569
 
1570
- #: ../admin/manage-fields.php:365
1571
  msgid "Luxembourg"
1572
  msgstr ""
1573
 
1574
- #: ../admin/manage-fields.php:366
1575
  msgid "Macao"
1576
  msgstr ""
1577
 
1578
- #: ../admin/manage-fields.php:367
1579
  msgid "Macedonia"
1580
  msgstr ""
1581
 
1582
- #: ../admin/manage-fields.php:368
1583
  msgid "Madagascar"
1584
  msgstr ""
1585
 
1586
- #: ../admin/manage-fields.php:369
1587
  msgid "Malawi"
1588
  msgstr ""
1589
 
1590
- #: ../admin/manage-fields.php:370
1591
  msgid "Malaysia"
1592
  msgstr ""
1593
 
1594
- #: ../admin/manage-fields.php:371
1595
  msgid "Maldives"
1596
  msgstr ""
1597
 
1598
- #: ../admin/manage-fields.php:372
1599
  msgid "Mali"
1600
  msgstr ""
1601
 
1602
- #: ../admin/manage-fields.php:373
1603
  msgid "Malta"
1604
  msgstr ""
1605
 
1606
- #: ../admin/manage-fields.php:374
1607
  msgid "Marshall Islands"
1608
  msgstr ""
1609
 
1610
- #: ../admin/manage-fields.php:375
1611
  msgid "Martinique"
1612
  msgstr ""
1613
 
1614
- #: ../admin/manage-fields.php:376
1615
  msgid "Mauritania"
1616
  msgstr ""
1617
 
1618
- #: ../admin/manage-fields.php:377
1619
  msgid "Mauritius"
1620
  msgstr ""
1621
 
1622
- #: ../admin/manage-fields.php:378
1623
  msgid "Mayotte"
1624
  msgstr ""
1625
 
1626
- #: ../admin/manage-fields.php:379
1627
  msgid "Mexico"
1628
  msgstr ""
1629
 
1630
- #: ../admin/manage-fields.php:380
1631
  msgid "Micronesia"
1632
  msgstr ""
1633
 
1634
- #: ../admin/manage-fields.php:381
1635
  msgid "Moldova"
1636
  msgstr ""
1637
 
1638
- #: ../admin/manage-fields.php:382
1639
  msgid "Monaco"
1640
  msgstr ""
1641
 
1642
- #: ../admin/manage-fields.php:383
1643
  msgid "Mongolia"
1644
  msgstr ""
1645
 
1646
- #: ../admin/manage-fields.php:384
1647
  msgid "Montenegro"
1648
  msgstr ""
1649
 
1650
- #: ../admin/manage-fields.php:385
1651
  msgid "Montserrat"
1652
  msgstr ""
1653
 
1654
- #: ../admin/manage-fields.php:386
1655
  msgid "Morocco"
1656
  msgstr ""
1657
 
1658
- #: ../admin/manage-fields.php:387
1659
  msgid "Mozambique"
1660
  msgstr ""
1661
 
1662
- #: ../admin/manage-fields.php:388
1663
  msgid "Myanmar"
1664
  msgstr ""
1665
 
1666
- #: ../admin/manage-fields.php:389
1667
  msgid "Namibia"
1668
  msgstr ""
1669
 
1670
- #: ../admin/manage-fields.php:390
1671
  msgid "Nauru"
1672
  msgstr ""
1673
 
1674
- #: ../admin/manage-fields.php:391
1675
  msgid "Nepal"
1676
  msgstr ""
1677
 
1678
- #: ../admin/manage-fields.php:392
1679
  msgid "Netherlands"
1680
  msgstr ""
1681
 
1682
- #: ../admin/manage-fields.php:393
1683
  msgid "New Caledonia"
1684
  msgstr ""
1685
 
1686
- #: ../admin/manage-fields.php:394
1687
  msgid "New Zealand"
1688
  msgstr ""
1689
 
1690
- #: ../admin/manage-fields.php:395
1691
  msgid "Nicaragua"
1692
  msgstr ""
1693
 
1694
- #: ../admin/manage-fields.php:396
1695
  msgid "Niger"
1696
  msgstr ""
1697
 
1698
- #: ../admin/manage-fields.php:397
1699
  msgid "Nigeria"
1700
  msgstr ""
1701
 
1702
- #: ../admin/manage-fields.php:398
1703
  msgid "Niue"
1704
  msgstr ""
1705
 
1706
- #: ../admin/manage-fields.php:399
1707
  msgid "Norfolk Island"
1708
  msgstr ""
1709
 
1710
- #: ../admin/manage-fields.php:400
1711
  msgid "North Korea"
1712
  msgstr ""
1713
 
1714
- #: ../admin/manage-fields.php:401
1715
  msgid "Northern Mariana Islands"
1716
  msgstr ""
1717
 
1718
- #: ../admin/manage-fields.php:402
1719
  msgid "Norway"
1720
  msgstr ""
1721
 
1722
- #: ../admin/manage-fields.php:403
1723
  msgid "Oman"
1724
  msgstr ""
1725
 
1726
- #: ../admin/manage-fields.php:404
1727
  msgid "Pakistan"
1728
  msgstr ""
1729
 
1730
- #: ../admin/manage-fields.php:405
1731
  msgid "Palau"
1732
  msgstr ""
1733
 
1734
- #: ../admin/manage-fields.php:406
1735
  msgid "Palestinian Territory"
1736
  msgstr ""
1737
 
1738
- #: ../admin/manage-fields.php:407
1739
  msgid "Panama"
1740
  msgstr ""
1741
 
1742
- #: ../admin/manage-fields.php:408
1743
  msgid "Papua New Guinea"
1744
  msgstr ""
1745
 
1746
- #: ../admin/manage-fields.php:409
1747
  msgid "Paraguay"
1748
  msgstr ""
1749
 
1750
- #: ../admin/manage-fields.php:410
1751
  msgid "Peru"
1752
  msgstr ""
1753
 
1754
- #: ../admin/manage-fields.php:411
1755
  msgid "Philippines"
1756
  msgstr ""
1757
 
1758
- #: ../admin/manage-fields.php:412
1759
  msgid "Pitcairn"
1760
  msgstr ""
1761
 
1762
- #: ../admin/manage-fields.php:413
1763
  msgid "Poland"
1764
  msgstr ""
1765
 
1766
- #: ../admin/manage-fields.php:414
1767
  msgid "Portugal"
1768
  msgstr ""
1769
 
1770
- #: ../admin/manage-fields.php:415
1771
  msgid "Puerto Rico"
1772
  msgstr ""
1773
 
1774
- #: ../admin/manage-fields.php:416
1775
  msgid "Qatar"
1776
  msgstr ""
1777
 
1778
- #: ../admin/manage-fields.php:417
1779
  msgid "Republic of the Congo"
1780
  msgstr ""
1781
 
1782
- #: ../admin/manage-fields.php:418
1783
  msgid "Reunion"
1784
  msgstr ""
1785
 
1786
- #: ../admin/manage-fields.php:419
1787
  msgid "Romania"
1788
  msgstr ""
1789
 
1790
- #: ../admin/manage-fields.php:420
1791
  msgid "Russia"
1792
  msgstr ""
1793
 
1794
- #: ../admin/manage-fields.php:421
1795
  msgid "Rwanda"
1796
  msgstr ""
1797
 
1798
- #: ../admin/manage-fields.php:422
1799
  msgid "Saint Barthelemy"
1800
  msgstr ""
1801
 
1802
- #: ../admin/manage-fields.php:423
1803
  msgid "Saint Helena"
1804
  msgstr ""
1805
 
1806
- #: ../admin/manage-fields.php:424
1807
  msgid "Saint Kitts and Nevis"
1808
  msgstr ""
1809
 
1810
- #: ../admin/manage-fields.php:425
1811
  msgid "Saint Lucia"
1812
  msgstr ""
1813
 
1814
- #: ../admin/manage-fields.php:426
1815
  msgid "Saint Martin"
1816
  msgstr ""
1817
 
1818
- #: ../admin/manage-fields.php:427
1819
  msgid "Saint Pierre and Miquelon"
1820
  msgstr ""
1821
 
1822
- #: ../admin/manage-fields.php:428
1823
  msgid "Saint Vincent and the Grenadines"
1824
  msgstr ""
1825
 
1826
- #: ../admin/manage-fields.php:429
1827
  msgid "Samoa"
1828
  msgstr ""
1829
 
1830
- #: ../admin/manage-fields.php:430
1831
  msgid "San Marino"
1832
  msgstr ""
1833
 
1834
- #: ../admin/manage-fields.php:431
1835
  msgid "Sao Tome and Principe"
1836
  msgstr ""
1837
 
1838
- #: ../admin/manage-fields.php:432
1839
  msgid "Saudi Arabia"
1840
  msgstr ""
1841
 
1842
- #: ../admin/manage-fields.php:433
1843
  msgid "Senegal"
1844
  msgstr ""
1845
 
1846
- #: ../admin/manage-fields.php:434
1847
  msgid "Serbia"
1848
  msgstr ""
1849
 
1850
- #: ../admin/manage-fields.php:435
1851
  msgid "Seychelles"
1852
  msgstr ""
1853
 
1854
- #: ../admin/manage-fields.php:436
1855
  msgid "Sierra Leone"
1856
  msgstr ""
1857
 
1858
- #: ../admin/manage-fields.php:437
1859
  msgid "Singapore"
1860
  msgstr ""
1861
 
1862
- #: ../admin/manage-fields.php:438
1863
  msgid "Sint Maarten"
1864
  msgstr ""
1865
 
1866
- #: ../admin/manage-fields.php:439
1867
  msgid "Slovakia"
1868
  msgstr ""
1869
 
1870
- #: ../admin/manage-fields.php:440
1871
  msgid "Slovenia"
1872
  msgstr ""
1873
 
1874
- #: ../admin/manage-fields.php:441
1875
  msgid "Solomon Islands"
1876
  msgstr ""
1877
 
1878
- #: ../admin/manage-fields.php:442
1879
  msgid "Somalia"
1880
  msgstr ""
1881
 
1882
- #: ../admin/manage-fields.php:443
1883
  msgid "South Africa"
1884
  msgstr ""
1885
 
1886
- #: ../admin/manage-fields.php:444
1887
  msgid "South Georgia and the South Sandwich Islands"
1888
  msgstr ""
1889
 
1890
- #: ../admin/manage-fields.php:445
1891
  msgid "South Korea"
1892
  msgstr ""
1893
 
1894
- #: ../admin/manage-fields.php:446
1895
  msgid "South Sudan"
1896
  msgstr ""
1897
 
1898
- #: ../admin/manage-fields.php:447
1899
  msgid "Spain"
1900
  msgstr ""
1901
 
1902
- #: ../admin/manage-fields.php:448
1903
  msgid "Sri Lanka"
1904
  msgstr ""
1905
 
1906
- #: ../admin/manage-fields.php:449
1907
  msgid "Sudan"
1908
  msgstr ""
1909
 
1910
- #: ../admin/manage-fields.php:450
1911
  msgid "Suriname"
1912
  msgstr ""
1913
 
1914
- #: ../admin/manage-fields.php:451
1915
  msgid "Svalbard and Jan Mayen"
1916
  msgstr ""
1917
 
1918
- #: ../admin/manage-fields.php:452
1919
  msgid "Swaziland"
1920
  msgstr ""
1921
 
1922
- #: ../admin/manage-fields.php:453
1923
  msgid "Sweden"
1924
  msgstr ""
1925
 
1926
- #: ../admin/manage-fields.php:454
1927
  msgid "Switzerland"
1928
  msgstr ""
1929
 
1930
- #: ../admin/manage-fields.php:455
1931
  msgid "Syria"
1932
  msgstr ""
1933
 
1934
- #: ../admin/manage-fields.php:456
1935
  msgid "Taiwan"
1936
  msgstr ""
1937
 
1938
- #: ../admin/manage-fields.php:457
1939
  msgid "Tajikistan"
1940
  msgstr ""
1941
 
1942
- #: ../admin/manage-fields.php:458
1943
  msgid "Tanzania"
1944
  msgstr ""
1945
 
1946
- #: ../admin/manage-fields.php:459
1947
  msgid "Thailand"
1948
  msgstr ""
1949
 
1950
- #: ../admin/manage-fields.php:460
1951
  msgid "Togo"
1952
  msgstr ""
1953
 
1954
- #: ../admin/manage-fields.php:461
1955
  msgid "Tokelau"
1956
  msgstr ""
1957
 
1958
- #: ../admin/manage-fields.php:462
1959
  msgid "Tonga"
1960
  msgstr ""
1961
 
1962
- #: ../admin/manage-fields.php:463
1963
  msgid "Trinidad and Tobago"
1964
  msgstr ""
1965
 
1966
- #: ../admin/manage-fields.php:464
1967
  msgid "Tunisia"
1968
  msgstr ""
1969
 
1970
- #: ../admin/manage-fields.php:465
1971
  msgid "Turkey"
1972
  msgstr ""
1973
 
1974
- #: ../admin/manage-fields.php:466
1975
  msgid "Turkmenistan"
1976
  msgstr ""
1977
 
1978
- #: ../admin/manage-fields.php:467
1979
  msgid "Turks and Caicos Islands"
1980
  msgstr ""
1981
 
1982
- #: ../admin/manage-fields.php:468
1983
  msgid "Tuvalu"
1984
  msgstr ""
1985
 
1986
- #: ../admin/manage-fields.php:469
1987
  msgid "U.S. Virgin Islands"
1988
  msgstr ""
1989
 
1990
- #: ../admin/manage-fields.php:470
1991
  msgid "Uganda"
1992
  msgstr ""
1993
 
1994
- #: ../admin/manage-fields.php:471
1995
  msgid "Ukraine"
1996
  msgstr ""
1997
 
1998
- #: ../admin/manage-fields.php:472
1999
  msgid "United Arab Emirates"
2000
  msgstr ""
2001
 
2002
- #: ../admin/manage-fields.php:473
2003
  msgid "United Kingdom"
2004
  msgstr ""
2005
 
2006
- #: ../admin/manage-fields.php:474
2007
  msgid "United States"
2008
  msgstr ""
2009
 
2010
- #: ../admin/manage-fields.php:475
2011
  msgid "United States Minor Outlying Islands"
2012
  msgstr ""
2013
 
2014
- #: ../admin/manage-fields.php:476
2015
  msgid "Uruguay"
2016
  msgstr ""
2017
 
2018
- #: ../admin/manage-fields.php:477
2019
  msgid "Uzbekistan"
2020
  msgstr ""
2021
 
2022
- #: ../admin/manage-fields.php:478
2023
  msgid "Vanuatu"
2024
  msgstr ""
2025
 
2026
- #: ../admin/manage-fields.php:479
2027
  msgid "Vatican"
2028
  msgstr ""
2029
 
2030
- #: ../admin/manage-fields.php:480
2031
  msgid "Venezuela"
2032
  msgstr ""
2033
 
2034
- #: ../admin/manage-fields.php:481
2035
  msgid "Vietnam"
2036
  msgstr ""
2037
 
2038
- #: ../admin/manage-fields.php:482
2039
  msgid "Wallis and Futuna"
2040
  msgstr ""
2041
 
2042
- #: ../admin/manage-fields.php:483
2043
  msgid "Western Sahara"
2044
  msgstr ""
2045
 
2046
- #: ../admin/manage-fields.php:484
2047
  msgid "Yemen"
2048
  msgstr ""
2049
 
2050
- #: ../admin/manage-fields.php:485
2051
  msgid "Zambia"
2052
  msgstr ""
2053
 
2054
- #: ../admin/manage-fields.php:486
2055
  msgid "Zimbabwe"
2056
  msgstr ""
2057
 
2058
- #: ../admin/manage-fields.php:617 ../admin/manage-fields.php:761
 
2059
  msgid "You must select a field\n"
2060
  msgstr ""
2061
 
2062
- #: ../admin/manage-fields.php:627
2063
  msgid ""
2064
  "Please choose a different field type as this one already exists in your form "
2065
  "(must be unique)\n"
2066
  msgstr ""
2067
 
2068
- #: ../admin/manage-fields.php:638
2069
  msgid "The entered avatar size is not between 20 and 200\n"
2070
  msgstr ""
2071
 
2072
- #: ../admin/manage-fields.php:641
2073
  msgid "The entered avatar size is not numerical\n"
2074
  msgstr ""
2075
 
2076
- #: ../admin/manage-fields.php:649
2077
  msgid "The entered row number is not numerical\n"
2078
  msgstr ""
2079
 
2080
- #: ../admin/manage-fields.php:652
2081
  msgid "You must enter a value for the row number\n"
2082
  msgstr ""
2083
 
2084
- #: ../admin/manage-fields.php:660
2085
  msgid "You must enter the site key\n"
2086
  msgstr ""
2087
 
2088
- #: ../admin/manage-fields.php:662
2089
  msgid "You must enter the secret key\n"
2090
  msgstr ""
2091
 
2092
- #: ../admin/manage-fields.php:670
2093
  msgid "The entered value for the Datepicker is not a valid date-format\n"
2094
  msgstr ""
2095
 
2096
- #: ../admin/manage-fields.php:673
2097
  msgid "You must enter a value for the date-format\n"
2098
  msgstr ""
2099
 
2100
- #: ../admin/manage-fields.php:689
2101
  msgid "The meta-name cannot be empty\n"
2102
  msgstr ""
2103
 
2104
- #: ../admin/manage-fields.php:701 ../admin/manage-fields.php:709
2105
- #: ../admin/manage-fields.php:719
 
2106
  msgid "That meta-name is already in use\n"
2107
  msgstr ""
2108
 
2109
- #: ../admin/manage-fields.php:741
2110
  #, php-format
2111
  msgid ""
2112
  "The following option(s) did not coincide with the ones in the options list: "
2113
  "%s\n"
2114
  msgstr ""
2115
 
2116
- #: ../admin/manage-fields.php:745
2117
  #, php-format
2118
  msgid ""
2119
  "The following option did not coincide with the ones in the options list: %s\n"
2120
  msgstr ""
2121
 
2122
- #: ../admin/manage-fields.php:752
2123
  msgid "Please select at least one user role\n"
2124
  msgstr ""
2125
 
2126
- #: ../admin/manage-fields.php:768
2127
  msgid "That field is already added in this form\n"
2128
  msgstr ""
2129
 
2130
- #: ../admin/manage-fields.php:817
2131
  msgid ""
2132
  "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
2133
  "required\">Required</pre>"
2134
  msgstr ""
2135
 
2136
- #: ../admin/manage-fields.php:817
2137
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2138
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2139
- #: ../features/admin-approval/class-admin-approval.php:119
2140
- #: ../features/functions.php:654 ../features/functions.php:661
2141
- #: ../modules/custom-redirects/custom_redirects_admin.php:179
2142
- #: ../modules/custom-redirects/custom_redirects_admin.php:193
2143
- #: ../modules/custom-redirects/custom_redirects_admin.php:207
2144
- #: ../modules/custom-redirects/custom_redirects_admin.php:221
2145
- #: ../modules/multiple-forms/multiple-forms.php:399
 
2146
  msgid "Edit"
2147
  msgstr ""
2148
 
2149
- #: ../admin/manage-fields.php:817
2150
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2151
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2152
- #: ../features/admin-approval/class-admin-approval.php:124
2153
- #: ../features/admin-approval/class-admin-approval.php:235
2154
- #: ../features/email-confirmation/class-email-confirmation.php:120
2155
- #: ../features/email-confirmation/class-email-confirmation.php:217
2156
- #: ../features/functions.php:647 ../features/functions.php:661
2157
- #: ../modules/custom-redirects/custom_redirects_admin.php:179
2158
- #: ../modules/custom-redirects/custom_redirects_admin.php:193
2159
- #: ../modules/custom-redirects/custom_redirects_admin.php:207
2160
- #: ../modules/custom-redirects/custom_redirects_admin.php:221
 
2161
  msgid "Delete"
2162
  msgstr ""
2163
 
2164
- #: ../admin/manage-fields.php:832
2165
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2166
  msgstr ""
2167
 
2168
- #: ../admin/manage-fields.php:841
2169
  msgid ""
2170
  "If you're interested in displaying different fields in the registration and "
2171
  "edit profile forms, please use the Multiple Registration & Edit Profile "
2172
  "Forms Addon."
2173
  msgstr ""
2174
 
2175
- #: ../admin/manage-fields.php:843
2176
  msgid ""
2177
  "With Profile Builder Pro v2 you can display different fields in the "
2178
  "registration and edit profile forms, using the Multiple Registration & Edit "
2179
  "Profile Forms module."
2180
  msgstr ""
2181
 
2182
- #: ../admin/pms-cross-promotion.php:10
2183
  msgid "Paid Accounts"
2184
  msgstr ""
2185
 
2186
- #: ../admin/pms-cross-promotion.php:33
2187
  msgid "Paid Member Subscriptions - a free WordPress plugin"
2188
  msgstr ""
2189
 
2190
- #: ../admin/pms-cross-promotion.php:37
2191
  msgid ""
2192
  "With the new Subscriptions Field in Profile Builder, your registration forms "
2193
  "will allow your users to sign up for paid accounts."
2194
  msgstr ""
2195
 
2196
- #: ../admin/pms-cross-promotion.php:40
2197
  msgid "Paid & Free Subscriptions"
2198
  msgstr ""
2199
 
2200
- #: ../admin/pms-cross-promotion.php:41
2201
  msgid "Restrict Content"
2202
  msgstr ""
2203
 
2204
- #: ../admin/pms-cross-promotion.php:42
2205
  msgid "Member Management"
2206
  msgstr ""
2207
 
2208
- #: ../admin/pms-cross-promotion.php:43
2209
  msgid "Email Templates"
2210
  msgstr ""
2211
 
2212
- #: ../admin/pms-cross-promotion.php:44
2213
  msgid "Account Management"
2214
  msgstr ""
2215
 
2216
- #: ../admin/pms-cross-promotion.php:45
2217
  msgid "Subscription Management"
2218
  msgstr ""
2219
 
2220
- #: ../admin/pms-cross-promotion.php:46
2221
  msgid "Payment Management"
2222
  msgstr ""
2223
 
2224
- #: ../admin/pms-cross-promotion.php:83
2225
  msgid "Plugin is Active"
2226
  msgstr ""
2227
 
2228
- #: ../admin/pms-cross-promotion.php:84
2229
  msgid "Plugin has been activated"
2230
  msgstr ""
2231
 
2232
- #: ../admin/pms-cross-promotion.php:91
2233
  msgid "Plugin has been deactivated."
2234
  msgstr ""
2235
 
2236
- #: ../admin/pms-cross-promotion.php:104
2237
  msgid ""
2238
  "Accept user payments, create subscription plans and restrict content on your "
2239
  "website."
2240
  msgstr ""
2241
 
2242
- #: ../admin/pms-cross-promotion.php:155
2243
  msgid "Step by Step Quick Setup"
2244
  msgstr ""
2245
 
2246
- #: ../admin/pms-cross-promotion.php:239
2247
  #, php-format
2248
  msgid ""
2249
  "Allow your users to have <strong>paid accounts with Profile Builder</"
2250
  "strong>. %1$sFind out how >%2$s. %3$sDismiss%4$s"
2251
  msgstr ""
2252
 
2253
- #: ../admin/register-version.php:14
2254
  msgid "Register Your Version"
2255
  msgstr ""
2256
 
2257
- #: ../admin/register-version.php:14
2258
  msgid "Register Version"
2259
  msgstr ""
2260
 
2261
- #: ../admin/register-version.php:22
2262
  msgid "Profile Builder Register"
2263
  msgstr ""
2264
 
2265
- #: ../admin/register-version.php:69
2266
  #, php-format
2267
  msgid ""
2268
  "Now that you acquired a copy of %s, you should take the time and register it "
2269
  "with the serial number you received"
2270
  msgstr ""
2271
 
2272
- #: ../admin/register-version.php:70
2273
  msgid ""
2274
  "If you register this version of Profile Builder, you'll receive information "
2275
  "regarding upgrades, patches, and technical support."
2276
  msgstr ""
2277
 
2278
- #: ../admin/register-version.php:72
2279
  msgid " Serial Number:"
2280
  msgstr ""
2281
 
2282
- #: ../admin/register-version.php:77
2283
  msgid "The serial number was successfully validated!"
2284
  msgstr ""
2285
 
2286
- #: ../admin/register-version.php:79
2287
  msgid "The serial number entered couldn't be validated!"
2288
  msgstr ""
2289
 
2290
- #: ../admin/register-version.php:81
2291
  msgid "The serial number is about to expire soon!"
2292
  msgstr ""
2293
 
2294
- #: ../admin/register-version.php:81
2295
  #, php-format
2296
  msgid ""
2297
  " Your serial number is about to expire, please %1$s Renew Your License%2$s."
2298
  msgstr ""
2299
 
2300
- #: ../admin/register-version.php:83
2301
  msgid "The serial number couldn't be validated because it expired!"
2302
  msgstr ""
2303
 
2304
- #: ../admin/register-version.php:83
2305
  #, php-format
2306
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2307
  msgstr ""
2308
 
2309
- #: ../admin/register-version.php:85
2310
  msgid ""
2311
  "The serial number couldn't be validated because process timed out. This is "
2312
  "possible due to the server being down. Please try again later!"
2313
  msgstr ""
2314
 
2315
- #: ../admin/register-version.php:87
2316
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2317
  msgstr ""
2318
 
2319
- #: ../admin/register-version.php:243
2320
  #, php-format
2321
  msgid ""
2322
  "<p>Your <strong>Profile Builder</strong> serial number is invalid or "
@@ -2325,7 +2510,7 @@ msgid ""
2325
  "p>"
2326
  msgstr ""
2327
 
2328
- #: ../admin/register-version.php:246
2329
  #, php-format
2330
  msgid ""
2331
  "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
@@ -2334,7 +2519,7 @@ msgid ""
2334
  "%4$s %5$sDismiss%6$s</p>"
2335
  msgstr ""
2336
 
2337
- #: ../admin/register-version.php:251
2338
  #, php-format
2339
  msgid ""
2340
  "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
@@ -2343,362 +2528,363 @@ msgid ""
2343
  "50&#37; off %4$s %6$sDismiss%7$s</p>"
2344
  msgstr ""
2345
 
2346
- #: ../assets/lib/wck-api/fields/country select.php:14
2347
- #: ../assets/lib/wck-api/fields/cpt select.php:17
2348
- #: ../assets/lib/wck-api/fields/select.php:14 ../assets/lib/wck-api/fields/user
2349
- #: select.php:15
2350
  msgid "...Choose"
2351
  msgstr ""
2352
 
2353
- #: ../assets/lib/wck-api/fields/nested repeater.php:8
2354
  #, php-format
2355
  msgid "You can add the information for the %s after you add a entry"
2356
  msgstr ""
2357
 
2358
- #: ../assets/lib/wck-api/fields/upload.php:43
2359
- #: ../front-end/extra-fields/upload/upload.php:112
2360
  msgid "Remove"
2361
  msgstr ""
2362
 
2363
- #: ../assets/lib/wck-api/fields/upload.php:75
2364
- #: ../front-end/extra-fields/upload/upload.php:128
2365
  msgid "Upload "
2366
  msgstr ""
2367
 
2368
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
2369
- #: ../modules/class-mustache-templates/class-mustache-templates.php:242
2370
  msgid "Save"
2371
  msgstr ""
2372
 
2373
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:337
2374
  msgid "Add Entry"
2375
  msgstr ""
2376
 
2377
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:440
2378
- #: ../features/functions.php:661
2379
  msgid "Content"
2380
  msgstr ""
2381
 
2382
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:531
2383
  msgid "Edit this item"
2384
  msgstr ""
2385
 
2386
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:532
2387
  msgid "Delete this item"
2388
  msgstr ""
2389
 
2390
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:700
2391
  msgid "Please enter a value for the required field "
2392
  msgstr ""
2393
 
2394
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1179
2395
  msgid "Syncronize WCK"
2396
  msgstr ""
2397
 
2398
- #: ../assets/lib/wck-api/wordpress-creation-kit.php:1191
2399
  msgid "Syncronize WCK Translation"
2400
  msgstr ""
2401
 
2402
- #: ../assets/misc/plugin-compatibilities.php:241
2403
  msgid ""
2404
  "Your account has to be confirmed by an administrator before you can log in."
2405
  msgstr ""
2406
 
2407
- #: ../features/admin-approval/admin-approval.php:7
2408
- #: ../features/admin-approval/class-admin-approval.php:458
2409
  msgid "Admin Approval"
2410
  msgstr ""
2411
 
2412
- #: ../features/admin-approval/admin-approval.php:21
2413
- #: ../features/email-confirmation/email-confirmation.php:58
2414
  msgid "Do you want to"
2415
  msgstr ""
2416
 
2417
- #: ../features/admin-approval/admin-approval.php:44
2418
  msgid "Your session has expired! Please refresh the page and try again"
2419
  msgstr ""
2420
 
2421
- #: ../features/admin-approval/admin-approval.php:55
2422
  msgid "User successfully approved!"
2423
  msgstr ""
2424
 
2425
- #: ../features/admin-approval/admin-approval.php:63
2426
  msgid "User successfully unapproved!"
2427
  msgstr ""
2428
 
2429
- #: ../features/admin-approval/admin-approval.php:69
2430
  msgid "User successfully deleted!"
2431
  msgstr ""
2432
 
2433
- #: ../features/admin-approval/admin-approval.php:74
2434
- #: ../features/admin-approval/admin-approval.php:118
2435
- #: ../features/email-confirmation/email-confirmation.php:135
2436
  msgid "You either don't have permission for that action or there was an error!"
2437
  msgstr ""
2438
 
2439
- #: ../features/admin-approval/admin-approval.php:85
2440
  msgid "Your session has expired! Please refresh the page and try again."
2441
  msgstr ""
2442
 
2443
- #: ../features/admin-approval/admin-approval.php:97
2444
  msgid "Users successfully approved!"
2445
  msgstr ""
2446
 
2447
- #: ../features/admin-approval/admin-approval.php:106
2448
  msgid "Users successfully unapproved!"
2449
  msgstr ""
2450
 
2451
- #: ../features/admin-approval/admin-approval.php:114
2452
  msgid "Users successfully deleted!"
2453
  msgstr ""
2454
 
2455
- #: ../features/admin-approval/admin-approval.php:134
2456
  #, php-format
2457
  msgid "Your account on %1$s has been approved!"
2458
  msgstr ""
2459
 
2460
- #: ../features/admin-approval/admin-approval.php:135
2461
- #: ../features/admin-approval/admin-approval.php:138
2462
  msgid "approved"
2463
  msgstr ""
2464
 
2465
- #: ../features/admin-approval/admin-approval.php:137
2466
  #, php-format
2467
  msgid "An administrator has just approved your account on %1$s (%2$s)."
2468
  msgstr ""
2469
 
2470
- #: ../features/admin-approval/admin-approval.php:142
2471
  #, php-format
2472
  msgid "Your account on %1$s has been unapproved!"
2473
  msgstr ""
2474
 
2475
- #: ../features/admin-approval/admin-approval.php:143
2476
- #: ../features/admin-approval/admin-approval.php:146
2477
  msgid "unapproved"
2478
  msgstr ""
2479
 
2480
- #: ../features/admin-approval/admin-approval.php:145
2481
  #, php-format
2482
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2483
  msgstr ""
2484
 
2485
- #: ../features/admin-approval/admin-approval.php:164
2486
  msgid ""
2487
  "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
2488
  "before you can log in."
2489
  msgstr ""
2490
 
2491
- #: ../features/admin-approval/admin-approval.php:176
2492
  msgid ""
2493
  "Your account has to be confirmed by an administrator before you can use the "
2494
  "\"Password Recovery\" feature."
2495
  msgstr ""
2496
 
2497
- #: ../features/admin-approval/admin-approval.php:203
2498
  msgid "Your account has been successfully created!"
2499
  msgstr ""
2500
 
2501
- #: ../features/admin-approval/class-admin-approval.php:124
2502
  msgid "delete this user?"
2503
  msgstr ""
2504
 
2505
- #: ../features/admin-approval/class-admin-approval.php:127
2506
  msgid "unapprove this user?"
2507
  msgstr ""
2508
 
2509
- #: ../features/admin-approval/class-admin-approval.php:127
2510
- #: ../features/admin-approval/class-admin-approval.php:234
2511
  msgid "Unapprove"
2512
  msgstr ""
2513
 
2514
- #: ../features/admin-approval/class-admin-approval.php:129
2515
  msgid "approve this user?"
2516
  msgstr ""
2517
 
2518
- #: ../features/admin-approval/class-admin-approval.php:129
2519
- #: ../features/admin-approval/class-admin-approval.php:233
2520
  msgid "Approve"
2521
  msgstr ""
2522
 
2523
- #: ../features/admin-approval/class-admin-approval.php:178
2524
- #: ../modules/user-listing/userlisting.php:249
2525
- #: ../modules/user-listing/userlisting.php:623
2526
- #: ../modules/user-listing/userlisting.php:1264
2527
  msgid "Firstname"
2528
  msgstr ""
2529
 
2530
- #: ../features/admin-approval/class-admin-approval.php:179
2531
- #: ../modules/user-listing/userlisting.php:626
2532
- #: ../modules/user-listing/userlisting.php:1265
2533
  msgid "Lastname"
2534
  msgstr ""
2535
 
2536
- #: ../features/admin-approval/class-admin-approval.php:181
2537
- #: ../modules/user-listing/userlisting.php:124
2538
- #: ../modules/user-listing/userlisting.php:250
2539
- #: ../modules/user-listing/userlisting.php:653
2540
- #: ../modules/user-listing/userlisting.php:1268
2541
  msgid "Role"
2542
  msgstr ""
2543
 
2544
- #: ../features/admin-approval/class-admin-approval.php:182
2545
- #: ../features/email-confirmation/class-email-confirmation.php:169
2546
  msgid "Registered"
2547
  msgstr ""
2548
 
2549
- #: ../features/admin-approval/class-admin-approval.php:183
2550
  msgid "User-status"
2551
  msgstr ""
2552
 
2553
- #: ../features/admin-approval/class-admin-approval.php:263
2554
  msgid "Do you want to bulk approve the selected users?"
2555
  msgstr ""
2556
 
2557
- #: ../features/admin-approval/class-admin-approval.php:271
2558
  msgid "Do you want to bulk unapprove the selected users?"
2559
  msgstr ""
2560
 
2561
- #: ../features/admin-approval/class-admin-approval.php:277
2562
  msgid "Do you want to bulk delete the selected users?"
2563
  msgstr ""
2564
 
2565
- #: ../features/admin-approval/class-admin-approval.php:285
2566
- #: ../features/email-confirmation/class-email-confirmation.php:278
2567
  msgid "Sorry, but you don't have permission to do that!"
2568
  msgstr ""
2569
 
2570
- #: ../features/admin-approval/class-admin-approval.php:341
2571
  msgid "Approved"
2572
  msgstr ""
2573
 
2574
- #: ../features/admin-approval/class-admin-approval.php:343
2575
  msgid "Unapproved"
2576
  msgstr ""
2577
 
2578
- #: ../features/admin-approval/class-admin-approval.php:461
2579
- #: ../features/email-confirmation/class-email-confirmation.php:465
2580
  msgid "All Users"
2581
  msgstr ""
2582
 
2583
- #: ../features/class-list-table.php:184
2584
  msgid "No items found."
2585
  msgstr ""
2586
 
2587
- #: ../features/class-list-table.php:308
2588
  msgid "Bulk Actions"
2589
  msgstr ""
2590
 
2591
- #: ../features/class-list-table.php:318
2592
  msgid "Apply"
2593
  msgstr ""
2594
 
2595
- #: ../features/class-list-table.php:402
2596
  msgid "Show all dates"
2597
  msgstr ""
2598
 
2599
- #: ../features/class-list-table.php:415
2600
  #, php-format
2601
  msgid "%1$s %2$d"
2602
  msgstr ""
2603
 
2604
- #: ../features/class-list-table.php:431
2605
  msgid "List View"
2606
  msgstr ""
2607
 
2608
- #: ../features/class-list-table.php:432
2609
  msgid "Excerpt View"
2610
  msgstr ""
2611
 
2612
- #: ../features/class-list-table.php:458
2613
  #, php-format
2614
  msgid "%s pending"
2615
  msgstr ""
2616
 
2617
- #: ../features/class-list-table.php:526 ../features/class-list-table.php:941
 
2618
  msgid "1 item"
2619
  msgstr ""
2620
 
2621
- #: ../features/class-list-table.php:566
2622
  #, php-format
2623
  msgid "%1$s of %2$s"
2624
  msgstr ""
2625
 
2626
- #: ../features/class-list-table.php:713
2627
  msgid "Select All"
2628
  msgstr ""
2629
 
2630
- #: ../features/email-confirmation/class-email-confirmation.php:91
2631
- #: ../features/email-confirmation/class-email-confirmation.php:170
2632
- #: ../modules/email-customizer/email-customizer.php:11
2633
  msgid "User Meta"
2634
  msgstr ""
2635
 
2636
- #: ../features/email-confirmation/class-email-confirmation.php:91
2637
  msgid "show"
2638
  msgstr ""
2639
 
2640
- #: ../features/email-confirmation/class-email-confirmation.php:120
2641
  msgid "delete this user from the _signups table?"
2642
  msgstr ""
2643
 
2644
- #: ../features/email-confirmation/class-email-confirmation.php:121
2645
  msgid "confirm this email yourself?"
2646
  msgstr ""
2647
 
2648
- #: ../features/email-confirmation/class-email-confirmation.php:121
2649
- #: ../features/email-confirmation/class-email-confirmation.php:218
2650
  msgid "Confirm Email"
2651
  msgstr ""
2652
 
2653
- #: ../features/email-confirmation/class-email-confirmation.php:122
2654
  msgid "resend the activation link?"
2655
  msgstr ""
2656
 
2657
- #: ../features/email-confirmation/class-email-confirmation.php:122
2658
- #: ../features/email-confirmation/class-email-confirmation.php:219
2659
  msgid "Resend Activation Email"
2660
  msgstr ""
2661
 
2662
- #: ../features/email-confirmation/class-email-confirmation.php:249
2663
  #, php-format
2664
  msgid "%s couldn't be deleted"
2665
  msgstr ""
2666
 
2667
- #: ../features/email-confirmation/class-email-confirmation.php:253
2668
  msgid "All users have been successfully deleted"
2669
  msgstr ""
2670
 
2671
- #: ../features/email-confirmation/class-email-confirmation.php:263
2672
  msgid "The selected users have been activated"
2673
  msgstr ""
2674
 
2675
- #: ../features/email-confirmation/class-email-confirmation.php:274
2676
  msgid "The selected users have had their activation emails resent"
2677
  msgstr ""
2678
 
2679
- #: ../features/email-confirmation/class-email-confirmation.php:462
2680
- #: ../features/email-confirmation/email-confirmation.php:47
2681
  msgid "Users with Unconfirmed Email Address"
2682
  msgstr ""
2683
 
2684
- #: ../features/email-confirmation/email-confirmation.php:110
2685
  msgid "There was an error performing that action!"
2686
  msgstr ""
2687
 
2688
- #: ../features/email-confirmation/email-confirmation.php:118
2689
  msgid "The selected user couldn't be deleted"
2690
  msgstr ""
2691
 
2692
- #: ../features/email-confirmation/email-confirmation.php:129
2693
  msgid "Email notification resent to user"
2694
  msgstr ""
2695
 
2696
- #: ../features/email-confirmation/email-confirmation.php:389
2697
  #, php-format
2698
  msgid "[%1$s] Activate %2$s"
2699
  msgstr ""
2700
 
2701
- #: ../features/email-confirmation/email-confirmation.php:392
2702
  #, php-format
2703
  msgid ""
2704
  "To activate your user, please click the following link:<br><br>%s%s"
@@ -2706,98 +2892,98 @@ msgid ""
2706
  "your login."
2707
  msgstr ""
2708
 
2709
- #: ../features/email-confirmation/email-confirmation.php:433
2710
- #: ../front-end/register.php:68
2711
  msgid "Could not create user!"
2712
  msgstr ""
2713
 
2714
- #: ../features/email-confirmation/email-confirmation.php:436
2715
  msgid "That username is already activated!"
2716
  msgstr ""
2717
 
2718
- #: ../features/email-confirmation/email-confirmation.php:457
2719
  msgid "There was an error while trying to activate the user"
2720
  msgstr ""
2721
 
2722
- #: ../features/email-confirmation/email-confirmation.php:505
2723
- #: ../modules/email-customizer/admin-email-customizer.php:73
2724
  msgid "A new subscriber has (been) registered!"
2725
  msgstr ""
2726
 
2727
- #: ../features/email-confirmation/email-confirmation.php:508
2728
  #, php-format
2729
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
2730
  msgstr ""
2731
 
2732
- #: ../features/email-confirmation/email-confirmation.php:557
2733
  #, php-format
2734
  msgid "[%1$s] Your new account information"
2735
  msgstr ""
2736
 
2737
- #: ../features/email-confirmation/email-confirmation.php:561
2738
- #: ../features/email-confirmation/email-confirmation.php:564
2739
- #: ../modules/email-customizer/email-customizer.php:413
2740
- #: ../modules/email-customizer/email-customizer.php:420
2741
- #: ../modules/email-customizer/email-customizer.php:434
2742
  msgid "Your selected password at signup"
2743
  msgstr ""
2744
 
2745
- #: ../features/email-confirmation/email-confirmation.php:563
2746
  #, php-format
2747
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
2748
  msgstr ""
2749
 
2750
- #: ../features/email-confirmation/email-confirmation.php:615
2751
  msgid ""
2752
  "The \"Admin Approval\" feature was activated at the time of registration, so "
2753
  "please remember that you need to approve this user before he/she can log in!"
2754
  msgstr ""
2755
 
2756
- #: ../features/email-confirmation/email-confirmation.php:623
2757
- #: ../front-end/register.php:127
2758
  msgid ""
2759
  "Before you can access your account, an administrator needs to approve it. "
2760
  "You will be notified via email."
2761
  msgstr ""
2762
 
2763
- #: ../features/functions.php:297
2764
  msgid "The user-validation has failed - the avatar was not deleted!"
2765
  msgstr ""
2766
 
2767
- #: ../features/functions.php:308
2768
  msgid "The user-validation has failed - the attachment was not deleted!"
2769
  msgstr ""
2770
 
2771
- #: ../features/functions.php:500
2772
  msgid "Strength indicator"
2773
  msgstr ""
2774
 
2775
- #: ../features/functions.php:525
2776
  msgid "Very Weak"
2777
  msgstr ""
2778
 
2779
- #: ../features/functions.php:539
2780
  #, php-format
2781
  msgid "Minimum length of %d characters"
2782
  msgstr ""
2783
 
2784
- #: ../features/functions.php:613
2785
  msgid "This field is required"
2786
  msgstr ""
2787
 
2788
- #: ../features/functions.php:620
2789
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:374
2790
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:379
2791
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
2792
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:458
2793
  msgid "Please enter a (valid) reCAPTCHA value"
2794
  msgstr ""
2795
 
2796
- #: ../features/functions.php:640
2797
  msgid "Cancel"
2798
  msgstr ""
2799
 
2800
- #: ../features/functions.php:672
2801
  #, php-format
2802
  msgid ""
2803
  "To allow users to register for your website via Profile Builder, you first "
@@ -2806,7 +2992,7 @@ msgid ""
2806
  "%3$sDismiss%4$s"
2807
  msgstr ""
2808
 
2809
- #: ../features/functions.php:676
2810
  #, php-format
2811
  msgid ""
2812
  "To allow users to register for your website via Profile Builder, you first "
@@ -2814,371 +3000,370 @@ msgid ""
2814
  "under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
2815
  msgstr ""
2816
 
2817
- #: ../features/login-widget/login-widget.php:10
2818
  msgid "This login widget lets you add a login form in the sidebar."
2819
  msgstr ""
2820
 
2821
- #: ../features/login-widget/login-widget.php:15
2822
  msgid "Profile Builder Login Widget"
2823
  msgstr ""
2824
 
2825
- #: ../features/login-widget/login-widget.php:63
2826
  msgid "Title:"
2827
  msgstr ""
2828
 
2829
- #: ../features/login-widget/login-widget.php:68
2830
  msgid "After login redirect URL (optional):"
2831
  msgstr ""
2832
 
2833
- #: ../features/login-widget/login-widget.php:73
2834
  msgid "Register page URL (optional):"
2835
  msgstr ""
2836
 
2837
- #: ../features/login-widget/login-widget.php:78
2838
  msgid "Password Recovery page URL (optional):"
2839
  msgstr ""
2840
 
2841
- #: ../features/upgrades/upgrades-functions.php:91
2842
- #: ../features/upgrades/upgrades-functions.php:134
2843
  msgid "The usernames cannot be changed."
2844
  msgstr ""
2845
 
2846
- #: ../front-end/class-formbuilder.php:132
2847
  msgid "Only an administrator can add new users."
2848
  msgstr ""
2849
 
2850
- #: ../front-end/class-formbuilder.php:142
2851
  msgid "Users can register themselves or you can manually create users here."
2852
  msgstr ""
2853
 
2854
- #: ../front-end/class-formbuilder.php:142
2855
- #: ../front-end/class-formbuilder.php:145
2856
  msgid "This message is only visible by administrators"
2857
  msgstr ""
2858
 
2859
- #: ../front-end/class-formbuilder.php:145
2860
  msgid ""
2861
  "Users cannot currently register themselves, but you can manually create "
2862
  "users here."
2863
  msgstr ""
2864
 
2865
- #: ../front-end/class-formbuilder.php:167
2866
  #, php-format
2867
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
2868
  msgstr ""
2869
 
2870
- #: ../front-end/class-formbuilder.php:167
2871
  msgid "Log out of this account."
2872
  msgstr ""
2873
 
2874
- #: ../front-end/class-formbuilder.php:167
2875
  msgid "Logout"
2876
  msgstr ""
2877
 
2878
- #: ../front-end/class-formbuilder.php:174
2879
  msgid "You must be logged in to edit your profile."
2880
  msgstr ""
2881
 
2882
- #: ../front-end/class-formbuilder.php:203
2883
  msgid "here"
2884
  msgstr ""
2885
 
2886
- #: ../front-end/class-formbuilder.php:205
2887
  #, php-format
2888
  msgid ""
2889
  "You will soon be redirected automatically. If you see this page for more "
2890
  "than %1$d seconds, please click %2$s.%3$s"
2891
  msgstr ""
2892
 
2893
- #: ../front-end/class-formbuilder.php:293
2894
- #: ../front-end/class-formbuilder.php:300
2895
  #, php-format
2896
  msgid "The account %1s has been successfully created!"
2897
  msgstr ""
2898
 
2899
- #: ../front-end/class-formbuilder.php:296
2900
- #: ../front-end/class-formbuilder.php:306
2901
  #, php-format
2902
  msgid ""
2903
  "Before you can access your account %1s, you need to confirm your email "
2904
  "address. Please check your inbox and click the activation link."
2905
  msgstr ""
2906
 
2907
- #: ../front-end/class-formbuilder.php:302
2908
  #, php-format
2909
  msgid ""
2910
  "Before you can access your account %1s, an administrator has to approve it. "
2911
  "You will be notified via email."
2912
  msgstr ""
2913
 
2914
- #: ../front-end/class-formbuilder.php:316
2915
  msgid "Your profile has been successfully updated!"
2916
  msgstr ""
2917
 
2918
- #: ../front-end/class-formbuilder.php:326
2919
  msgid "There was an error in the submitted form"
2920
  msgstr ""
2921
 
2922
- #: ../front-end/class-formbuilder.php:348
2923
  msgid "Add User"
2924
  msgstr ""
2925
 
2926
- #: ../front-end/class-formbuilder.php:348 ../front-end/login.php:205
2927
- msgid "Register"
2928
- msgstr ""
2929
-
2930
- #: ../front-end/class-formbuilder.php:401
2931
- #: ../front-end/extra-fields/extra-fields.php:35
2932
  msgid "The avatar was successfully deleted!"
2933
  msgstr ""
2934
 
2935
- #: ../front-end/class-formbuilder.php:401
2936
- #: ../front-end/extra-fields/extra-fields.php:37
2937
  msgid "The following attachment was successfully deleted:"
2938
  msgstr ""
2939
 
2940
- #: ../front-end/class-formbuilder.php:413
2941
  msgid "Send these credentials via email."
2942
  msgstr ""
2943
 
2944
- #: ../front-end/class-formbuilder.php:562
2945
  msgid "User to edit:"
2946
  msgstr ""
2947
 
2948
- #: ../front-end/default-fields/email/email.php:44
2949
- msgid "The email you entered is not a valid email address."
2950
- msgstr ""
2951
-
2952
- #: ../front-end/default-fields/email/email.php:48
2953
  msgid "You must enter a valid email address."
2954
  msgstr ""
2955
 
2956
- #: ../front-end/default-fields/email/email.php:57
2957
- #: ../front-end/default-fields/email/email.php:64
2958
  msgid "This email is already reserved to be used soon."
2959
  msgstr ""
2960
 
2961
- #: ../front-end/default-fields/email/email.php:57
2962
- #: ../front-end/default-fields/email/email.php:64
2963
- #: ../front-end/default-fields/email/email.php:73
2964
- #: ../front-end/default-fields/email/email.php:84
2965
- #: ../front-end/default-fields/username/username.php:50
2966
- #: ../front-end/default-fields/username/username.php:65
2967
  msgid "Please try a different one!"
2968
  msgstr ""
2969
 
2970
- #: ../front-end/default-fields/email/email.php:73
2971
- #: ../front-end/default-fields/email/email.php:84
2972
  msgid "This email is already in use."
2973
  msgstr ""
2974
 
2975
- #: ../front-end/default-fields/password-repeat/password-repeat.php:37
2976
- #: ../front-end/default-fields/password-repeat/password-repeat.php:41
2977
  msgid "The passwords do not match"
2978
  msgstr ""
2979
 
2980
- #: ../front-end/default-fields/password/password.php:46
2981
- #: ../front-end/recover.php:245
2982
  #, php-format
2983
  msgid "The password must have the minimum length of %s characters"
2984
  msgstr ""
2985
 
2986
- #: ../front-end/default-fields/password/password.php:50
2987
- #: ../front-end/recover.php:249
2988
  #, php-format
2989
  msgid "The password must have a minimum strength of %s"
2990
  msgstr ""
2991
 
2992
- #: ../front-end/default-fields/username/username.php:50
2993
  msgid "This username already exists."
2994
  msgstr ""
2995
 
2996
- #: ../front-end/default-fields/username/username.php:53
2997
- #: ../front-end/default-fields/username/username.php:60
2998
  msgid "This username is invalid because it uses illegal characters."
2999
  msgstr ""
3000
 
3001
- #: ../front-end/default-fields/username/username.php:53
3002
- #: ../front-end/default-fields/username/username.php:60
3003
  msgid "Please enter a valid username."
3004
  msgstr ""
3005
 
3006
- #: ../front-end/default-fields/username/username.php:65
3007
  msgid "This username is already reserved to be used soon."
3008
  msgstr ""
3009
 
3010
- #: ../front-end/extra-fields/avatar/avatar.php:72
3011
- #: ../front-end/extra-fields/checkbox/checkbox.php:45
3012
- #: ../front-end/extra-fields/datepicker/datepicker.php:40
3013
- #: ../front-end/extra-fields/input-hidden/input-hidden.php:34
3014
- #: ../front-end/extra-fields/input/input.php:30
3015
- #: ../front-end/extra-fields/radio/radio.php:44
3016
- #: ../front-end/extra-fields/select-multiple/select-multiple.php:46
3017
- #: ../front-end/extra-fields/select-timezone/select-timezone.php:44
3018
- #: ../front-end/extra-fields/select/select.php:46
3019
- #: ../front-end/extra-fields/textarea/textarea.php:30
3020
- #: ../front-end/extra-fields/upload/upload.php:70
3021
- #: ../front-end/extra-fields/wysiwyg/wysiwyg.php:33
3022
  msgid "required"
3023
  msgstr ""
3024
 
3025
- #: ../front-end/extra-fields/extra-fields.php:99 ../front-end/login.php:92
3026
- #: ../front-end/login.php:99 ../front-end/login.php:113
3027
- #: ../front-end/recover.php:17 ../front-end/recover.php:228
 
 
 
3028
  msgid "ERROR"
3029
  msgstr ""
3030
 
3031
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:48
3032
  msgid "To use reCAPTCHA you must get an API key from"
3033
  msgstr ""
3034
 
3035
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:131
3036
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
3037
  msgstr ""
3038
 
3039
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:192
3040
  msgid "To use reCAPTCHA you must get an API public key from:"
3041
  msgstr ""
3042
 
3043
- #: ../front-end/extra-fields/recaptcha/recaptcha.php:421
3044
  msgid "Click the BACK button on your browser, and try again."
3045
  msgstr ""
3046
 
3047
- #: ../front-end/extra-fields/upload/upload.php:122
3048
  msgid "Select File"
3049
  msgstr ""
3050
 
3051
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:78
3052
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:87
3053
  msgid "Sorry, you cannot upload this file type for this field."
3054
  msgstr ""
3055
 
3056
- #: ../front-end/extra-fields/upload/upload_helper_functions.php:94
3057
  msgid "An error occurred, please try again later."
3058
  msgstr ""
3059
 
3060
- #: ../front-end/extra-fields/user-role/user-role.php:67
3061
- #: ../front-end/extra-fields/user-role/user-role.php:80
3062
  msgid "Only administrators can see this field on edit profile forms."
3063
  msgstr ""
3064
 
3065
- #: ../front-end/extra-fields/user-role/user-role.php:76
3066
  msgid "As an administrator you cannot change your role."
3067
  msgstr ""
3068
 
3069
- #: ../front-end/extra-fields/user-role/user-role.php:112
3070
  msgid "You cannot register this user role"
3071
  msgstr ""
3072
 
3073
- #: ../front-end/login.php:92
3074
  msgid "The password you entered is incorrect."
3075
  msgstr ""
3076
 
3077
- #: ../front-end/login.php:93 ../front-end/login.php:100
 
3078
  msgid "Password Lost and Found."
3079
  msgstr ""
3080
 
3081
- #: ../front-end/login.php:93 ../front-end/login.php:100
 
3082
  msgid "Lost your password"
3083
  msgstr ""
3084
 
3085
- #: ../front-end/login.php:99
3086
  msgid "Invalid username."
3087
  msgstr ""
3088
 
3089
- #: ../front-end/login.php:104 ../front-end/login.php:108
 
3090
  msgid "username"
3091
  msgstr ""
3092
 
3093
- #: ../front-end/login.php:104
3094
  msgid "email"
3095
  msgstr ""
3096
 
3097
- #: ../front-end/login.php:108
3098
  msgid "username or email"
3099
  msgstr ""
3100
 
3101
- #: ../front-end/login.php:113
3102
  msgid "Both fields are empty."
3103
  msgstr ""
3104
 
3105
- #: ../front-end/login.php:177
3106
  msgid "Username or Email"
3107
  msgstr ""
3108
 
3109
- #: ../front-end/login.php:211
3110
  msgid "Lost your password?"
3111
  msgstr ""
3112
 
3113
- #: ../front-end/login.php:253 ../front-end/logout.php:26
 
3114
  msgid "Log out of this account"
3115
  msgstr ""
3116
 
3117
- #: ../front-end/login.php:253
3118
  msgid "Log out"
3119
  msgstr ""
3120
 
3121
- #: ../front-end/login.php:254
3122
  #, php-format
3123
  msgid "You are currently logged in as %1$s. %2$s"
3124
  msgstr ""
3125
 
3126
- #: ../front-end/logout.php:15
3127
  #, php-format
3128
  msgid "You are currently logged in as %s. "
3129
  msgstr ""
3130
 
3131
- #: ../front-end/logout.php:15
3132
  msgid "Log out &raquo;"
3133
  msgstr ""
3134
 
3135
- #: ../front-end/recover.php:17
3136
  msgid ""
3137
  "Your account has to be confirmed by an administrator before you can use the "
3138
  "\"Password Reset\" feature."
3139
  msgstr ""
3140
 
3141
- #: ../front-end/recover.php:91
3142
  msgid "Reset Password"
3143
  msgstr ""
3144
 
3145
- #: ../front-end/recover.php:111
3146
  msgid "Please enter your username or email address."
3147
  msgstr ""
3148
 
3149
- #: ../front-end/recover.php:112
3150
  msgid "You will receive a link to create a new password via email."
3151
  msgstr ""
3152
 
3153
- #: ../front-end/recover.php:119
3154
  msgid "Username or E-mail"
3155
  msgstr ""
3156
 
3157
- #: ../front-end/recover.php:125
3158
  msgid "Get New Password"
3159
  msgstr ""
3160
 
3161
- #: ../front-end/recover.php:166
3162
  msgid "The username entered wasn't found in the database!"
3163
  msgstr ""
3164
 
3165
- #: ../front-end/recover.php:166
3166
  msgid "Please check that you entered the correct username."
3167
  msgstr ""
3168
 
3169
- #: ../front-end/recover.php:181
3170
  msgid "Check your e-mail for the confirmation link."
3171
  msgstr ""
3172
 
3173
- #: ../front-end/recover.php:188
3174
  msgid "The email address entered wasn't found in the database!"
3175
  msgstr ""
3176
 
3177
- #: ../front-end/recover.php:188
3178
  msgid "Please check that you entered the correct email address."
3179
  msgstr ""
3180
 
3181
- #: ../front-end/recover.php:216
3182
  #, php-format
3183
  msgid ""
3184
  "Someone requested that the password be reset for the following account: <b>"
@@ -3186,222 +3371,223 @@ msgid ""
3186
  "happen.<br/>To reset your password, visit the following link:%2$s"
3187
  msgstr ""
3188
 
3189
- #: ../front-end/recover.php:219
3190
  #, php-format
3191
  msgid "Password Reset from \"%1$s\""
3192
  msgstr ""
3193
 
3194
- #: ../front-end/recover.php:228
3195
  #, php-format
3196
  msgid "There was an error while trying to send the activation link to %1$s!"
3197
  msgstr ""
3198
 
3199
- #: ../front-end/recover.php:256
3200
  msgid "Your password has been successfully changed!"
3201
  msgstr ""
3202
 
3203
- #: ../front-end/recover.php:275
3204
  #, php-format
3205
  msgid "You have successfully reset your password to: %1$s"
3206
  msgstr ""
3207
 
3208
- #: ../front-end/recover.php:278 ../front-end/recover.php:292
 
3209
  #, php-format
3210
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
3211
  msgstr ""
3212
 
3213
- #: ../front-end/recover.php:289
3214
  #, php-format
3215
  msgid ""
3216
  "%1$s has requested a password change via the password reset feature.<br/>His/"
3217
  "her new password is:%2$s"
3218
  msgstr ""
3219
 
3220
- #: ../front-end/recover.php:308
3221
  msgid "The entered passwords don't match!"
3222
  msgstr ""
3223
 
3224
- #: ../front-end/recover.php:375
3225
  msgid "ERROR:"
3226
  msgstr ""
3227
 
3228
- #: ../front-end/recover.php:375
3229
  msgid "Invalid key!"
3230
  msgstr ""
3231
 
3232
- #: ../front-end/register.php:46
3233
  msgid "Invalid activation key!"
3234
  msgstr ""
3235
 
3236
- #: ../front-end/register.php:50
3237
  msgid "This username is now active!"
3238
  msgstr ""
3239
 
3240
- #: ../front-end/register.php:71
3241
  msgid "This username is already activated!"
3242
  msgstr ""
3243
 
3244
- #: ../front-end/register.php:126
3245
  msgid "Your email was successfully confirmed."
3246
  msgstr ""
3247
 
3248
- #: ../front-end/register.php:130
3249
  msgid "You will soon be redirected automatically."
3250
  msgstr ""
3251
 
3252
- #: ../front-end/register.php:159
3253
  msgid "There was an error while trying to activate the user."
3254
  msgstr ""
3255
 
3256
- #: ../index.php:34
3257
  msgid ""
3258
  " is also activated. You need to deactivate it before activating this version "
3259
  "of the plugin."
3260
  msgstr ""
3261
 
3262
- #: ../modules/custom-redirects/custom_redirects_admin.php:45
3263
  msgid "After Login"
3264
  msgstr ""
3265
 
3266
- #: ../modules/custom-redirects/custom_redirects_admin.php:46
3267
  msgid "After Logout"
3268
  msgstr ""
3269
 
3270
- #: ../modules/custom-redirects/custom_redirects_admin.php:47
3271
  msgid "After Registration"
3272
  msgstr ""
3273
 
3274
- #: ../modules/custom-redirects/custom_redirects_admin.php:48
3275
  msgid "After Edit Profile"
3276
  msgstr ""
3277
 
3278
- #: ../modules/custom-redirects/custom_redirects_admin.php:49
3279
  msgid "After Successful Email Confirmation"
3280
  msgstr ""
3281
 
3282
- #: ../modules/custom-redirects/custom_redirects_admin.php:50
3283
  msgid "After Successful Password Reset"
3284
  msgstr ""
3285
 
3286
- #: ../modules/custom-redirects/custom_redirects_admin.php:51
3287
  msgid "Dashboard (redirect users from accessing the dashboard)"
3288
  msgstr ""
3289
 
3290
- #: ../modules/custom-redirects/custom_redirects_admin.php:55
3291
  msgid "User ID"
3292
  msgstr ""
3293
 
3294
- #: ../modules/custom-redirects/custom_redirects_admin.php:61
3295
  msgid "User ID or Username"
3296
  msgstr ""
3297
 
3298
- #: ../modules/custom-redirects/custom_redirects_admin.php:62
3299
  msgid "User ID / Username"
3300
  msgstr ""
3301
 
3302
- #: ../modules/custom-redirects/custom_redirects_admin.php:62
3303
  msgid "Please select and enter the ID or username of your user."
3304
  msgstr ""
3305
 
3306
- #: ../modules/custom-redirects/custom_redirects_admin.php:63
3307
- #: ../modules/custom-redirects/custom_redirects_admin.php:93
3308
- #: ../modules/custom-redirects/custom_redirects_admin.php:112
3309
- #: ../modules/custom-redirects/custom_redirects_admin.php:131
3310
  msgid "Redirect Type"
3311
  msgstr ""
3312
 
3313
- #: ../modules/custom-redirects/custom_redirects_admin.php:64
3314
- #: ../modules/custom-redirects/custom_redirects_admin.php:94
3315
- #: ../modules/custom-redirects/custom_redirects_admin.php:113
3316
- #: ../modules/custom-redirects/custom_redirects_admin.php:138
3317
  msgid "Redirect URL"
3318
  msgstr ""
3319
 
3320
- #: ../modules/custom-redirects/custom_redirects_admin.php:64
3321
- #: ../modules/custom-redirects/custom_redirects_admin.php:94
3322
- #: ../modules/custom-redirects/custom_redirects_admin.php:113
3323
- #: ../modules/custom-redirects/custom_redirects_admin.php:138
3324
  msgid ""
3325
  "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, "
3326
  "{{user_id}}, {{user_nicename}}, {{http_referer}}"
3327
  msgstr ""
3328
 
3329
- #: ../modules/custom-redirects/custom_redirects_admin.php:71
3330
- #: ../modules/custom-redirects/custom_redirects_admin.php:240
3331
  msgid "Individual User Redirects"
3332
  msgstr ""
3333
 
3334
- #: ../modules/custom-redirects/custom_redirects_admin.php:84
3335
  msgid "... Choose"
3336
  msgstr ""
3337
 
3338
- #: ../modules/custom-redirects/custom_redirects_admin.php:92
3339
- #: ../modules/email-customizer/email-customizer.php:31
3340
  msgid "User Role"
3341
  msgstr ""
3342
 
3343
- #: ../modules/custom-redirects/custom_redirects_admin.php:92
3344
  msgid "Select a user role."
3345
  msgstr ""
3346
 
3347
- #: ../modules/custom-redirects/custom_redirects_admin.php:101
3348
- #: ../modules/custom-redirects/custom_redirects_admin.php:241
3349
  msgid "User Role based Redirects"
3350
  msgstr ""
3351
 
3352
- #: ../modules/custom-redirects/custom_redirects_admin.php:120
3353
- #: ../modules/custom-redirects/custom_redirects_admin.php:242
3354
  msgid "Global Redirects"
3355
  msgstr ""
3356
 
3357
- #: ../modules/custom-redirects/custom_redirects_admin.php:133
3358
  msgid "Login ( wp_login.php )"
3359
  msgstr ""
3360
 
3361
- #: ../modules/custom-redirects/custom_redirects_admin.php:134
3362
  msgid "Register ( wp-login.php?action=register )"
3363
  msgstr ""
3364
 
3365
- #: ../modules/custom-redirects/custom_redirects_admin.php:135
3366
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
3367
  msgstr ""
3368
 
3369
- #: ../modules/custom-redirects/custom_redirects_admin.php:136
3370
  msgid "Author Archive ( http://sitename.com/author/admin )"
3371
  msgstr ""
3372
 
3373
- #: ../modules/custom-redirects/custom_redirects_admin.php:145
3374
  msgid "Redirect Default WordPress Forms and Pages"
3375
  msgstr ""
3376
 
3377
- #: ../modules/custom-redirects/custom_redirects_admin.php:157
3378
  msgid "How does this work?"
3379
  msgstr ""
3380
 
3381
- #: ../modules/custom-redirects/custom_redirects_admin.php:179
3382
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
3383
  msgstr ""
3384
 
3385
- #: ../modules/custom-redirects/custom_redirects_admin.php:193
3386
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
3387
  msgstr ""
3388
 
3389
- #: ../modules/custom-redirects/custom_redirects_admin.php:207
3390
- #: ../modules/custom-redirects/custom_redirects_admin.php:221
3391
  msgid "<pre>Redirect</pre><pre>URL</pre>"
3392
  msgstr ""
3393
 
3394
- #: ../modules/custom-redirects/custom_redirects_admin.php:236
3395
  msgid ""
3396
  "These redirects happen after a successful action, like registration or after "
3397
  "a successful login."
3398
  msgstr ""
3399
 
3400
- #: ../modules/custom-redirects/custom_redirects_admin.php:238
3401
  msgid "Which redirect happens depends on the following priority:"
3402
  msgstr ""
3403
 
3404
- #: ../modules/custom-redirects/custom_redirects_admin.php:243
3405
  msgid ""
3406
  "Individual redirects defined in shortcodes or in the Multiple Registration "
3407
  "and Edit Profile form settings. (<strong><em>redirect_priority=\"top\"</em></"
@@ -3409,95 +3595,95 @@ msgid ""
3409
  "redirect will have priority over all other redirects)"
3410
  msgstr ""
3411
 
3412
- #: ../modules/custom-redirects/custom_redirects_admin.php:246
3413
  msgid "Redirect Default WordPress forms and pages"
3414
  msgstr ""
3415
 
3416
- #: ../modules/custom-redirects/custom_redirects_admin.php:247
3417
  msgid ""
3418
  "With these you can redirect various WordPress forms and pages to pages "
3419
  "created with profile builder."
3420
  msgstr ""
3421
 
3422
- #: ../modules/custom-redirects/custom_redirects_admin.php:249
3423
  msgid "Available tags for dynamic URLs"
3424
  msgstr ""
3425
 
3426
- #: ../modules/custom-redirects/custom_redirects_admin.php:250
3427
  msgid ""
3428
  "You use the following tags in your URLs to redirect users to various pages."
3429
  msgstr ""
3430
 
3431
- #: ../modules/custom-redirects/custom_redirects_admin.php:252
3432
  msgid "generates a url of the current website homepage."
3433
  msgstr ""
3434
 
3435
- #: ../modules/custom-redirects/custom_redirects_admin.php:253
3436
  msgid ""
3437
  "in WordPress the <a target='_blank' href='https://codex.wordpress.org/"
3438
  "Function_Reference/site_url'>site url</a> can be different then the home url"
3439
  msgstr ""
3440
 
3441
- #: ../modules/custom-redirects/custom_redirects_admin.php:254
3442
  msgid "the ID of the user"
3443
  msgstr ""
3444
 
3445
- #: ../modules/custom-redirects/custom_redirects_admin.php:255
3446
  msgid ""
3447
  "the URL sanitized version of the username, the user nicename can be safely "
3448
  "used in URLs since it can't contain special characters or spaces."
3449
  msgstr ""
3450
 
3451
- #: ../modules/custom-redirects/custom_redirects_admin.php:256
3452
  msgid "the URL of the previously visited page"
3453
  msgstr ""
3454
 
3455
- #: ../modules/custom-redirects/custom_redirects_admin.php:339
3456
- #: ../modules/custom-redirects/custom_redirects_admin.php:345
3457
- #: ../modules/custom-redirects/custom_redirects_admin.php:351
3458
  msgid "You can't add duplicate redirects!"
3459
  msgstr ""
3460
 
3461
- #: ../modules/email-customizer/admin-email-customizer.php:11
3462
- #: ../modules/email-customizer/admin-email-customizer.php:12
3463
- #: ../modules/modules.php:93
3464
  msgid "Admin Email Customizer"
3465
  msgstr ""
3466
 
3467
- #: ../modules/email-customizer/admin-email-customizer.php:38
3468
  msgid ""
3469
  "These settings are also replicated in the \"User Email Customizer\" settings-"
3470
  "page upon save."
3471
  msgstr ""
3472
 
3473
- #: ../modules/email-customizer/admin-email-customizer.php:38
3474
- #: ../modules/email-customizer/user-email-customizer.php:38
3475
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3476
  msgstr ""
3477
 
3478
- #: ../modules/email-customizer/admin-email-customizer.php:41
3479
- #: ../modules/email-customizer/user-email-customizer.php:41
3480
  msgid "From (name)"
3481
  msgstr ""
3482
 
3483
- #: ../modules/email-customizer/admin-email-customizer.php:49
3484
- #: ../modules/email-customizer/user-email-customizer.php:49
3485
  msgid "From (reply-to email)"
3486
  msgstr ""
3487
 
3488
- #: ../modules/email-customizer/admin-email-customizer.php:54
3489
- #: ../modules/email-customizer/user-email-customizer.php:54
3490
  msgid ""
3491
  "Must be a valid email address or the tag {{reply_to}} which defaults to the "
3492
  "administrator email"
3493
  msgstr ""
3494
 
3495
- #: ../modules/email-customizer/admin-email-customizer.php:57
3496
- #: ../modules/email-customizer/user-email-customizer.php:57
3497
  msgid "Common Settings"
3498
  msgstr ""
3499
 
3500
- #: ../modules/email-customizer/admin-email-customizer.php:60
3501
  msgid ""
3502
  "\n"
3503
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -3505,24 +3691,24 @@ msgid ""
3505
  "<p>E-mail:{{user_email}}</p>\n"
3506
  msgstr ""
3507
 
3508
- #: ../modules/email-customizer/admin-email-customizer.php:69
3509
- #: ../modules/email-customizer/admin-email-customizer.php:99
3510
- #: ../modules/email-customizer/admin-email-customizer.php:126
3511
- #: ../modules/email-customizer/user-email-customizer.php:71
3512
- #: ../modules/email-customizer/user-email-customizer.php:99
3513
- #: ../modules/email-customizer/user-email-customizer.php:128
3514
- #: ../modules/email-customizer/user-email-customizer.php:155
3515
- #: ../modules/email-customizer/user-email-customizer.php:183
3516
- #: ../modules/email-customizer/user-email-customizer.php:214
3517
- #: ../modules/email-customizer/user-email-customizer.php:241
3518
  msgid "Email Subject"
3519
  msgstr ""
3520
 
3521
- #: ../modules/email-customizer/admin-email-customizer.php:84
3522
  msgid "Default Registration & Registration with Email Confirmation"
3523
  msgstr ""
3524
 
3525
- #: ../modules/email-customizer/admin-email-customizer.php:87
3526
  msgid ""
3527
  "\n"
3528
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -3533,12 +3719,12 @@ msgid ""
3533
  "in!</p>\n"
3534
  msgstr ""
3535
 
3536
- #: ../modules/email-customizer/admin-email-customizer.php:114
3537
- #: ../modules/email-customizer/user-email-customizer.php:143
3538
  msgid "Registration with Admin Approval"
3539
  msgstr ""
3540
 
3541
- #: ../modules/email-customizer/admin-email-customizer.php:117
3542
  msgid ""
3543
  "\n"
3544
  "<p>{{username}} has requested a password change via the password reset "
@@ -3546,79 +3732,79 @@ msgid ""
3546
  "<p>His/her new password is: {{password}}</p>\n"
3547
  msgstr ""
3548
 
3549
- #: ../modules/email-customizer/admin-email-customizer.php:141
3550
  msgid "Admin Notification for User Password Reset"
3551
  msgstr ""
3552
 
3553
- #: ../modules/email-customizer/email-customizer.php:7
3554
  msgid "Available Tags"
3555
  msgstr ""
3556
 
3557
- #: ../modules/email-customizer/email-customizer.php:21
3558
  msgid "Site Url"
3559
  msgstr ""
3560
 
3561
- #: ../modules/email-customizer/email-customizer.php:22
3562
  msgid "Site Name"
3563
  msgstr ""
3564
 
3565
- #: ../modules/email-customizer/email-customizer.php:25
3566
- #: ../modules/user-listing/userlisting.php:133
3567
  msgid "User Id"
3568
  msgstr ""
3569
 
3570
- #: ../modules/email-customizer/email-customizer.php:33
3571
  msgid "Reply To"
3572
  msgstr ""
3573
 
3574
- #: ../modules/email-customizer/email-customizer.php:36
3575
  msgid "Activation Key"
3576
  msgstr ""
3577
 
3578
- #: ../modules/email-customizer/email-customizer.php:37
3579
  msgid "Activation Url"
3580
  msgstr ""
3581
 
3582
- #: ../modules/email-customizer/email-customizer.php:38
3583
  msgid "Activation Link"
3584
  msgstr ""
3585
 
3586
- #: ../modules/email-customizer/email-customizer.php:42
3587
  msgid "Reset Key"
3588
  msgstr ""
3589
 
3590
- #: ../modules/email-customizer/email-customizer.php:43
3591
  msgid "Reset Url"
3592
  msgstr ""
3593
 
3594
- #: ../modules/email-customizer/email-customizer.php:44
3595
  msgid "Reset Link"
3596
  msgstr ""
3597
 
3598
- #: ../modules/email-customizer/user-email-customizer.php:11
3599
- #: ../modules/email-customizer/user-email-customizer.php:12
3600
- #: ../modules/modules.php:100
3601
  msgid "User Email Customizer"
3602
  msgstr ""
3603
 
3604
- #: ../modules/email-customizer/user-email-customizer.php:38
3605
  msgid ""
3606
  "These settings are also replicated in the \"Admin Email Customizer\" "
3607
  "settings-page upon save."
3608
  msgstr ""
3609
 
3610
- #: ../modules/email-customizer/user-email-customizer.php:64
3611
  msgid ""
3612
  "\n"
3613
  "<h3>Welcome to {{site_name}}!</h3>\n"
3614
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3615
  msgstr ""
3616
 
3617
- #: ../modules/email-customizer/user-email-customizer.php:85
3618
  msgid "Default Registration"
3619
  msgstr ""
3620
 
3621
- #: ../modules/email-customizer/user-email-customizer.php:91
3622
  msgid ""
3623
  "\n"
3624
  "<p>To activate your user, please click the following link:<br/>\n"
@@ -3627,15 +3813,15 @@ msgid ""
3627
  "</p>\n"
3628
  msgstr ""
3629
 
3630
- #: ../modules/email-customizer/user-email-customizer.php:103
3631
  msgid "[{{site_name}}] Activate {{username}}"
3632
  msgstr ""
3633
 
3634
- #: ../modules/email-customizer/user-email-customizer.php:114
3635
  msgid "Registration with Email Confirmation"
3636
  msgstr ""
3637
 
3638
- #: ../modules/email-customizer/user-email-customizer.php:120
3639
  msgid ""
3640
  "\n"
3641
  "<h3>Welcome to {{site_name}}!</h3>\n"
@@ -3644,11 +3830,11 @@ msgid ""
3644
  "You will be notified via email.</p>\n"
3645
  msgstr ""
3646
 
3647
- #: ../modules/email-customizer/user-email-customizer.php:132
3648
  msgid "A new account has been created for you on {{site_name}}"
3649
  msgstr ""
3650
 
3651
- #: ../modules/email-customizer/user-email-customizer.php:148
3652
  msgid ""
3653
  "\n"
3654
  "<h3>Good News!</h3>\n"
@@ -3656,15 +3842,15 @@ msgid ""
3656
  "{{site_name}}.</p>\n"
3657
  msgstr ""
3658
 
3659
- #: ../modules/email-customizer/user-email-customizer.php:159
3660
  msgid "Your account on {{site_name}} has been approved!"
3661
  msgstr ""
3662
 
3663
- #: ../modules/email-customizer/user-email-customizer.php:170
3664
  msgid "User Approval Notification"
3665
  msgstr ""
3666
 
3667
- #: ../modules/email-customizer/user-email-customizer.php:175
3668
  msgid ""
3669
  "\n"
3670
  "<h3>Hello,</h3>\n"
@@ -3672,15 +3858,15 @@ msgid ""
3672
  "{{username}} on {{site_name}}.</p>\n"
3673
  msgstr ""
3674
 
3675
- #: ../modules/email-customizer/user-email-customizer.php:187
3676
  msgid "Your account on {{site_name}} has been unapproved!"
3677
  msgstr ""
3678
 
3679
- #: ../modules/email-customizer/user-email-customizer.php:198
3680
  msgid "Unapproved User Notification"
3681
  msgstr ""
3682
 
3683
- #: ../modules/email-customizer/user-email-customizer.php:204
3684
  msgid ""
3685
  "\n"
3686
  "<p>Someone requested that the password be reset for the following account: "
@@ -3692,261 +3878,268 @@ msgid ""
3692
  "{{{reset_link}}}</p>\n"
3693
  msgstr ""
3694
 
3695
- #: ../modules/email-customizer/user-email-customizer.php:218
3696
  msgid "[{{site_name}}] Password Reset"
3697
  msgstr ""
3698
 
3699
- #: ../modules/email-customizer/user-email-customizer.php:229
3700
  msgid "Password Reset Email"
3701
  msgstr ""
3702
 
3703
- #: ../modules/email-customizer/user-email-customizer.php:235
3704
  msgid ""
3705
  "\n"
3706
  "<p>You have successfully reset your password to: {{password}}</p>\n"
3707
  msgstr ""
3708
 
3709
- #: ../modules/email-customizer/user-email-customizer.php:245
3710
  msgid "[{{site_name}}] Password Reset Successfully"
3711
  msgstr ""
3712
 
3713
- #: ../modules/email-customizer/user-email-customizer.php:256
3714
  msgid "Password Reset Success Email"
3715
  msgstr ""
3716
 
3717
- #: ../modules/modules.php:11 ../modules/modules.php:55
 
3718
  msgid "Modules"
3719
  msgstr ""
3720
 
3721
- #: ../modules/modules.php:56
3722
  msgid ""
3723
  "Here you can activate / deactivate available modules for Profile Builder."
3724
  msgstr ""
3725
 
3726
- #: ../modules/modules.php:66
3727
  msgid "Name/Description"
3728
  msgstr ""
3729
 
3730
- #: ../modules/modules.php:67
3731
  msgid "Status"
3732
  msgstr ""
3733
 
3734
- #: ../modules/modules.php:74 ../modules/modules.php:81
3735
- #: ../modules/modules.php:88 ../modules/modules.php:95
3736
- #: ../modules/modules.php:102 ../modules/modules.php:109
 
 
 
3737
  msgid "Active"
3738
  msgstr ""
3739
 
3740
- #: ../modules/modules.php:75 ../modules/modules.php:82
3741
- #: ../modules/modules.php:89 ../modules/modules.php:96
3742
- #: ../modules/modules.php:103 ../modules/modules.php:110
 
 
 
3743
  msgid "Inactive"
3744
  msgstr ""
3745
 
3746
- #: ../modules/multiple-forms/edit-profile-forms.php:11
3747
- #: ../modules/multiple-forms/edit-profile-forms.php:12
3748
  msgid "Edit-profile Form"
3749
  msgstr ""
3750
 
3751
- #: ../modules/multiple-forms/edit-profile-forms.php:13
3752
- #: ../modules/multiple-forms/register-forms.php:13
3753
- #: ../modules/user-listing/userlisting.php:13
3754
  msgid "Add New"
3755
  msgstr ""
3756
 
3757
- #: ../modules/multiple-forms/edit-profile-forms.php:14
3758
  msgid "Add new Edit-profile Form"
3759
  msgstr ""
3760
 
3761
- #: ../modules/multiple-forms/edit-profile-forms.php:15
3762
  msgid "Edit the Edit-profile Forms"
3763
  msgstr ""
3764
 
3765
- #: ../modules/multiple-forms/edit-profile-forms.php:16
3766
  msgid "New Edit-profile Form"
3767
  msgstr ""
3768
 
3769
- #: ../modules/multiple-forms/edit-profile-forms.php:17
3770
- #: ../modules/multiple-forms/edit-profile-forms.php:23
3771
  msgid "Edit-profile Forms"
3772
  msgstr ""
3773
 
3774
- #: ../modules/multiple-forms/edit-profile-forms.php:18
3775
  msgid "View the Edit-profile Form"
3776
  msgstr ""
3777
 
3778
- #: ../modules/multiple-forms/edit-profile-forms.php:19
3779
  msgid "Search the Edit-profile Forms"
3780
  msgstr ""
3781
 
3782
- #: ../modules/multiple-forms/edit-profile-forms.php:20
3783
  msgid "No Edit-profile Form found"
3784
  msgstr ""
3785
 
3786
- #: ../modules/multiple-forms/edit-profile-forms.php:21
3787
  msgid "No Edit-profile Forms found in trash"
3788
  msgstr ""
3789
 
3790
- #: ../modules/multiple-forms/edit-profile-forms.php:131
3791
- #: ../modules/multiple-forms/register-forms.php:134
3792
- #: ../modules/user-listing/userlisting.php:1155
3793
  msgid "Shortcode"
3794
  msgstr ""
3795
 
3796
- #: ../modules/multiple-forms/edit-profile-forms.php:151
3797
- #: ../modules/multiple-forms/register-forms.php:155
3798
- #: ../modules/user-listing/userlisting.php:1176
3799
  msgid "(no title)"
3800
  msgstr ""
3801
 
3802
- #: ../modules/multiple-forms/edit-profile-forms.php:171
3803
- #: ../modules/multiple-forms/register-forms.php:174
3804
- #: ../modules/user-listing/userlisting.php:1196
3805
  msgid "The shortcode will be available after you publish this form."
3806
  msgstr ""
3807
 
3808
- #: ../modules/multiple-forms/edit-profile-forms.php:173
3809
- #: ../modules/multiple-forms/register-forms.php:176
3810
- #: ../modules/user-listing/userlisting.php:1198
3811
  msgid "Use this shortcode on the page you want the form to be displayed:"
3812
  msgstr ""
3813
 
3814
- #: ../modules/multiple-forms/edit-profile-forms.php:177
3815
- #: ../modules/multiple-forms/register-forms.php:180
3816
- #: ../modules/user-listing/userlisting.php:1202
3817
  msgid ""
3818
  "<span style=\"color:red;\">Note:</span> changing the form title also changes "
3819
  "the shortcode!"
3820
  msgstr ""
3821
 
3822
- #: ../modules/multiple-forms/edit-profile-forms.php:183
3823
- #: ../modules/multiple-forms/register-forms.php:186
3824
- #: ../modules/user-listing/userlisting.php:1235
3825
  msgid "Form Shortcode"
3826
  msgstr ""
3827
 
3828
- #: ../modules/multiple-forms/edit-profile-forms.php:202
3829
- #: ../modules/multiple-forms/register-forms.php:226
3830
  msgid "Redirect"
3831
  msgstr ""
3832
 
3833
- #: ../modules/multiple-forms/edit-profile-forms.php:202
3834
- #: ../modules/multiple-forms/register-forms.php:226
3835
  msgid "Whether to redirect the user to a specific page or not"
3836
  msgstr ""
3837
 
3838
- #: ../modules/multiple-forms/edit-profile-forms.php:203
3839
- #: ../modules/multiple-forms/register-forms.php:227
3840
  msgid "Display Messages"
3841
  msgstr ""
3842
 
3843
- #: ../modules/multiple-forms/edit-profile-forms.php:203
3844
- #: ../modules/multiple-forms/register-forms.php:227
3845
  msgid "Allowed time to display any success messages (in seconds)"
3846
  msgstr ""
3847
 
3848
- #: ../modules/multiple-forms/edit-profile-forms.php:204
3849
- #: ../modules/multiple-forms/register-forms.php:228
3850
  msgid "URL"
3851
  msgstr ""
3852
 
3853
- #: ../modules/multiple-forms/edit-profile-forms.php:204
3854
  msgid ""
3855
  "Specify the URL of the page users will be redirected once they updated their "
3856
  "profile using this form<br/>Use the following format: http://www.mysite.com"
3857
  msgstr ""
3858
 
3859
- #: ../modules/multiple-forms/edit-profile-forms.php:211
3860
  msgid "After Profile Update..."
3861
  msgstr ""
3862
 
3863
- #: ../modules/multiple-forms/edit-profile-forms.php:237
3864
- #: ../modules/multiple-forms/register-forms.php:258
3865
  msgid "Add New Field to the List"
3866
  msgstr ""
3867
 
3868
- #: ../modules/multiple-forms/edit-profile-forms.php:241
3869
- #: ../modules/multiple-forms/register-forms.php:262
3870
  msgid "Choose one of the supported fields you manage <a href=\""
3871
  msgstr ""
3872
 
3873
- #: ../modules/multiple-forms/edit-profile-forms.php:270
3874
  msgid "This form is empty."
3875
  msgstr ""
3876
 
3877
- #: ../modules/multiple-forms/multiple-forms.php:215
3878
  msgid "You need to specify the title of the form before creating it"
3879
  msgstr ""
3880
 
3881
- #: ../modules/multiple-forms/multiple-forms.php:399
3882
  msgid "<pre>Title (Type)</pre>"
3883
  msgstr ""
3884
 
3885
- #: ../modules/multiple-forms/multiple-forms.php:399
3886
  msgid "Delete all items"
3887
  msgstr ""
3888
 
3889
- #: ../modules/multiple-forms/multiple-forms.php:399
3890
  msgid "Delete all"
3891
  msgstr ""
3892
 
3893
- #: ../modules/multiple-forms/register-forms.php:11
3894
- #: ../modules/multiple-forms/register-forms.php:12
3895
  msgid "Registration Form"
3896
  msgstr ""
3897
 
3898
- #: ../modules/multiple-forms/register-forms.php:14
3899
  msgid "Add new Registration Form"
3900
  msgstr ""
3901
 
3902
- #: ../modules/multiple-forms/register-forms.php:15
3903
  msgid "Edit the Registration Forms"
3904
  msgstr ""
3905
 
3906
- #: ../modules/multiple-forms/register-forms.php:16
3907
  msgid "New Registration Form"
3908
  msgstr ""
3909
 
3910
- #: ../modules/multiple-forms/register-forms.php:17
3911
- #: ../modules/multiple-forms/register-forms.php:23
3912
  msgid "Registration Forms"
3913
  msgstr ""
3914
 
3915
- #: ../modules/multiple-forms/register-forms.php:18
3916
  msgid "View the Registration Form"
3917
  msgstr ""
3918
 
3919
- #: ../modules/multiple-forms/register-forms.php:19
3920
  msgid "Search the Registration Forms"
3921
  msgstr ""
3922
 
3923
- #: ../modules/multiple-forms/register-forms.php:20
3924
  msgid "No Registration Form found"
3925
  msgstr ""
3926
 
3927
- #: ../modules/multiple-forms/register-forms.php:21
3928
  msgid "No Registration Forms found in trash"
3929
  msgstr ""
3930
 
3931
- #: ../modules/multiple-forms/register-forms.php:215
3932
  msgid "Default Role"
3933
  msgstr ""
3934
 
3935
- #: ../modules/multiple-forms/register-forms.php:224
3936
  msgid "Set Role"
3937
  msgstr ""
3938
 
3939
- #: ../modules/multiple-forms/register-forms.php:224
3940
  msgid ""
3941
  "Choose what role the user will have after (s)he registered<br/>If not "
3942
  "specified, defaults to the role set in the WordPress settings"
3943
  msgstr ""
3944
 
3945
- #: ../modules/multiple-forms/register-forms.php:225
3946
  msgid "Automatically Log In"
3947
  msgstr ""
3948
 
3949
- #: ../modules/multiple-forms/register-forms.php:225
3950
  msgid ""
3951
  "Whether to automatically log in the newly registered user or not<br/>Only "
3952
  "works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
@@ -3954,355 +4147,351 @@ msgid ""
3954
  "automatic login not work"
3955
  msgstr ""
3956
 
3957
- #: ../modules/multiple-forms/register-forms.php:226
3958
  msgid "Choose..."
3959
  msgstr ""
3960
 
3961
- #: ../modules/multiple-forms/register-forms.php:228
3962
  msgid ""
3963
  "Specify the URL of the page users will be redirected once registered using "
3964
  "this form<br/>Use the following format: http://www.mysite.com"
3965
  msgstr ""
3966
 
3967
- #: ../modules/multiple-forms/register-forms.php:234
3968
  msgid "After Registration..."
3969
  msgstr ""
3970
 
3971
- #: ../modules/user-listing/class-userlisting.php:470
3972
- #: ../modules/user-listing/userlisting.php:724
3973
- #: ../modules/user-listing/userlisting.php:968
3974
- #: ../modules/user-listing/userlisting.php:1011
3975
- #: ../modules/user-listing/userlisting.php:1355
3976
  msgid "Search Users by All Fields"
3977
  msgstr ""
3978
 
3979
- #: ../modules/user-listing/userlisting.php:14
3980
  msgid "Add new User Listing"
3981
  msgstr ""
3982
 
3983
- #: ../modules/user-listing/userlisting.php:15
3984
  msgid "Edit the User Listing"
3985
  msgstr ""
3986
 
3987
- #: ../modules/user-listing/userlisting.php:16
3988
  msgid "New User Listing"
3989
  msgstr ""
3990
 
3991
- #: ../modules/user-listing/userlisting.php:18
3992
  msgid "View the User Listing"
3993
  msgstr ""
3994
 
3995
- #: ../modules/user-listing/userlisting.php:19
3996
  msgid "Search the User Listing"
3997
  msgstr ""
3998
 
3999
- #: ../modules/user-listing/userlisting.php:20
4000
  msgid "No User Listing found"
4001
  msgstr ""
4002
 
4003
- #: ../modules/user-listing/userlisting.php:21
4004
  msgid "No User Listing found in trash"
4005
  msgstr ""
4006
 
4007
- #: ../modules/user-listing/userlisting.php:95
4008
  msgid "Display name as"
4009
  msgstr ""
4010
 
4011
- #: ../modules/user-listing/userlisting.php:125
4012
- #: ../modules/user-listing/userlisting.php:1263
4013
  msgid "Registration Date"
4014
  msgstr ""
4015
 
4016
- #: ../modules/user-listing/userlisting.php:126
4017
- #: ../modules/user-listing/userlisting.php:1267
4018
  msgid "Number of Posts"
4019
  msgstr ""
4020
 
4021
- #: ../modules/user-listing/userlisting.php:130
4022
  msgid "More Info"
4023
  msgstr ""
4024
 
4025
- #: ../modules/user-listing/userlisting.php:131
4026
  msgid "More Info Url"
4027
  msgstr ""
4028
 
4029
- #: ../modules/user-listing/userlisting.php:132
4030
  msgid "Avatar or Gravatar"
4031
  msgstr ""
4032
 
4033
- #: ../modules/user-listing/userlisting.php:134
4034
  msgid "User Nicename"
4035
  msgstr ""
4036
 
4037
- #: ../modules/user-listing/userlisting.php:161
4038
  msgid "Meta Variables"
4039
  msgstr ""
4040
 
4041
- #: ../modules/user-listing/userlisting.php:167
4042
  msgid "Sort Variables"
4043
  msgstr ""
4044
 
4045
- #: ../modules/user-listing/userlisting.php:171
4046
- #: ../modules/user-listing/userlisting.php:198
4047
  msgid "Extra Functions"
4048
  msgstr ""
4049
 
4050
- #: ../modules/user-listing/userlisting.php:173
4051
  msgid "Pagination"
4052
  msgstr ""
4053
 
4054
- #: ../modules/user-listing/userlisting.php:174
4055
  msgid "Search all Fields"
4056
  msgstr ""
4057
 
4058
- #: ../modules/user-listing/userlisting.php:200
4059
  msgid "Go Back Link"
4060
  msgstr ""
4061
 
4062
- #: ../modules/user-listing/userlisting.php:218
4063
  msgid "All-userlisting Template"
4064
  msgstr ""
4065
 
4066
- #: ../modules/user-listing/userlisting.php:221
4067
  msgid "Single-userlisting Template"
4068
  msgstr ""
4069
 
4070
- #: ../modules/user-listing/userlisting.php:247
4071
  msgid "Avatar"
4072
  msgstr ""
4073
 
4074
- #: ../modules/user-listing/userlisting.php:251
4075
- #: ../modules/user-listing/userlisting.php:638
4076
  msgid "Posts"
4077
  msgstr ""
4078
 
4079
- #: ../modules/user-listing/userlisting.php:252
4080
- #: ../modules/user-listing/userlisting.php:620
4081
  msgid "Sign-up Date"
4082
  msgstr ""
4083
 
4084
- #: ../modules/user-listing/userlisting.php:253
4085
  msgid "More"
4086
  msgstr ""
4087
 
4088
- #: ../modules/user-listing/userlisting.php:338
4089
  msgid "You do not have permission to view this user list."
4090
  msgstr ""
4091
 
4092
- #: ../modules/user-listing/userlisting.php:351
4093
  msgid "You do not have the required user role to view this user list."
4094
  msgstr ""
4095
 
4096
- #: ../modules/user-listing/userlisting.php:364
4097
  msgid "User not found"
4098
  msgstr ""
4099
 
4100
- #: ../modules/user-listing/userlisting.php:442
4101
- msgid "None"
4102
- msgstr ""
4103
-
4104
- #: ../modules/user-listing/userlisting.php:614
4105
  msgid "First/Lastname"
4106
  msgstr ""
4107
 
4108
- #: ../modules/user-listing/userlisting.php:629
4109
- #: ../modules/user-listing/userlisting.php:1266
4110
  msgid "Display Name"
4111
  msgstr ""
4112
 
4113
- #: ../modules/user-listing/userlisting.php:641
4114
- #: ../modules/user-listing/userlisting.php:1272
4115
  msgid "Aim"
4116
  msgstr ""
4117
 
4118
- #: ../modules/user-listing/userlisting.php:644
4119
- #: ../modules/user-listing/userlisting.php:1273
4120
  msgid "Yim"
4121
  msgstr ""
4122
 
4123
- #: ../modules/user-listing/userlisting.php:647
4124
- #: ../modules/user-listing/userlisting.php:1274
4125
  msgid "Jabber"
4126
  msgstr ""
4127
 
4128
- #: ../modules/user-listing/userlisting.php:827
4129
  msgid "Click here to see more information about this user"
4130
  msgstr ""
4131
 
4132
- #: ../modules/user-listing/userlisting.php:827
4133
  msgid "More..."
4134
  msgstr ""
4135
 
4136
- #: ../modules/user-listing/userlisting.php:830
4137
  msgid "Click here to see more information about this user."
4138
  msgstr ""
4139
 
4140
- #: ../modules/user-listing/userlisting.php:922
4141
- #: ../modules/user-listing/userlisting.php:925
4142
  msgid "Click here to go back"
4143
  msgstr ""
4144
 
4145
- #: ../modules/user-listing/userlisting.php:922
4146
  msgid "Back"
4147
  msgstr ""
4148
 
4149
- #: ../modules/user-listing/userlisting.php:955
4150
  msgid "&laquo;&laquo; First"
4151
  msgstr ""
4152
 
4153
- #: ../modules/user-listing/userlisting.php:956
4154
  msgid "&laquo; Prev"
4155
  msgstr ""
4156
 
4157
- #: ../modules/user-listing/userlisting.php:957
4158
  msgid "Next &raquo; "
4159
  msgstr ""
4160
 
4161
- #: ../modules/user-listing/userlisting.php:958
4162
  msgid "Last &raquo;&raquo;"
4163
  msgstr ""
4164
 
4165
- #: ../modules/user-listing/userlisting.php:987
4166
  msgid "You don't have any pagination settings on this userlisting!"
4167
  msgstr ""
4168
 
4169
- #: ../modules/user-listing/userlisting.php:1028
4170
  msgid "Search"
4171
  msgstr ""
4172
 
4173
- #: ../modules/user-listing/userlisting.php:1029
4174
  msgid "Clear Results"
4175
  msgstr ""
4176
 
4177
- #: ../modules/user-listing/userlisting.php:1205
4178
- #: ../modules/user-listing/userlisting.php:1209
4179
  msgid "Extra shortcode parameters"
4180
  msgstr ""
4181
 
4182
- #: ../modules/user-listing/userlisting.php:1207
4183
  msgid "View all extra shortcode parameters"
4184
  msgstr ""
4185
 
4186
- #: ../modules/user-listing/userlisting.php:1212
4187
  msgid ""
4188
  "displays users having a certain meta-value within a certain (extra) meta-"
4189
  "field"
4190
  msgstr ""
4191
 
4192
- #: ../modules/user-listing/userlisting.php:1213
4193
  msgid "Example:"
4194
  msgstr ""
4195
 
4196
- #: ../modules/user-listing/userlisting.php:1215
4197
  msgid ""
4198
  "Remember though, that the field-value combination must exist in the database."
4199
  msgstr ""
4200
 
4201
- #: ../modules/user-listing/userlisting.php:1221
4202
  msgid "displays only the users that you specified the user_id for"
4203
  msgstr ""
4204
 
4205
- #: ../modules/user-listing/userlisting.php:1227
4206
  msgid "displays all users except the ones you specified the user_id for"
4207
  msgstr ""
4208
 
4209
- #: ../modules/user-listing/userlisting.php:1284
4210
  msgid "Random (very slow on large databases > 10K user)"
4211
  msgstr ""
4212
 
4213
- #: ../modules/user-listing/userlisting.php:1287
4214
  msgid "Ascending"
4215
  msgstr ""
4216
 
4217
- #: ../modules/user-listing/userlisting.php:1288
4218
  msgid "Descending"
4219
  msgstr ""
4220
 
4221
- #: ../modules/user-listing/userlisting.php:1297
4222
  msgid "Roles to Display"
4223
  msgstr ""
4224
 
4225
- #: ../modules/user-listing/userlisting.php:1297
4226
  msgid ""
4227
  "Restrict the userlisting to these selected roles only<br/>If not specified, "
4228
  "defaults to all existing roles"
4229
  msgstr ""
4230
 
4231
- #: ../modules/user-listing/userlisting.php:1298
4232
  msgid "Number of Users/Page"
4233
  msgstr ""
4234
 
4235
- #: ../modules/user-listing/userlisting.php:1298
4236
  msgid ""
4237
  "Set the number of users to be displayed on every paginated part of the all-"
4238
  "userlisting"
4239
  msgstr ""
4240
 
4241
- #: ../modules/user-listing/userlisting.php:1299
4242
  msgid "Default Sorting Criteria"
4243
  msgstr ""
4244
 
4245
- #: ../modules/user-listing/userlisting.php:1299
4246
  msgid ""
4247
  "Set the default sorting criteria<br/>This can temporarily be changed for "
4248
  "each new session"
4249
  msgstr ""
4250
 
4251
- #: ../modules/user-listing/userlisting.php:1300
4252
  msgid "Default Sorting Order"
4253
  msgstr ""
4254
 
4255
- #: ../modules/user-listing/userlisting.php:1300
4256
  msgid ""
4257
  "Set the default sorting order<br/>This can temporarily be changed for each "
4258
  "new session"
4259
  msgstr ""
4260
 
4261
- #: ../modules/user-listing/userlisting.php:1301
4262
  msgid "Avatar Size (All-userlisting)"
4263
  msgstr ""
4264
 
4265
- #: ../modules/user-listing/userlisting.php:1301
4266
  msgid "Set the avatar size on the all-userlisting only"
4267
  msgstr ""
4268
 
4269
- #: ../modules/user-listing/userlisting.php:1302
4270
  msgid "Avatar Size (Single-userlisting)"
4271
  msgstr ""
4272
 
4273
- #: ../modules/user-listing/userlisting.php:1302
4274
  msgid "Set the avatar size on the single-userlisting only"
4275
  msgstr ""
4276
 
4277
- #: ../modules/user-listing/userlisting.php:1303
4278
  msgid "Visible only to logged in users?"
4279
  msgstr ""
4280
 
4281
- #: ../modules/user-listing/userlisting.php:1303
4282
  msgid "The userlisting will only be visible only to the logged in users"
4283
  msgstr ""
4284
 
4285
- #: ../modules/user-listing/userlisting.php:1304
4286
  msgid "Visible to following Roles"
4287
  msgstr ""
4288
 
4289
- #: ../modules/user-listing/userlisting.php:1304
4290
  msgid "The userlisting will only be visible to the following roles"
4291
  msgstr ""
4292
 
4293
- #: ../modules/user-listing/userlisting.php:1310
4294
  msgid "Userlisting Settings"
4295
  msgstr ""
4296
 
4297
- #: ../modules/user-listing/userlisting.php:1331
4298
  msgid ""
4299
  "You need to activate the Userlisting feature from within the \"Modules\" tab!"
4300
  msgstr ""
4301
 
4302
- #: ../modules/user-listing/userlisting.php:1331
4303
  msgid "You can find it in the Profile Builder menu."
4304
  msgstr ""
4305
 
4306
- #: ../modules/user-listing/userlisting.php:1494
4307
  msgid "No results found!"
4308
  msgstr ""
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: profile-builder\n"
5
+ "POT-Creation-Date: 2016-01-11 17:16+0200\n"
6
  "PO-Revision-Date: 2015-04-30 10:26+0200\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Cozmoslabs\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Generator: Poedit 1.8.5\n"
14
+ "X-Poedit-Basepath: ../..\n"
15
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
16
  "X-Poedit-KeywordsList: __;_e;_x;_n\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-SearchPath-0: profile-builder-2.0\n"
19
+ "X-Poedit-SearchPath-1: pb-add-on-woocommerce\n"
20
 
21
+ #: pb-add-on-woocommerce/billing-fields.php:6
22
+ #: pb-add-on-woocommerce/shipping-fields.php:6
23
+ msgid "Country"
24
+ msgstr ""
25
+
26
+ #: pb-add-on-woocommerce/billing-fields.php:7
27
+ #: pb-add-on-woocommerce/shipping-fields.php:7
28
+ #: profile-builder-2.0/admin/manage-fields.php:160
29
+ msgid "First Name"
30
+ msgstr ""
31
+
32
+ #: pb-add-on-woocommerce/billing-fields.php:8
33
+ #: pb-add-on-woocommerce/shipping-fields.php:8
34
+ #: profile-builder-2.0/admin/manage-fields.php:161
35
+ msgid "Last Name"
36
+ msgstr ""
37
+
38
+ #: pb-add-on-woocommerce/billing-fields.php:9
39
+ #: pb-add-on-woocommerce/shipping-fields.php:9
40
+ msgid "Company Name"
41
+ msgstr ""
42
+
43
+ #: pb-add-on-woocommerce/billing-fields.php:10
44
+ #: pb-add-on-woocommerce/shipping-fields.php:10
45
+ msgid "Address"
46
+ msgstr ""
47
+
48
+ #: pb-add-on-woocommerce/billing-fields.php:12
49
+ #: pb-add-on-woocommerce/shipping-fields.php:12
50
+ msgid "Town / City"
51
+ msgstr ""
52
+
53
+ #: pb-add-on-woocommerce/billing-fields.php:13
54
+ #: pb-add-on-woocommerce/shipping-fields.php:13
55
+ msgid "State / County"
56
+ msgstr ""
57
+
58
+ #: pb-add-on-woocommerce/billing-fields.php:14
59
+ #: pb-add-on-woocommerce/shipping-fields.php:14
60
+ msgid "Postcode / Zip"
61
+ msgstr ""
62
+
63
+ #: pb-add-on-woocommerce/billing-fields.php:15
64
+ msgid "Email Address"
65
+ msgstr ""
66
+
67
+ #: pb-add-on-woocommerce/billing-fields.php:16
68
+ msgid "Phone"
69
+ msgstr ""
70
+
71
+ #: pb-add-on-woocommerce/billing-fields.php:126
72
+ msgid "Ship to a different address?"
73
+ msgstr ""
74
+
75
+ #: pb-add-on-woocommerce/index.php:134
76
+ msgid "Billing Address"
77
+ msgstr ""
78
+
79
+ #: pb-add-on-woocommerce/index.php:134
80
+ msgid "Displays customer billing fields in front-end. "
81
+ msgstr ""
82
+
83
+ #: pb-add-on-woocommerce/index.php:138
84
+ msgid "Shipping Address"
85
+ msgstr ""
86
+
87
+ #: pb-add-on-woocommerce/index.php:138
88
+ msgid "Displays customer shipping fields in front-end. "
89
+ msgstr ""
90
+
91
+ #: pb-add-on-woocommerce/index.php:152
92
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:44
93
+ msgid "The email you entered is not a valid email address."
94
+ msgstr ""
95
+
96
+ #: pb-add-on-woocommerce/index.php:296
97
+ msgid "Display on WooCommerce Checkout"
98
+ msgstr ""
99
+
100
+ #: pb-add-on-woocommerce/index.php:296
101
+ msgid ""
102
+ "Whether the field should be added to the WooCommerce checkout form or not"
103
+ msgstr ""
104
+
105
+ #: pb-add-on-woocommerce/index.php:347
106
+ msgid ""
107
+ "WooCommerce needs to be installed and activated for Profile Builder - "
108
+ "WooCommerce Sync Add-on to work!"
109
+ msgstr ""
110
+
111
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
112
+ #: profile-builder-2.0/admin/basic-info.php:36
113
+ #: profile-builder-2.0/features/login-widget/login-widget.php:59
114
+ msgid "Login"
115
+ msgstr ""
116
+
117
+ #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
118
+ #: profile-builder-2.0/front-end/class-formbuilder.php:348
119
+ #: profile-builder-2.0/front-end/login.php:205
120
+ msgid "Register"
121
+ msgstr ""
122
+
123
+ #: pb-add-on-woocommerce/woosync-page.php:23
124
+ #: pb-add-on-woocommerce/woosync-page.php:70
125
+ msgid "WooCommerce Sync"
126
+ msgstr ""
127
+
128
+ #: pb-add-on-woocommerce/woosync-page.php:76
129
+ msgid "Choose Register form to display on My Account page:"
130
+ msgstr ""
131
+
132
+ #: pb-add-on-woocommerce/woosync-page.php:80
133
+ #: pb-add-on-woocommerce/woosync-page.php:114
134
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:442
135
+ msgid "None"
136
+ msgstr ""
137
+
138
+ #: pb-add-on-woocommerce/woosync-page.php:81
139
+ msgid "Default Register"
140
+ msgstr ""
141
+
142
+ #: pb-add-on-woocommerce/woosync-page.php:103
143
+ msgid ""
144
+ "Select which Profile Builder Register form to display on My Account page "
145
+ "from WooCommerce. <br/> This will also add the Profile Builder Login form to "
146
+ "MyAccount page."
147
+ msgstr ""
148
+
149
+ #: pb-add-on-woocommerce/woosync-page.php:110
150
+ msgid "Choose Edit Profile form to display on My Account page:"
151
+ msgstr ""
152
+
153
+ #: pb-add-on-woocommerce/woosync-page.php:115
154
+ msgid "Default Edit Profile"
155
+ msgstr ""
156
+
157
+ #: pb-add-on-woocommerce/woosync-page.php:137
158
+ msgid ""
159
+ "Select which Profile Builder Edit-profile form to display on My Account page "
160
+ "from WooCommerce."
161
+ msgstr ""
162
+
163
+ #: pb-add-on-woocommerce/woosync-page.php:147
164
+ #: profile-builder-2.0/admin/admin-bar.php:86
165
+ #: profile-builder-2.0/admin/general-settings.php:208
166
+ #: profile-builder-2.0/admin/register-version.php:95
167
+ #: profile-builder-2.0/features/functions.php:633
168
+ #: profile-builder-2.0/modules/modules.php:117
169
+ msgid "Save Changes"
170
+ msgstr ""
171
+
172
+ #: profile-builder-2.0/admin/add-ons.php:10
173
+ #: profile-builder-2.0/admin/add-ons.php:32
174
  msgid "Add-Ons"
175
  msgstr ""
176
 
177
+ #: profile-builder-2.0/admin/add-ons.php:34
178
+ #: profile-builder-2.0/admin/add-ons.php:124
179
+ #: profile-builder-2.0/admin/add-ons.php:231
180
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:78
181
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:114
182
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:193
183
  msgid "Activate"
184
  msgstr ""
185
 
186
+ #: profile-builder-2.0/admin/add-ons.php:36
187
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:80
188
  msgid "Downloading and installing..."
189
  msgstr ""
190
 
191
+ #: profile-builder-2.0/admin/add-ons.php:37
192
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:81
193
  msgid "Installation complete"
194
  msgstr ""
195
 
196
+ #: profile-builder-2.0/admin/add-ons.php:39
197
  msgid "Add-On is Active"
198
  msgstr ""
199
 
200
+ #: profile-builder-2.0/admin/add-ons.php:40
201
  msgid "Add-On has been activated"
202
  msgstr ""
203
 
204
+ #: profile-builder-2.0/admin/add-ons.php:41
205
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:85
206
  msgid "Retry Install"
207
  msgstr ""
208
 
209
+ #: profile-builder-2.0/admin/add-ons.php:43
210
+ #: profile-builder-2.0/admin/add-ons.php:135
211
  msgid "Add-On is <strong>active</strong>"
212
  msgstr ""
213
 
214
+ #: profile-builder-2.0/admin/add-ons.php:44
215
+ #: profile-builder-2.0/admin/add-ons.php:133
216
  msgid "Add-On is <strong>inactive</strong>"
217
  msgstr ""
218
 
219
+ #: profile-builder-2.0/admin/add-ons.php:46
220
+ #: profile-builder-2.0/admin/add-ons.php:128
221
+ #: profile-builder-2.0/admin/add-ons.php:235
222
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:90
223
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:118
224
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:197
225
  msgid "Deactivate"
226
  msgstr ""
227
 
228
+ #: profile-builder-2.0/admin/add-ons.php:47
229
  msgid "Add-On has been deactivated."
230
  msgstr ""
231
 
232
+ #: profile-builder-2.0/admin/add-ons.php:59
233
  msgid ""
234
  "Something went wrong, we could not connect to the server. Please try again "
235
  "later."
236
  msgstr ""
237
 
238
+ #: profile-builder-2.0/admin/add-ons.php:144
239
+ #: profile-builder-2.0/admin/add-ons.php:147
240
  msgid "Buy Now"
241
  msgstr ""
242
 
243
+ #: profile-builder-2.0/admin/add-ons.php:144
244
+ #: profile-builder-2.0/admin/add-ons.php:251
245
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:134
246
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:213
247
  msgid "Download Now"
248
  msgstr ""
249
 
250
+ #: profile-builder-2.0/admin/add-ons.php:147
251
+ #: profile-builder-2.0/admin/add-ons.php:254
252
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:137
253
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:216
254
  msgid "Install Now"
255
  msgstr ""
256
 
257
+ #: profile-builder-2.0/admin/add-ons.php:153
258
+ #: profile-builder-2.0/admin/add-ons.php:258
259
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:141
260
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:220
261
  msgid "Compatible with your version of Profile Builder."
262
  msgstr ""
263
 
264
+ #: profile-builder-2.0/admin/add-ons.php:162
265
  msgid "Upgrade Profile Builder"
266
  msgstr ""
267
 
268
+ #: profile-builder-2.0/admin/add-ons.php:163
269
  msgid "Not compatible with Profile Builder"
270
  msgstr ""
271
 
272
+ #: profile-builder-2.0/admin/add-ons.php:170
273
+ #: profile-builder-2.0/front-end/class-formbuilder.php:351
274
  msgid "Update"
275
  msgstr ""
276
 
277
+ #: profile-builder-2.0/admin/add-ons.php:171
278
  msgid "Not compatible with your version of Profile Builder."
279
  msgstr ""
280
 
281
+ #: profile-builder-2.0/admin/add-ons.php:172
282
  msgid "Minimum required Profile Builder version:"
283
  msgstr ""
284
 
285
+ #: profile-builder-2.0/admin/add-ons.php:177
286
  #, php-format
287
  msgid ""
288
  "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
289
  "manually</a>."
290
  msgstr ""
291
 
292
+ #: profile-builder-2.0/admin/add-ons.php:190
293
  msgid "Recommended Plugins"
294
  msgstr ""
295
 
296
+ #: profile-builder-2.0/admin/add-ons.php:219
297
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:102
298
  msgid "Free"
299
  msgstr ""
300
 
301
+ #: profile-builder-2.0/admin/add-ons.php:221
302
  msgid ""
303
  "Accept user payments, create subscription plans and restrict content on your "
304
  "membership site."
305
  msgstr ""
306
 
307
+ #: profile-builder-2.0/admin/add-ons.php:222
308
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:105
309
  msgid "More Details"
310
  msgstr ""
311
 
312
+ #: profile-builder-2.0/admin/add-ons.php:240
313
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:88
314
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:123
315
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:202
316
  msgid "Plugin is <strong>inactive</strong>"
317
  msgstr ""
318
 
319
+ #: profile-builder-2.0/admin/add-ons.php:242
320
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:87
321
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:125
322
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:204
323
  msgid "Plugin is <strong>active</strong>"
324
  msgstr ""
325
 
326
+ #: profile-builder-2.0/admin/add-ons.php:263
327
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:146
328
  #, php-format
329
  msgid ""
330
  "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install "
331
  "manually</a>."
332
  msgstr ""
333
 
334
+ #: profile-builder-2.0/admin/admin-bar.php:10
335
  msgid "Show/Hide the Admin Bar on the Front-End"
336
  msgstr ""
337
 
338
+ #: profile-builder-2.0/admin/admin-bar.php:10
339
+ #: profile-builder-2.0/admin/admin-bar.php:47
340
  msgid "Admin Bar Settings"
341
  msgstr ""
342
 
343
+ #: profile-builder-2.0/admin/admin-bar.php:48
344
  msgid ""
345
  "Choose which user roles view the admin bar in the front-end of the website."
346
  msgstr ""
347
 
348
+ #: profile-builder-2.0/admin/admin-bar.php:57
349
  msgid "User-Role"
350
  msgstr ""
351
 
352
+ #: profile-builder-2.0/admin/admin-bar.php:58
353
  msgid "Visibility"
354
  msgstr ""
355
 
356
+ #: profile-builder-2.0/admin/admin-bar.php:73
357
  msgid "Default"
358
  msgstr ""
359
 
360
+ #: profile-builder-2.0/admin/admin-bar.php:74
361
  msgid "Show"
362
  msgstr ""
363
 
364
+ #: profile-builder-2.0/admin/admin-bar.php:75
365
  msgid "Hide"
366
  msgstr ""
367
 
368
+ #: profile-builder-2.0/admin/admin-functions.php:34
 
 
 
 
 
 
369
  #, php-format
370
  msgid ""
371
  "Login is set to be done using the E-mail. This field will NOT appear in the "
372
  "front-end! ( you can change these settings under the \"%s\" tab )"
373
  msgstr ""
374
 
375
+ #: profile-builder-2.0/admin/admin-functions.php:34
376
+ #: profile-builder-2.0/admin/general-settings.php:10
377
+ #: profile-builder-2.0/admin/general-settings.php:38
378
  msgid "General Settings"
379
  msgstr ""
380
 
381
+ #: profile-builder-2.0/admin/admin-functions.php:40
382
  msgid "Display name publicly as - only appears on the Edit Profile page!"
383
  msgstr ""
384
 
385
+ #: profile-builder-2.0/admin/admin-functions.php:128
386
  #, php-format
387
  msgid ""
388
  "<strong>ERROR</strong>: The password must have the minimum length of %s "
389
  "characters"
390
  msgstr ""
391
 
392
+ #: profile-builder-2.0/admin/admin-functions.php:134
393
+ #: profile-builder-2.0/admin/general-settings.php:194
394
  msgid "Very weak"
395
  msgstr ""
396
 
397
+ #: profile-builder-2.0/admin/admin-functions.php:134
398
+ #: profile-builder-2.0/admin/general-settings.php:195
399
+ #: profile-builder-2.0/features/functions.php:525
400
  msgid "Weak"
401
  msgstr ""
402
 
403
+ #: profile-builder-2.0/admin/admin-functions.php:134
404
+ #: profile-builder-2.0/admin/general-settings.php:196
405
+ #: profile-builder-2.0/features/functions.php:525
406
  msgid "Medium"
407
  msgstr ""
408
 
409
+ #: profile-builder-2.0/admin/admin-functions.php:134
410
+ #: profile-builder-2.0/admin/general-settings.php:197
411
+ #: profile-builder-2.0/features/functions.php:525
412
  msgid "Strong"
413
  msgstr ""
414
 
415
+ #: profile-builder-2.0/admin/admin-functions.php:145
416
  #, php-format
417
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
418
  msgstr ""
419
 
420
+ #: profile-builder-2.0/admin/admin-functions.php:184
421
  msgid "Add Field"
422
  msgstr ""
423
 
424
+ #: profile-builder-2.0/admin/admin-functions.php:186
425
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:374
426
  msgid "Save Settings"
427
  msgstr ""
428
 
429
+ #: profile-builder-2.0/admin/admin-functions.php:197
430
  #, php-format
431
  msgid ""
432
  "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target="
434
  "features, less bugs and better support for everyone. "
435
  msgstr ""
436
 
437
+ #: profile-builder-2.0/admin/basic-info.php:10
438
  msgid "Basic Information"
439
  msgstr ""
440
 
441
+ #: profile-builder-2.0/admin/basic-info.php:29
442
  #, php-format
443
  msgid "Version %s"
444
  msgstr ""
445
 
446
+ #: profile-builder-2.0/admin/basic-info.php:30
447
  msgid "<strong>Profile Builder </strong>"
448
  msgstr ""
449
 
450
+ #: profile-builder-2.0/admin/basic-info.php:31
451
  msgid ""
452
  "The best way to add front-end registration, edit profile and login forms."
453
  msgstr ""
454
 
455
+ #: profile-builder-2.0/admin/basic-info.php:33
456
  msgid "For Modern User Interaction"
457
  msgstr ""
458
 
459
+ #: profile-builder-2.0/admin/basic-info.php:37
 
 
 
 
460
  #, php-format
461
  msgid "Friction-less login using %s shortcode or a widget."
462
  msgstr ""
463
 
464
+ #: profile-builder-2.0/admin/basic-info.php:40
465
  msgid "Registration"
466
  msgstr ""
467
 
468
+ #: profile-builder-2.0/admin/basic-info.php:41
469
  #, php-format
470
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
471
  msgstr ""
472
 
473
+ #: profile-builder-2.0/admin/basic-info.php:44
474
  msgid "Edit Profile"
475
  msgstr ""
476
 
477
+ #: profile-builder-2.0/admin/basic-info.php:45
478
  #, php-format
479
  msgid "Straight forward edit profile forms using %s shortcode."
480
  msgstr ""
481
 
482
+ #: profile-builder-2.0/admin/basic-info.php:51
483
  msgid "Extra Features"
484
  msgstr ""
485
 
486
+ #: profile-builder-2.0/admin/basic-info.php:52
487
  msgid ""
488
  "Features that give you more control over your users, increased security and "
489
  "help you fight user registration spam."
490
  msgstr ""
491
 
492
+ #: profile-builder-2.0/admin/basic-info.php:53
493
  msgid "Enable extra features"
494
  msgstr ""
495
 
496
+ #: profile-builder-2.0/admin/basic-info.php:57
497
  msgid "Recover Password"
498
  msgstr ""
499
 
500
+ #: profile-builder-2.0/admin/basic-info.php:58
501
  #, php-format
502
  msgid "Allow users to recover their password in the front-end using the %s."
503
  msgstr ""
504
 
505
+ #: profile-builder-2.0/admin/basic-info.php:61
506
  msgid "Admin Approval (*)"
507
  msgstr ""
508
 
509
+ #: profile-builder-2.0/admin/basic-info.php:62
510
  msgid ""
511
  "You decide who is a user on your website. Get notified via email or approve "
512
  "multiple users at once from the WordPress UI."
513
  msgstr ""
514
 
515
+ #: profile-builder-2.0/admin/basic-info.php:65
516
  msgid "Email Confirmation"
517
  msgstr ""
518
 
519
+ #: profile-builder-2.0/admin/basic-info.php:66
520
  msgid ""
521
  "Make sure users sign up with genuine emails. On registration users will "
522
  "receive a notification to confirm their email address."
523
  msgstr ""
524
 
525
+ #: profile-builder-2.0/admin/basic-info.php:69
526
  msgid "Minimum Password Length and Strength Meter"
527
  msgstr ""
528
 
529
+ #: profile-builder-2.0/admin/basic-info.php:70
530
  msgid ""
531
  "Eliminate weak passwords altogether by setting a minimum password length and "
532
  "enforcing a certain password strength."
533
  msgstr ""
534
 
535
+ #: profile-builder-2.0/admin/basic-info.php:73
536
  msgid "Login with Email or Username"
537
  msgstr ""
538
 
539
+ #: profile-builder-2.0/admin/basic-info.php:74
540
  msgid ""
541
  "Allow users to log in with their email or username when accessing your site."
542
  msgstr ""
543
 
544
+ #: profile-builder-2.0/admin/basic-info.php:87
545
  msgid "Customize Your Forms The Way You Want (*)"
546
  msgstr ""
547
 
548
+ #: profile-builder-2.0/admin/basic-info.php:88
549
  msgid ""
550
  "With Extra Profile Fields you can create the exact registration form your "
551
  "project needs."
552
  msgstr ""
553
 
554
+ #: profile-builder-2.0/admin/basic-info.php:90
555
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
556
  msgstr ""
557
 
558
+ #: profile-builder-2.0/admin/basic-info.php:92
559
  msgid "Get started with extra fields"
560
  msgstr ""
561
 
562
+ #: profile-builder-2.0/admin/basic-info.php:95
563
  msgid "Avatar Upload"
564
  msgstr ""
565
 
566
+ #: profile-builder-2.0/admin/basic-info.php:96
567
  msgid "Generic Uploads"
568
  msgstr ""
569
 
570
+ #: profile-builder-2.0/admin/basic-info.php:97
571
  msgid "Agree To Terms Checkbox"
572
  msgstr ""
573
 
574
+ #: profile-builder-2.0/admin/basic-info.php:98
575
  msgid "Datepicker"
576
  msgstr ""
577
 
578
+ #: profile-builder-2.0/admin/basic-info.php:99
579
  msgid "reCAPTCHA"
580
  msgstr ""
581
 
582
+ #: profile-builder-2.0/admin/basic-info.php:100
583
  msgid "Country Select"
584
  msgstr ""
585
 
586
+ #: profile-builder-2.0/admin/basic-info.php:101
587
  msgid "Timezone Select"
588
  msgstr ""
589
 
590
+ #: profile-builder-2.0/admin/basic-info.php:102
591
  msgid "Input / Hidden Input"
592
  msgstr ""
593
 
594
+ #: profile-builder-2.0/admin/basic-info.php:103
595
  msgid "Checkbox"
596
  msgstr ""
597
 
598
+ #: profile-builder-2.0/admin/basic-info.php:104
599
  msgid "Select"
600
  msgstr ""
601
 
602
+ #: profile-builder-2.0/admin/basic-info.php:105
603
  msgid "Radio Buttons"
604
  msgstr ""
605
 
606
+ #: profile-builder-2.0/admin/basic-info.php:106
607
  msgid "Textarea"
608
  msgstr ""
609
 
610
+ #: profile-builder-2.0/admin/basic-info.php:115
611
  msgid "Powerful Modules (**)"
612
  msgstr ""
613
 
614
+ #: profile-builder-2.0/admin/basic-info.php:116
615
  msgid ""
616
  "Everything you will need to manage your users is probably already available "
617
  "using the Pro Modules."
618
  msgstr ""
619
 
620
+ #: profile-builder-2.0/admin/basic-info.php:118
621
  msgid "Enable your modules"
622
  msgstr ""
623
 
624
+ #: profile-builder-2.0/admin/basic-info.php:121
625
  msgid "Find out more about PRO Modules"
626
  msgstr ""
627
 
628
+ #: profile-builder-2.0/admin/basic-info.php:126
629
+ #: profile-builder-2.0/modules/modules.php:86
630
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:11
631
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:12
632
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:17
633
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:23
634
  msgid "User Listing"
635
  msgstr ""
636
 
637
+ #: profile-builder-2.0/admin/basic-info.php:128
638
  msgid ""
639
  "Easy to edit templates for listing your website users as well as creating "
640
  "single user pages. Shortcode based, offering many options to customize your "
641
  "listings."
642
  msgstr ""
643
 
644
+ #: profile-builder-2.0/admin/basic-info.php:130
645
  #, php-format
646
  msgid ""
647
  "To create a page containing the users registered to this current site/blog, "
648
  "insert the following shortcode in a page of your chosing: %s."
649
  msgstr ""
650
 
651
+ #: profile-builder-2.0/admin/basic-info.php:134
652
  msgid "Email Customizer"
653
  msgstr ""
654
 
655
+ #: profile-builder-2.0/admin/basic-info.php:135
656
  msgid ""
657
  "Personalize all emails sent to your users or admins. On registration, email "
658
  "confirmation, admin approval / un-approval."
659
  msgstr ""
660
 
661
+ #: profile-builder-2.0/admin/basic-info.php:138
662
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
663
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
664
+ #: profile-builder-2.0/modules/modules.php:107
665
  msgid "Custom Redirects"
666
  msgstr ""
667
 
668
+ #: profile-builder-2.0/admin/basic-info.php:139
669
  msgid ""
670
  "Keep your users out of the WordPress dashboard, redirect them to the front-"
671
  "page after login or registration, everything is just a few clicks away."
672
  msgstr ""
673
 
674
+ #: profile-builder-2.0/admin/basic-info.php:144
675
+ #: profile-builder-2.0/modules/modules.php:72
676
  msgid "Multiple Registration Forms"
677
  msgstr ""
678
 
679
+ #: profile-builder-2.0/admin/basic-info.php:145
680
  msgid ""
681
  "Set up multiple registration forms with different fields for certain user "
682
  "roles. Capture different information from different types of users."
683
  msgstr ""
684
 
685
+ #: profile-builder-2.0/admin/basic-info.php:148
686
+ #: profile-builder-2.0/modules/modules.php:79
687
  msgid "Multiple Edit-profile Forms"
688
  msgstr ""
689
 
690
+ #: profile-builder-2.0/admin/basic-info.php:149
691
  msgid ""
692
  "Allow different user roles to edit their specific information. Set up "
693
  "multiple edit-profile forms with different fields for certain user roles."
694
  msgstr ""
695
 
696
+ #: profile-builder-2.0/admin/basic-info.php:173
697
  #, php-format
698
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
699
  msgstr ""
700
 
701
+ #: profile-builder-2.0/admin/basic-info.php:174
702
  #, php-format
703
  msgid "** only available in the %1$sPro version%2$s."
704
  msgstr ""
705
 
706
+ #: profile-builder-2.0/admin/general-settings.php:42
707
  msgid "Load Profile Builder's own CSS file in the front-end:"
708
  msgstr ""
709
 
710
+ #: profile-builder-2.0/admin/general-settings.php:45
711
+ #: profile-builder-2.0/admin/general-settings.php:58
712
+ #: profile-builder-2.0/admin/general-settings.php:107
713
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:225
714
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:226
715
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1304
716
  msgid "Yes"
717
  msgstr ""
718
 
719
+ #: profile-builder-2.0/admin/general-settings.php:47
720
  #, php-format
721
  msgid "You can find the default file here: %1$s"
722
  msgstr ""
723
 
724
+ #: profile-builder-2.0/admin/general-settings.php:54
725
  msgid "\"Email Confirmation\" Activated:"
726
  msgstr ""
727
 
728
+ #: profile-builder-2.0/admin/general-settings.php:59
729
+ #: profile-builder-2.0/admin/general-settings.php:108
730
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:225
731
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:226
732
  msgid "No"
733
  msgstr ""
734
 
735
+ #: profile-builder-2.0/admin/general-settings.php:62
736
  msgid ""
737
  "This works with front-end forms only. Recommended to redirect WP default "
738
  "registration to a Profile Builder one using \"Custom Redirects\" addon."
739
  msgstr ""
740
 
741
+ #: profile-builder-2.0/admin/general-settings.php:64
742
  #, php-format
743
  msgid ""
744
  "You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
745
  "Email Confirmation%2$s."
746
  msgstr ""
747
 
748
+ #: profile-builder-2.0/admin/general-settings.php:72
749
  msgid "\"Email Confirmation\" Landing Page:"
750
  msgstr ""
751
 
752
+ #: profile-builder-2.0/admin/general-settings.php:77
753
  msgid "Existing Pages"
754
  msgstr ""
755
 
756
+ #: profile-builder-2.0/admin/general-settings.php:92
757
  msgid ""
758
  "Specify the page where the users will be directed when confirming the email "
759
  "account. This page can differ from the register page(s) and can be changed "
761
  "for the user."
762
  msgstr ""
763
 
764
+ #: profile-builder-2.0/admin/general-settings.php:103
765
  msgid "\"Admin Approval\" Activated:"
766
  msgstr ""
767
 
768
+ #: profile-builder-2.0/admin/general-settings.php:111
769
  #, php-format
770
  msgid ""
771
  "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
772
  msgstr ""
773
 
774
+ #: profile-builder-2.0/admin/general-settings.php:118
775
  msgid "\"Admin Approval\" on User Role:"
776
  msgstr ""
777
 
778
+ #: profile-builder-2.0/admin/general-settings.php:137
779
  msgid "Select on what user roles to activate Admin Approval."
780
  msgstr ""
781
 
782
+ #: profile-builder-2.0/admin/general-settings.php:149
783
  msgid "\"Admin Approval\" Feature:"
784
  msgstr ""
785
 
786
+ #: profile-builder-2.0/admin/general-settings.php:152
787
  #, php-format
788
  msgid ""
789
  "You decide who is a user on your website. Get notified via email or approve "
791
  "upgrading to %1$sHobbyist or PRO versions%2$s."
792
  msgstr ""
793
 
794
+ #: profile-builder-2.0/admin/general-settings.php:159
795
  msgid "Allow Users to Log in With:"
796
  msgstr ""
797
 
798
+ #: profile-builder-2.0/admin/general-settings.php:163
799
  msgid "Username and Email"
800
  msgstr ""
801
 
802
+ #: profile-builder-2.0/admin/general-settings.php:164
803
+ #: profile-builder-2.0/admin/manage-fields.php:159
804
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:177
805
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
806
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
807
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
808
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:92
809
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:248
810
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:611
811
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1259
812
  msgid "Username"
813
  msgstr ""
814
 
815
+ #: profile-builder-2.0/admin/general-settings.php:165
816
+ #: profile-builder-2.0/front-end/login.php:173
817
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
818
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:617
819
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1260
820
  msgid "Email"
821
  msgstr ""
822
 
823
+ #: profile-builder-2.0/admin/general-settings.php:168
824
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
825
  msgstr ""
826
 
827
+ #: profile-builder-2.0/admin/general-settings.php:169
828
  msgid "\"Username\" - users can Log In only with Username."
829
  msgstr ""
830
 
831
+ #: profile-builder-2.0/admin/general-settings.php:170
832
  msgid "\"Email\" - users can Log In only with Email."
833
  msgstr ""
834
 
835
+ #: profile-builder-2.0/admin/general-settings.php:177
836
  msgid "Minimum Password Length:"
837
  msgstr ""
838
 
839
+ #: profile-builder-2.0/admin/general-settings.php:182
840
  msgid ""
841
  "Enter the minimum characters the password should have. Leave empty for no "
842
  "minimum limit"
843
  msgstr ""
844
 
845
+ #: profile-builder-2.0/admin/general-settings.php:189
846
  msgid "Minimum Password Strength:"
847
  msgstr ""
848
 
849
+ #: profile-builder-2.0/admin/general-settings.php:193
850
  msgid "Disabled"
851
  msgstr ""
852
 
853
+ #: profile-builder-2.0/admin/manage-fields.php:12
854
  msgid "Manage Fields"
855
  msgstr ""
856
 
857
+ #: profile-builder-2.0/admin/manage-fields.php:13
858
  msgid "Manage Default and Extra Fields"
859
  msgstr ""
860
 
861
+ #: profile-builder-2.0/admin/manage-fields.php:68
862
  msgid "Choose one of the supported field types"
863
  msgstr ""
864
 
865
+ #: profile-builder-2.0/admin/manage-fields.php:70
866
  #, php-format
867
  msgid ""
868
  ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO "
869
  "versions</a>."
870
  msgstr ""
871
 
872
+ #: profile-builder-2.0/admin/manage-fields.php:94
873
  msgid "Field Title"
874
  msgstr ""
875
 
876
+ #: profile-builder-2.0/admin/manage-fields.php:94
877
  msgid "Title of the field"
878
  msgstr ""
879
 
880
+ #: profile-builder-2.0/admin/manage-fields.php:95
881
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
882
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
883
  msgid "Field"
884
  msgstr ""
885
 
886
+ #: profile-builder-2.0/admin/manage-fields.php:96
887
  msgid "Meta-name"
888
  msgstr ""
889
 
890
+ #: profile-builder-2.0/admin/manage-fields.php:96
891
  msgid ""
892
  "Use this in conjuction with WordPress functions to display the value in the "
893
  "page of your choosing<br/>Auto-completed but in some cases editable (in "
895
  "very big user-count"
896
  msgstr ""
897
 
898
+ #: profile-builder-2.0/admin/manage-fields.php:97
899
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
900
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
901
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
902
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
903
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:242
904
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:263
905
  msgid "ID"
906
  msgstr ""
907
 
908
+ #: profile-builder-2.0/admin/manage-fields.php:97
909
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:242
910
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:263
911
  msgid ""
912
  "A unique, auto-generated ID for this particular field<br/>You can use this "
913
  "in conjuction with filters to target this element if needed<br/>Can't be "
914
  "edited"
915
  msgstr ""
916
 
917
+ #: profile-builder-2.0/admin/manage-fields.php:98
918
  msgid "Description"
919
  msgstr ""
920
 
921
+ #: profile-builder-2.0/admin/manage-fields.php:98
922
  msgid ""
923
  "Enter a (detailed) description of the option for end users to read<br/"
924
  ">Optional"
925
  msgstr ""
926
 
927
+ #: profile-builder-2.0/admin/manage-fields.php:99
928
  msgid "Row Count"
929
  msgstr ""
930
 
931
+ #: profile-builder-2.0/admin/manage-fields.php:99
932
  msgid ""
933
  "Specify the number of rows for a 'Textarea' field<br/>If not specified, "
934
  "defaults to 5"
935
  msgstr ""
936
 
937
+ #: profile-builder-2.0/admin/manage-fields.php:100
938
  msgid "Allowed Image Extensions"
939
  msgstr ""
940
 
941
+ #: profile-builder-2.0/admin/manage-fields.php:100
942
  msgid ""
943
  "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
944
  "ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
945
  msgstr ""
946
 
947
+ #: profile-builder-2.0/admin/manage-fields.php:101
948
  msgid "Allowed Upload Extensions"
949
  msgstr ""
950
 
951
+ #: profile-builder-2.0/admin/manage-fields.php:101
952
  msgid ""
953
  "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
954
  "ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
955
  "extensions (.*)"
956
  msgstr ""
957
 
958
+ #: profile-builder-2.0/admin/manage-fields.php:102
959
  msgid "Avatar Size"
960
  msgstr ""
961
 
962
+ #: profile-builder-2.0/admin/manage-fields.php:102
963
  msgid ""
964
  "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
965
  "specified, defaults to 100"
966
  msgstr ""
967
 
968
+ #: profile-builder-2.0/admin/manage-fields.php:103
969
  msgid "Date-format"
970
  msgstr ""
971
 
972
+ #: profile-builder-2.0/admin/manage-fields.php:103
973
  msgid ""
974
  "Specify the format of the date when using Datepicker<br/>Valid options: mm/"
975
  "dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd<br/>If not "
976
  "specified, defaults to mm/dd/yy"
977
  msgstr ""
978
 
979
+ #: profile-builder-2.0/admin/manage-fields.php:104
980
  msgid "Terms of Agreement"
981
  msgstr ""
982
 
983
+ #: profile-builder-2.0/admin/manage-fields.php:104
984
  msgid ""
985
  "Enter a detailed description of the temrs of agreement for the user to read."
986
  "<br/>Links can be inserted by using standard HTML syntax: &lt;a href="
987
  "\"custom_url\"&gt;custom_text&lt;/a&gt;"
988
  msgstr ""
989
 
990
+ #: profile-builder-2.0/admin/manage-fields.php:105
991
  msgid "Options"
992
  msgstr ""
993
 
994
+ #: profile-builder-2.0/admin/manage-fields.php:105
995
  msgid ""
996
  "Enter a comma separated list of values<br/>This can be anything, as it is "
997
  "hidden from the user, but should not contain special characters or "
998
  "apostrophes"
999
  msgstr ""
1000
 
1001
+ #: profile-builder-2.0/admin/manage-fields.php:106
1002
  msgid "Labels"
1003
  msgstr ""
1004
 
1005
+ #: profile-builder-2.0/admin/manage-fields.php:106
1006
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
1007
  msgstr ""
1008
 
1009
+ #: profile-builder-2.0/admin/manage-fields.php:107
1010
  msgid "Site Key"
1011
  msgstr ""
1012
 
1013
+ #: profile-builder-2.0/admin/manage-fields.php:107
1014
  msgid ""
1015
  "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target="
1016
  "\"_blank\">www.google.com/recaptcha</a>"
1017
  msgstr ""
1018
 
1019
+ #: profile-builder-2.0/admin/manage-fields.php:108
1020
  msgid "Secret Key"
1021
  msgstr ""
1022
 
1023
+ #: profile-builder-2.0/admin/manage-fields.php:108
1024
  msgid ""
1025
  "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" "
1026
  "target=\"_blank\">www.google.com/recaptcha</a>"
1027
  msgstr ""
1028
 
1029
+ #: profile-builder-2.0/admin/manage-fields.php:109
1030
  msgid "Display on PB forms"
1031
  msgstr ""
1032
 
1033
+ #: profile-builder-2.0/admin/manage-fields.php:109
1034
  msgid "PB Login"
1035
  msgstr ""
1036
 
1037
+ #: profile-builder-2.0/admin/manage-fields.php:109
1038
  msgid "PB Register"
1039
  msgstr ""
1040
 
1041
+ #: profile-builder-2.0/admin/manage-fields.php:109
1042
  msgid "PB Recover Password"
1043
  msgstr ""
1044
 
1045
+ #: profile-builder-2.0/admin/manage-fields.php:109
1046
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1047
  msgstr ""
1048
 
1049
+ #: profile-builder-2.0/admin/manage-fields.php:110
1050
  msgid "Display on default WP forms"
1051
  msgstr ""
1052
 
1053
+ #: profile-builder-2.0/admin/manage-fields.php:110
1054
  msgid "Default WP Login"
1055
  msgstr ""
1056
 
1057
+ #: profile-builder-2.0/admin/manage-fields.php:110
1058
  msgid "Default WP Register"
1059
  msgstr ""
1060
 
1061
+ #: profile-builder-2.0/admin/manage-fields.php:110
1062
  msgid "Default WP Recover Password"
1063
  msgstr ""
1064
 
1065
+ #: profile-builder-2.0/admin/manage-fields.php:110
1066
  msgid "Select on which default WP forms to display reCAPTCHA"
1067
  msgstr ""
1068
 
1069
+ #: profile-builder-2.0/admin/manage-fields.php:111
1070
  msgid "User Roles"
1071
  msgstr ""
1072
 
1073
+ #: profile-builder-2.0/admin/manage-fields.php:111
1074
  msgid ""
1075
  "Select which user roles to show to the user ( drag and drop to re-order )"
1076
  msgstr ""
1077
 
1078
+ #: profile-builder-2.0/admin/manage-fields.php:112
1079
  msgid "User Roles Order"
1080
  msgstr ""
1081
 
1082
+ #: profile-builder-2.0/admin/manage-fields.php:112
1083
  msgid "Save the user role order from the user roles checkboxes"
1084
  msgstr ""
1085
 
1086
+ #: profile-builder-2.0/admin/manage-fields.php:113
1087
  msgid "Default Value"
1088
  msgstr ""
1089
 
1090
+ #: profile-builder-2.0/admin/manage-fields.php:113
1091
  msgid "Default value of the field"
1092
  msgstr ""
1093
 
1094
+ #: profile-builder-2.0/admin/manage-fields.php:114
1095
+ #: profile-builder-2.0/admin/manage-fields.php:116
1096
+ #: profile-builder-2.0/admin/manage-fields.php:117
1097
  msgid "Default Option"
1098
  msgstr ""
1099
 
1100
+ #: profile-builder-2.0/admin/manage-fields.php:114
1101
  msgid "Specify the option which should be selected by default"
1102
  msgstr ""
1103
 
1104
+ #: profile-builder-2.0/admin/manage-fields.php:115
1105
  msgid "Default Option(s)"
1106
  msgstr ""
1107
 
1108
+ #: profile-builder-2.0/admin/manage-fields.php:115
1109
  msgid ""
1110
  "Specify the option which should be checked by default<br/>If there are "
1111
  "multiple values, separate them with a ',' (comma)"
1112
  msgstr ""
1113
 
1114
+ #: profile-builder-2.0/admin/manage-fields.php:116
1115
+ #: profile-builder-2.0/admin/manage-fields.php:117
1116
  msgid "Default option of the field"
1117
  msgstr ""
1118
 
1119
+ #: profile-builder-2.0/admin/manage-fields.php:118
1120
  msgid "Default Content"
1121
  msgstr ""
1122
 
1123
+ #: profile-builder-2.0/admin/manage-fields.php:118
1124
  msgid "Default value of the textarea"
1125
  msgstr ""
1126
 
1127
+ #: profile-builder-2.0/admin/manage-fields.php:119
1128
  msgid "Required"
1129
  msgstr ""
1130
 
1131
+ #: profile-builder-2.0/admin/manage-fields.php:119
1132
  msgid "Whether the field is required or not"
1133
  msgstr ""
1134
 
1135
+ #: profile-builder-2.0/admin/manage-fields.php:120
1136
  msgid "Overwrite Existing"
1137
  msgstr ""
1138
 
1139
+ #: profile-builder-2.0/admin/manage-fields.php:120
1140
  msgid ""
1141
  "Selecting 'Yes' will add the field to the list, but will overwrite any other "
1142
  "field in the database that has the same meta-name<br/>Use this at your own "
1143
  "risk"
1144
  msgstr ""
1145
 
1146
+ #: profile-builder-2.0/admin/manage-fields.php:126
1147
  msgid "Field Properties"
1148
  msgstr ""
1149
 
1150
+ #: profile-builder-2.0/admin/manage-fields.php:139
1151
  msgid "Registration & Edit Profile"
1152
  msgstr ""
1153
 
1154
+ #: profile-builder-2.0/admin/manage-fields.php:158
1155
  msgid "Name"
1156
  msgstr ""
1157
 
1158
+ #: profile-builder-2.0/admin/manage-fields.php:159
1159
  msgid "Usernames cannot be changed."
1160
  msgstr ""
1161
 
1162
+ #: profile-builder-2.0/admin/manage-fields.php:162
1163
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:650
1164
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1267
 
 
 
 
 
 
1165
  msgid "Nickname"
1166
  msgstr ""
1167
 
1168
+ #: profile-builder-2.0/admin/manage-fields.php:163
1169
  msgid "Display name publicly as"
1170
  msgstr ""
1171
 
1172
+ #: profile-builder-2.0/admin/manage-fields.php:164
1173
  msgid "Contact Info"
1174
  msgstr ""
1175
 
1176
+ #: profile-builder-2.0/admin/manage-fields.php:165
1177
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:180
1178
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
1179
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:98
1180
  msgid "E-mail"
1181
  msgstr ""
1182
 
1183
+ #: profile-builder-2.0/admin/manage-fields.php:166
1184
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
1185
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:101
1186
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:632
1187
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1261
1188
  msgid "Website"
1189
  msgstr ""
1190
 
1191
+ #: profile-builder-2.0/admin/manage-fields.php:170
1192
  msgid "AIM"
1193
  msgstr ""
1194
 
1195
+ #: profile-builder-2.0/admin/manage-fields.php:171
1196
  msgid "Yahoo IM"
1197
  msgstr ""
1198
 
1199
+ #: profile-builder-2.0/admin/manage-fields.php:172
1200
  msgid "Jabber / Google Talk"
1201
  msgstr ""
1202
 
1203
+ #: profile-builder-2.0/admin/manage-fields.php:175
1204
  msgid "About Yourself"
1205
  msgstr ""
1206
 
1207
+ #: profile-builder-2.0/admin/manage-fields.php:176
1208
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:104
1209
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:635
1210
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1262
1211
  msgid "Biographical Info"
1212
  msgstr ""
1213
 
1214
+ #: profile-builder-2.0/admin/manage-fields.php:176
1215
  msgid ""
1216
  "Share a little biographical information to fill out your profile. This may "
1217
  "be shown publicly."
1218
  msgstr ""
1219
 
1220
+ #: profile-builder-2.0/admin/manage-fields.php:177
1221
+ #: profile-builder-2.0/front-end/recover.php:75
1222
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
1223
  msgid "Password"
1224
  msgstr ""
1225
 
1226
+ #: profile-builder-2.0/admin/manage-fields.php:177
1227
  msgid "Type your password."
1228
  msgstr ""
1229
 
1230
+ #: profile-builder-2.0/admin/manage-fields.php:178
1231
+ #: profile-builder-2.0/front-end/recover.php:80
1232
  msgid "Repeat Password"
1233
  msgstr ""
1234
 
1235
+ #: profile-builder-2.0/admin/manage-fields.php:178
1236
  msgid "Type your password again. "
1237
  msgstr ""
1238
 
1239
+ #: profile-builder-2.0/admin/manage-fields.php:237
1240
  msgid "Afghanistan"
1241
  msgstr ""
1242
 
1243
+ #: profile-builder-2.0/admin/manage-fields.php:238
1244
  msgid "Aland Islands"
1245
  msgstr ""
1246
 
1247
+ #: profile-builder-2.0/admin/manage-fields.php:239
1248
  msgid "Albania"
1249
  msgstr ""
1250
 
1251
+ #: profile-builder-2.0/admin/manage-fields.php:240
1252
  msgid "Algeria"
1253
  msgstr ""
1254
 
1255
+ #: profile-builder-2.0/admin/manage-fields.php:241
1256
  msgid "American Samoa"
1257
  msgstr ""
1258
 
1259
+ #: profile-builder-2.0/admin/manage-fields.php:242
1260
  msgid "Andorra"
1261
  msgstr ""
1262
 
1263
+ #: profile-builder-2.0/admin/manage-fields.php:243
1264
  msgid "Angola"
1265
  msgstr ""
1266
 
1267
+ #: profile-builder-2.0/admin/manage-fields.php:244
1268
  msgid "Anguilla"
1269
  msgstr ""
1270
 
1271
+ #: profile-builder-2.0/admin/manage-fields.php:245
1272
  msgid "Antarctica"
1273
  msgstr ""
1274
 
1275
+ #: profile-builder-2.0/admin/manage-fields.php:246
1276
  msgid "Antigua and Barbuda"
1277
  msgstr ""
1278
 
1279
+ #: profile-builder-2.0/admin/manage-fields.php:247
1280
  msgid "Argentina"
1281
  msgstr ""
1282
 
1283
+ #: profile-builder-2.0/admin/manage-fields.php:248
1284
  msgid "Armenia"
1285
  msgstr ""
1286
 
1287
+ #: profile-builder-2.0/admin/manage-fields.php:249
1288
  msgid "Aruba"
1289
  msgstr ""
1290
 
1291
+ #: profile-builder-2.0/admin/manage-fields.php:250
1292
  msgid "Australia"
1293
  msgstr ""
1294
 
1295
+ #: profile-builder-2.0/admin/manage-fields.php:251
1296
  msgid "Austria"
1297
  msgstr ""
1298
 
1299
+ #: profile-builder-2.0/admin/manage-fields.php:252
1300
  msgid "Azerbaijan"
1301
  msgstr ""
1302
 
1303
+ #: profile-builder-2.0/admin/manage-fields.php:253
1304
  msgid "Bahamas"
1305
  msgstr ""
1306
 
1307
+ #: profile-builder-2.0/admin/manage-fields.php:254
1308
  msgid "Bahrain"
1309
  msgstr ""
1310
 
1311
+ #: profile-builder-2.0/admin/manage-fields.php:255
1312
  msgid "Bangladesh"
1313
  msgstr ""
1314
 
1315
+ #: profile-builder-2.0/admin/manage-fields.php:256
1316
  msgid "Barbados"
1317
  msgstr ""
1318
 
1319
+ #: profile-builder-2.0/admin/manage-fields.php:257
1320
  msgid "Belarus"
1321
  msgstr ""
1322
 
1323
+ #: profile-builder-2.0/admin/manage-fields.php:258
1324
  msgid "Belgium"
1325
  msgstr ""
1326
 
1327
+ #: profile-builder-2.0/admin/manage-fields.php:259
1328
  msgid "Belize"
1329
  msgstr ""
1330
 
1331
+ #: profile-builder-2.0/admin/manage-fields.php:260
1332
  msgid "Benin"
1333
  msgstr ""
1334
 
1335
+ #: profile-builder-2.0/admin/manage-fields.php:261
1336
  msgid "Bermuda"
1337
  msgstr ""
1338
 
1339
+ #: profile-builder-2.0/admin/manage-fields.php:262
1340
  msgid "Bhutan"
1341
  msgstr ""
1342
 
1343
+ #: profile-builder-2.0/admin/manage-fields.php:263
1344
  msgid "Bolivia"
1345
  msgstr ""
1346
 
1347
+ #: profile-builder-2.0/admin/manage-fields.php:264
1348
  msgid "Bonaire, Saint Eustatius and Saba"
1349
  msgstr ""
1350
 
1351
+ #: profile-builder-2.0/admin/manage-fields.php:265
1352
  msgid "Bosnia and Herzegovina"
1353
  msgstr ""
1354
 
1355
+ #: profile-builder-2.0/admin/manage-fields.php:266
1356
  msgid "Botswana"
1357
  msgstr ""
1358
 
1359
+ #: profile-builder-2.0/admin/manage-fields.php:267
1360
  msgid "Bouvet Island"
1361
  msgstr ""
1362
 
1363
+ #: profile-builder-2.0/admin/manage-fields.php:268
1364
  msgid "Brazil"
1365
  msgstr ""
1366
 
1367
+ #: profile-builder-2.0/admin/manage-fields.php:269
1368
  msgid "British Indian Ocean Territory"
1369
  msgstr ""
1370
 
1371
+ #: profile-builder-2.0/admin/manage-fields.php:270
1372
  msgid "British Virgin Islands"
1373
  msgstr ""
1374
 
1375
+ #: profile-builder-2.0/admin/manage-fields.php:271
1376
  msgid "Brunei"
1377
  msgstr ""
1378
 
1379
+ #: profile-builder-2.0/admin/manage-fields.php:272
1380
  msgid "Bulgaria"
1381
  msgstr ""
1382
 
1383
+ #: profile-builder-2.0/admin/manage-fields.php:273
1384
  msgid "Burkina Faso"
1385
  msgstr ""
1386
 
1387
+ #: profile-builder-2.0/admin/manage-fields.php:274
1388
  msgid "Burundi"
1389
  msgstr ""
1390
 
1391
+ #: profile-builder-2.0/admin/manage-fields.php:275
1392
  msgid "Cambodia"
1393
  msgstr ""
1394
 
1395
+ #: profile-builder-2.0/admin/manage-fields.php:276
1396
  msgid "Cameroon"
1397
  msgstr ""
1398
 
1399
+ #: profile-builder-2.0/admin/manage-fields.php:277
1400
  msgid "Canada"
1401
  msgstr ""
1402
 
1403
+ #: profile-builder-2.0/admin/manage-fields.php:278
1404
  msgid "Cape Verde"
1405
  msgstr ""
1406
 
1407
+ #: profile-builder-2.0/admin/manage-fields.php:279
1408
  msgid "Cayman Islands"
1409
  msgstr ""
1410
 
1411
+ #: profile-builder-2.0/admin/manage-fields.php:280
1412
  msgid "Central African Republic"
1413
  msgstr ""
1414
 
1415
+ #: profile-builder-2.0/admin/manage-fields.php:281
1416
  msgid "Chad"
1417
  msgstr ""
1418
 
1419
+ #: profile-builder-2.0/admin/manage-fields.php:282
1420
  msgid "Chile"
1421
  msgstr ""
1422
 
1423
+ #: profile-builder-2.0/admin/manage-fields.php:283
1424
  msgid "China"
1425
  msgstr ""
1426
 
1427
+ #: profile-builder-2.0/admin/manage-fields.php:284
1428
  msgid "Christmas Island"
1429
  msgstr ""
1430
 
1431
+ #: profile-builder-2.0/admin/manage-fields.php:285
1432
  msgid "Cocos Islands"
1433
  msgstr ""
1434
 
1435
+ #: profile-builder-2.0/admin/manage-fields.php:286
1436
  msgid "Colombia"
1437
  msgstr ""
1438
 
1439
+ #: profile-builder-2.0/admin/manage-fields.php:287
1440
  msgid "Comoros"
1441
  msgstr ""
1442
 
1443
+ #: profile-builder-2.0/admin/manage-fields.php:288
1444
  msgid "Cook Islands"
1445
  msgstr ""
1446
 
1447
+ #: profile-builder-2.0/admin/manage-fields.php:289
1448
  msgid "Costa Rica"
1449
  msgstr ""
1450
 
1451
+ #: profile-builder-2.0/admin/manage-fields.php:290
1452
  msgid "Croatia"
1453
  msgstr ""
1454
 
1455
+ #: profile-builder-2.0/admin/manage-fields.php:291
1456
  msgid "Cuba"
1457
  msgstr ""
1458
 
1459
+ #: profile-builder-2.0/admin/manage-fields.php:292
1460
  msgid "Curacao"
1461
  msgstr ""
1462
 
1463
+ #: profile-builder-2.0/admin/manage-fields.php:293
1464
  msgid "Cyprus"
1465
  msgstr ""
1466
 
1467
+ #: profile-builder-2.0/admin/manage-fields.php:294
1468
  msgid "Czech Republic"
1469
  msgstr ""
1470
 
1471
+ #: profile-builder-2.0/admin/manage-fields.php:295
1472
  msgid "Democratic Republic of the Congo"
1473
  msgstr ""
1474
 
1475
+ #: profile-builder-2.0/admin/manage-fields.php:296
1476
  msgid "Denmark"
1477
  msgstr ""
1478
 
1479
+ #: profile-builder-2.0/admin/manage-fields.php:297
1480
  msgid "Djibouti"
1481
  msgstr ""
1482
 
1483
+ #: profile-builder-2.0/admin/manage-fields.php:298
1484
  msgid "Dominica"
1485
  msgstr ""
1486
 
1487
+ #: profile-builder-2.0/admin/manage-fields.php:299
1488
  msgid "Dominican Republic"
1489
  msgstr ""
1490
 
1491
+ #: profile-builder-2.0/admin/manage-fields.php:300
1492
  msgid "East Timor"
1493
  msgstr ""
1494
 
1495
+ #: profile-builder-2.0/admin/manage-fields.php:301
1496
  msgid "Ecuador"
1497
  msgstr ""
1498
 
1499
+ #: profile-builder-2.0/admin/manage-fields.php:302
1500
  msgid "Egypt"
1501
  msgstr ""
1502
 
1503
+ #: profile-builder-2.0/admin/manage-fields.php:303
1504
  msgid "El Salvador"
1505
  msgstr ""
1506
 
1507
+ #: profile-builder-2.0/admin/manage-fields.php:304
1508
  msgid "Equatorial Guinea"
1509
  msgstr ""
1510
 
1511
+ #: profile-builder-2.0/admin/manage-fields.php:305
1512
  msgid "Eritrea"
1513
  msgstr ""
1514
 
1515
+ #: profile-builder-2.0/admin/manage-fields.php:306
1516
  msgid "Estonia"
1517
  msgstr ""
1518
 
1519
+ #: profile-builder-2.0/admin/manage-fields.php:307
1520
  msgid "Ethiopia"
1521
  msgstr ""
1522
 
1523
+ #: profile-builder-2.0/admin/manage-fields.php:308
1524
  msgid "Falkland Islands"
1525
  msgstr ""
1526
 
1527
+ #: profile-builder-2.0/admin/manage-fields.php:309
1528
  msgid "Faroe Islands"
1529
  msgstr ""
1530
 
1531
+ #: profile-builder-2.0/admin/manage-fields.php:310
1532
  msgid "Fiji"
1533
  msgstr ""
1534
 
1535
+ #: profile-builder-2.0/admin/manage-fields.php:311
1536
  msgid "Finland"
1537
  msgstr ""
1538
 
1539
+ #: profile-builder-2.0/admin/manage-fields.php:312
1540
  msgid "France"
1541
  msgstr ""
1542
 
1543
+ #: profile-builder-2.0/admin/manage-fields.php:313
1544
  msgid "French Guiana"
1545
  msgstr ""
1546
 
1547
+ #: profile-builder-2.0/admin/manage-fields.php:314
1548
  msgid "French Polynesia"
1549
  msgstr ""
1550
 
1551
+ #: profile-builder-2.0/admin/manage-fields.php:315
1552
  msgid "French Southern Territories"
1553
  msgstr ""
1554
 
1555
+ #: profile-builder-2.0/admin/manage-fields.php:316
1556
  msgid "Gabon"
1557
  msgstr ""
1558
 
1559
+ #: profile-builder-2.0/admin/manage-fields.php:317
1560
  msgid "Gambia"
1561
  msgstr ""
1562
 
1563
+ #: profile-builder-2.0/admin/manage-fields.php:318
1564
  msgid "Georgia"
1565
  msgstr ""
1566
 
1567
+ #: profile-builder-2.0/admin/manage-fields.php:319
1568
  msgid "Germany"
1569
  msgstr ""
1570
 
1571
+ #: profile-builder-2.0/admin/manage-fields.php:320
1572
  msgid "Ghana"
1573
  msgstr ""
1574
 
1575
+ #: profile-builder-2.0/admin/manage-fields.php:321
1576
  msgid "Gibraltar"
1577
  msgstr ""
1578
 
1579
+ #: profile-builder-2.0/admin/manage-fields.php:322
1580
  msgid "Greece"
1581
  msgstr ""
1582
 
1583
+ #: profile-builder-2.0/admin/manage-fields.php:323
1584
  msgid "Greenland"
1585
  msgstr ""
1586
 
1587
+ #: profile-builder-2.0/admin/manage-fields.php:324
1588
  msgid "Grenada"
1589
  msgstr ""
1590
 
1591
+ #: profile-builder-2.0/admin/manage-fields.php:325
1592
  msgid "Guadeloupe"
1593
  msgstr ""
1594
 
1595
+ #: profile-builder-2.0/admin/manage-fields.php:326
1596
  msgid "Guam"
1597
  msgstr ""
1598
 
1599
+ #: profile-builder-2.0/admin/manage-fields.php:327
1600
  msgid "Guatemala"
1601
  msgstr ""
1602
 
1603
+ #: profile-builder-2.0/admin/manage-fields.php:328
1604
  msgid "Guernsey"
1605
  msgstr ""
1606
 
1607
+ #: profile-builder-2.0/admin/manage-fields.php:329
1608
  msgid "Guinea"
1609
  msgstr ""
1610
 
1611
+ #: profile-builder-2.0/admin/manage-fields.php:330
1612
  msgid "Guinea-Bissau"
1613
  msgstr ""
1614
 
1615
+ #: profile-builder-2.0/admin/manage-fields.php:331
1616
  msgid "Guyana"
1617
  msgstr ""
1618
 
1619
+ #: profile-builder-2.0/admin/manage-fields.php:332
1620
  msgid "Haiti"
1621
  msgstr ""
1622
 
1623
+ #: profile-builder-2.0/admin/manage-fields.php:333
1624
  msgid "Heard Island and McDonald Islands"
1625
  msgstr ""
1626
 
1627
+ #: profile-builder-2.0/admin/manage-fields.php:334
1628
  msgid "Honduras"
1629
  msgstr ""
1630
 
1631
+ #: profile-builder-2.0/admin/manage-fields.php:335
1632
  msgid "Hong Kong"
1633
  msgstr ""
1634
 
1635
+ #: profile-builder-2.0/admin/manage-fields.php:336
1636
  msgid "Hungary"
1637
  msgstr ""
1638
 
1639
+ #: profile-builder-2.0/admin/manage-fields.php:337
1640
  msgid "Iceland"
1641
  msgstr ""
1642
 
1643
+ #: profile-builder-2.0/admin/manage-fields.php:338
1644
  msgid "India"
1645
  msgstr ""
1646
 
1647
+ #: profile-builder-2.0/admin/manage-fields.php:339
1648
  msgid "Indonesia"
1649
  msgstr ""
1650
 
1651
+ #: profile-builder-2.0/admin/manage-fields.php:340
1652
  msgid "Iran"
1653
  msgstr ""
1654
 
1655
+ #: profile-builder-2.0/admin/manage-fields.php:341
1656
  msgid "Iraq"
1657
  msgstr ""
1658
 
1659
+ #: profile-builder-2.0/admin/manage-fields.php:342
1660
  msgid "Ireland"
1661
  msgstr ""
1662
 
1663
+ #: profile-builder-2.0/admin/manage-fields.php:343
1664
  msgid "Isle of Man"
1665
  msgstr ""
1666
 
1667
+ #: profile-builder-2.0/admin/manage-fields.php:344
1668
  msgid "Israel"
1669
  msgstr ""
1670
 
1671
+ #: profile-builder-2.0/admin/manage-fields.php:345
1672
  msgid "Italy"
1673
  msgstr ""
1674
 
1675
+ #: profile-builder-2.0/admin/manage-fields.php:346
1676
  msgid "Ivory Coast"
1677
  msgstr ""
1678
 
1679
+ #: profile-builder-2.0/admin/manage-fields.php:347
1680
  msgid "Jamaica"
1681
  msgstr ""
1682
 
1683
+ #: profile-builder-2.0/admin/manage-fields.php:348
1684
  msgid "Japan"
1685
  msgstr ""
1686
 
1687
+ #: profile-builder-2.0/admin/manage-fields.php:349
1688
  msgid "Jersey"
1689
  msgstr ""
1690
 
1691
+ #: profile-builder-2.0/admin/manage-fields.php:350
1692
  msgid "Jordan"
1693
  msgstr ""
1694
 
1695
+ #: profile-builder-2.0/admin/manage-fields.php:351
1696
  msgid "Kazakhstan"
1697
  msgstr ""
1698
 
1699
+ #: profile-builder-2.0/admin/manage-fields.php:352
1700
  msgid "Kenya"
1701
  msgstr ""
1702
 
1703
+ #: profile-builder-2.0/admin/manage-fields.php:353
1704
  msgid "Kiribati"
1705
  msgstr ""
1706
 
1707
+ #: profile-builder-2.0/admin/manage-fields.php:354
1708
  msgid "Kosovo"
1709
  msgstr ""
1710
 
1711
+ #: profile-builder-2.0/admin/manage-fields.php:355
1712
  msgid "Kuwait"
1713
  msgstr ""
1714
 
1715
+ #: profile-builder-2.0/admin/manage-fields.php:356
1716
  msgid "Kyrgyzstan"
1717
  msgstr ""
1718
 
1719
+ #: profile-builder-2.0/admin/manage-fields.php:357
1720
  msgid "Laos"
1721
  msgstr ""
1722
 
1723
+ #: profile-builder-2.0/admin/manage-fields.php:358
1724
  msgid "Latvia"
1725
  msgstr ""
1726
 
1727
+ #: profile-builder-2.0/admin/manage-fields.php:359
1728
  msgid "Lebanon"
1729
  msgstr ""
1730
 
1731
+ #: profile-builder-2.0/admin/manage-fields.php:360
1732
  msgid "Lesotho"
1733
  msgstr ""
1734
 
1735
+ #: profile-builder-2.0/admin/manage-fields.php:361
1736
  msgid "Liberia"
1737
  msgstr ""
1738
 
1739
+ #: profile-builder-2.0/admin/manage-fields.php:362
1740
  msgid "Libya"
1741
  msgstr ""
1742
 
1743
+ #: profile-builder-2.0/admin/manage-fields.php:363
1744
  msgid "Liechtenstein"
1745
  msgstr ""
1746
 
1747
+ #: profile-builder-2.0/admin/manage-fields.php:364
1748
  msgid "Lithuania"
1749
  msgstr ""
1750
 
1751
+ #: profile-builder-2.0/admin/manage-fields.php:365
1752
  msgid "Luxembourg"
1753
  msgstr ""
1754
 
1755
+ #: profile-builder-2.0/admin/manage-fields.php:366
1756
  msgid "Macao"
1757
  msgstr ""
1758
 
1759
+ #: profile-builder-2.0/admin/manage-fields.php:367
1760
  msgid "Macedonia"
1761
  msgstr ""
1762
 
1763
+ #: profile-builder-2.0/admin/manage-fields.php:368
1764
  msgid "Madagascar"
1765
  msgstr ""
1766
 
1767
+ #: profile-builder-2.0/admin/manage-fields.php:369
1768
  msgid "Malawi"
1769
  msgstr ""
1770
 
1771
+ #: profile-builder-2.0/admin/manage-fields.php:370
1772
  msgid "Malaysia"
1773
  msgstr ""
1774
 
1775
+ #: profile-builder-2.0/admin/manage-fields.php:371
1776
  msgid "Maldives"
1777
  msgstr ""
1778
 
1779
+ #: profile-builder-2.0/admin/manage-fields.php:372
1780
  msgid "Mali"
1781
  msgstr ""
1782
 
1783
+ #: profile-builder-2.0/admin/manage-fields.php:373
1784
  msgid "Malta"
1785
  msgstr ""
1786
 
1787
+ #: profile-builder-2.0/admin/manage-fields.php:374
1788
  msgid "Marshall Islands"
1789
  msgstr ""
1790
 
1791
+ #: profile-builder-2.0/admin/manage-fields.php:375
1792
  msgid "Martinique"
1793
  msgstr ""
1794
 
1795
+ #: profile-builder-2.0/admin/manage-fields.php:376
1796
  msgid "Mauritania"
1797
  msgstr ""
1798
 
1799
+ #: profile-builder-2.0/admin/manage-fields.php:377
1800
  msgid "Mauritius"
1801
  msgstr ""
1802
 
1803
+ #: profile-builder-2.0/admin/manage-fields.php:378
1804
  msgid "Mayotte"
1805
  msgstr ""
1806
 
1807
+ #: profile-builder-2.0/admin/manage-fields.php:379
1808
  msgid "Mexico"
1809
  msgstr ""
1810
 
1811
+ #: profile-builder-2.0/admin/manage-fields.php:380
1812
  msgid "Micronesia"
1813
  msgstr ""
1814
 
1815
+ #: profile-builder-2.0/admin/manage-fields.php:381
1816
  msgid "Moldova"
1817
  msgstr ""
1818
 
1819
+ #: profile-builder-2.0/admin/manage-fields.php:382
1820
  msgid "Monaco"
1821
  msgstr ""
1822
 
1823
+ #: profile-builder-2.0/admin/manage-fields.php:383
1824
  msgid "Mongolia"
1825
  msgstr ""
1826
 
1827
+ #: profile-builder-2.0/admin/manage-fields.php:384
1828
  msgid "Montenegro"
1829
  msgstr ""
1830
 
1831
+ #: profile-builder-2.0/admin/manage-fields.php:385
1832
  msgid "Montserrat"
1833
  msgstr ""
1834
 
1835
+ #: profile-builder-2.0/admin/manage-fields.php:386
1836
  msgid "Morocco"
1837
  msgstr ""
1838
 
1839
+ #: profile-builder-2.0/admin/manage-fields.php:387
1840
  msgid "Mozambique"
1841
  msgstr ""
1842
 
1843
+ #: profile-builder-2.0/admin/manage-fields.php:388
1844
  msgid "Myanmar"
1845
  msgstr ""
1846
 
1847
+ #: profile-builder-2.0/admin/manage-fields.php:389
1848
  msgid "Namibia"
1849
  msgstr ""
1850
 
1851
+ #: profile-builder-2.0/admin/manage-fields.php:390
1852
  msgid "Nauru"
1853
  msgstr ""
1854
 
1855
+ #: profile-builder-2.0/admin/manage-fields.php:391
1856
  msgid "Nepal"
1857
  msgstr ""
1858
 
1859
+ #: profile-builder-2.0/admin/manage-fields.php:392
1860
  msgid "Netherlands"
1861
  msgstr ""
1862
 
1863
+ #: profile-builder-2.0/admin/manage-fields.php:393
1864
  msgid "New Caledonia"
1865
  msgstr ""
1866
 
1867
+ #: profile-builder-2.0/admin/manage-fields.php:394
1868
  msgid "New Zealand"
1869
  msgstr ""
1870
 
1871
+ #: profile-builder-2.0/admin/manage-fields.php:395
1872
  msgid "Nicaragua"
1873
  msgstr ""
1874
 
1875
+ #: profile-builder-2.0/admin/manage-fields.php:396
1876
  msgid "Niger"
1877
  msgstr ""
1878
 
1879
+ #: profile-builder-2.0/admin/manage-fields.php:397
1880
  msgid "Nigeria"
1881
  msgstr ""
1882
 
1883
+ #: profile-builder-2.0/admin/manage-fields.php:398
1884
  msgid "Niue"
1885
  msgstr ""
1886
 
1887
+ #: profile-builder-2.0/admin/manage-fields.php:399
1888
  msgid "Norfolk Island"
1889
  msgstr ""
1890
 
1891
+ #: profile-builder-2.0/admin/manage-fields.php:400
1892
  msgid "North Korea"
1893
  msgstr ""
1894
 
1895
+ #: profile-builder-2.0/admin/manage-fields.php:401
1896
  msgid "Northern Mariana Islands"
1897
  msgstr ""
1898
 
1899
+ #: profile-builder-2.0/admin/manage-fields.php:402
1900
  msgid "Norway"
1901
  msgstr ""
1902
 
1903
+ #: profile-builder-2.0/admin/manage-fields.php:403
1904
  msgid "Oman"
1905
  msgstr ""
1906
 
1907
+ #: profile-builder-2.0/admin/manage-fields.php:404
1908
  msgid "Pakistan"
1909
  msgstr ""
1910
 
1911
+ #: profile-builder-2.0/admin/manage-fields.php:405
1912
  msgid "Palau"
1913
  msgstr ""
1914
 
1915
+ #: profile-builder-2.0/admin/manage-fields.php:406
1916
  msgid "Palestinian Territory"
1917
  msgstr ""
1918
 
1919
+ #: profile-builder-2.0/admin/manage-fields.php:407
1920
  msgid "Panama"
1921
  msgstr ""
1922
 
1923
+ #: profile-builder-2.0/admin/manage-fields.php:408
1924
  msgid "Papua New Guinea"
1925
  msgstr ""
1926
 
1927
+ #: profile-builder-2.0/admin/manage-fields.php:409
1928
  msgid "Paraguay"
1929
  msgstr ""
1930
 
1931
+ #: profile-builder-2.0/admin/manage-fields.php:410
1932
  msgid "Peru"
1933
  msgstr ""
1934
 
1935
+ #: profile-builder-2.0/admin/manage-fields.php:411
1936
  msgid "Philippines"
1937
  msgstr ""
1938
 
1939
+ #: profile-builder-2.0/admin/manage-fields.php:412
1940
  msgid "Pitcairn"
1941
  msgstr ""
1942
 
1943
+ #: profile-builder-2.0/admin/manage-fields.php:413
1944
  msgid "Poland"
1945
  msgstr ""
1946
 
1947
+ #: profile-builder-2.0/admin/manage-fields.php:414
1948
  msgid "Portugal"
1949
  msgstr ""
1950
 
1951
+ #: profile-builder-2.0/admin/manage-fields.php:415
1952
  msgid "Puerto Rico"
1953
  msgstr ""
1954
 
1955
+ #: profile-builder-2.0/admin/manage-fields.php:416
1956
  msgid "Qatar"
1957
  msgstr ""
1958
 
1959
+ #: profile-builder-2.0/admin/manage-fields.php:417
1960
  msgid "Republic of the Congo"
1961
  msgstr ""
1962
 
1963
+ #: profile-builder-2.0/admin/manage-fields.php:418
1964
  msgid "Reunion"
1965
  msgstr ""
1966
 
1967
+ #: profile-builder-2.0/admin/manage-fields.php:419
1968
  msgid "Romania"
1969
  msgstr ""
1970
 
1971
+ #: profile-builder-2.0/admin/manage-fields.php:420
1972
  msgid "Russia"
1973
  msgstr ""
1974
 
1975
+ #: profile-builder-2.0/admin/manage-fields.php:421
1976
  msgid "Rwanda"
1977
  msgstr ""
1978
 
1979
+ #: profile-builder-2.0/admin/manage-fields.php:422
1980
  msgid "Saint Barthelemy"
1981
  msgstr ""
1982
 
1983
+ #: profile-builder-2.0/admin/manage-fields.php:423
1984
  msgid "Saint Helena"
1985
  msgstr ""
1986
 
1987
+ #: profile-builder-2.0/admin/manage-fields.php:424
1988
  msgid "Saint Kitts and Nevis"
1989
  msgstr ""
1990
 
1991
+ #: profile-builder-2.0/admin/manage-fields.php:425
1992
  msgid "Saint Lucia"
1993
  msgstr ""
1994
 
1995
+ #: profile-builder-2.0/admin/manage-fields.php:426
1996
  msgid "Saint Martin"
1997
  msgstr ""
1998
 
1999
+ #: profile-builder-2.0/admin/manage-fields.php:427
2000
  msgid "Saint Pierre and Miquelon"
2001
  msgstr ""
2002
 
2003
+ #: profile-builder-2.0/admin/manage-fields.php:428
2004
  msgid "Saint Vincent and the Grenadines"
2005
  msgstr ""
2006
 
2007
+ #: profile-builder-2.0/admin/manage-fields.php:429
2008
  msgid "Samoa"
2009
  msgstr ""
2010
 
2011
+ #: profile-builder-2.0/admin/manage-fields.php:430
2012
  msgid "San Marino"
2013
  msgstr ""
2014
 
2015
+ #: profile-builder-2.0/admin/manage-fields.php:431
2016
  msgid "Sao Tome and Principe"
2017
  msgstr ""
2018
 
2019
+ #: profile-builder-2.0/admin/manage-fields.php:432
2020
  msgid "Saudi Arabia"
2021
  msgstr ""
2022
 
2023
+ #: profile-builder-2.0/admin/manage-fields.php:433
2024
  msgid "Senegal"
2025
  msgstr ""
2026
 
2027
+ #: profile-builder-2.0/admin/manage-fields.php:434
2028
  msgid "Serbia"
2029
  msgstr ""
2030
 
2031
+ #: profile-builder-2.0/admin/manage-fields.php:435
2032
  msgid "Seychelles"
2033
  msgstr ""
2034
 
2035
+ #: profile-builder-2.0/admin/manage-fields.php:436
2036
  msgid "Sierra Leone"
2037
  msgstr ""
2038
 
2039
+ #: profile-builder-2.0/admin/manage-fields.php:437
2040
  msgid "Singapore"
2041
  msgstr ""
2042
 
2043
+ #: profile-builder-2.0/admin/manage-fields.php:438
2044
  msgid "Sint Maarten"
2045
  msgstr ""
2046
 
2047
+ #: profile-builder-2.0/admin/manage-fields.php:439
2048
  msgid "Slovakia"
2049
  msgstr ""
2050
 
2051
+ #: profile-builder-2.0/admin/manage-fields.php:440
2052
  msgid "Slovenia"
2053
  msgstr ""
2054
 
2055
+ #: profile-builder-2.0/admin/manage-fields.php:441
2056
  msgid "Solomon Islands"
2057
  msgstr ""
2058
 
2059
+ #: profile-builder-2.0/admin/manage-fields.php:442
2060
  msgid "Somalia"
2061
  msgstr ""
2062
 
2063
+ #: profile-builder-2.0/admin/manage-fields.php:443
2064
  msgid "South Africa"
2065
  msgstr ""
2066
 
2067
+ #: profile-builder-2.0/admin/manage-fields.php:444
2068
  msgid "South Georgia and the South Sandwich Islands"
2069
  msgstr ""
2070
 
2071
+ #: profile-builder-2.0/admin/manage-fields.php:445
2072
  msgid "South Korea"
2073
  msgstr ""
2074
 
2075
+ #: profile-builder-2.0/admin/manage-fields.php:446
2076
  msgid "South Sudan"
2077
  msgstr ""
2078
 
2079
+ #: profile-builder-2.0/admin/manage-fields.php:447
2080
  msgid "Spain"
2081
  msgstr ""
2082
 
2083
+ #: profile-builder-2.0/admin/manage-fields.php:448
2084
  msgid "Sri Lanka"
2085
  msgstr ""
2086
 
2087
+ #: profile-builder-2.0/admin/manage-fields.php:449
2088
  msgid "Sudan"
2089
  msgstr ""
2090
 
2091
+ #: profile-builder-2.0/admin/manage-fields.php:450
2092
  msgid "Suriname"
2093
  msgstr ""
2094
 
2095
+ #: profile-builder-2.0/admin/manage-fields.php:451
2096
  msgid "Svalbard and Jan Mayen"
2097
  msgstr ""
2098
 
2099
+ #: profile-builder-2.0/admin/manage-fields.php:452
2100
  msgid "Swaziland"
2101
  msgstr ""
2102
 
2103
+ #: profile-builder-2.0/admin/manage-fields.php:453
2104
  msgid "Sweden"
2105
  msgstr ""
2106
 
2107
+ #: profile-builder-2.0/admin/manage-fields.php:454
2108
  msgid "Switzerland"
2109
  msgstr ""
2110
 
2111
+ #: profile-builder-2.0/admin/manage-fields.php:455
2112
  msgid "Syria"
2113
  msgstr ""
2114
 
2115
+ #: profile-builder-2.0/admin/manage-fields.php:456
2116
  msgid "Taiwan"
2117
  msgstr ""
2118
 
2119
+ #: profile-builder-2.0/admin/manage-fields.php:457
2120
  msgid "Tajikistan"
2121
  msgstr ""
2122
 
2123
+ #: profile-builder-2.0/admin/manage-fields.php:458
2124
  msgid "Tanzania"
2125
  msgstr ""
2126
 
2127
+ #: profile-builder-2.0/admin/manage-fields.php:459
2128
  msgid "Thailand"
2129
  msgstr ""
2130
 
2131
+ #: profile-builder-2.0/admin/manage-fields.php:460
2132
  msgid "Togo"
2133
  msgstr ""
2134
 
2135
+ #: profile-builder-2.0/admin/manage-fields.php:461
2136
  msgid "Tokelau"
2137
  msgstr ""
2138
 
2139
+ #: profile-builder-2.0/admin/manage-fields.php:462
2140
  msgid "Tonga"
2141
  msgstr ""
2142
 
2143
+ #: profile-builder-2.0/admin/manage-fields.php:463
2144
  msgid "Trinidad and Tobago"
2145
  msgstr ""
2146
 
2147
+ #: profile-builder-2.0/admin/manage-fields.php:464
2148
  msgid "Tunisia"
2149
  msgstr ""
2150
 
2151
+ #: profile-builder-2.0/admin/manage-fields.php:465
2152
  msgid "Turkey"
2153
  msgstr ""
2154
 
2155
+ #: profile-builder-2.0/admin/manage-fields.php:466
2156
  msgid "Turkmenistan"
2157
  msgstr ""
2158
 
2159
+ #: profile-builder-2.0/admin/manage-fields.php:467
2160
  msgid "Turks and Caicos Islands"
2161
  msgstr ""
2162
 
2163
+ #: profile-builder-2.0/admin/manage-fields.php:468
2164
  msgid "Tuvalu"
2165
  msgstr ""
2166
 
2167
+ #: profile-builder-2.0/admin/manage-fields.php:469
2168
  msgid "U.S. Virgin Islands"
2169
  msgstr ""
2170
 
2171
+ #: profile-builder-2.0/admin/manage-fields.php:470
2172
  msgid "Uganda"
2173
  msgstr ""
2174
 
2175
+ #: profile-builder-2.0/admin/manage-fields.php:471
2176
  msgid "Ukraine"
2177
  msgstr ""
2178
 
2179
+ #: profile-builder-2.0/admin/manage-fields.php:472
2180
  msgid "United Arab Emirates"
2181
  msgstr ""
2182
 
2183
+ #: profile-builder-2.0/admin/manage-fields.php:473
2184
  msgid "United Kingdom"
2185
  msgstr ""
2186
 
2187
+ #: profile-builder-2.0/admin/manage-fields.php:474
2188
  msgid "United States"
2189
  msgstr ""
2190
 
2191
+ #: profile-builder-2.0/admin/manage-fields.php:475
2192
  msgid "United States Minor Outlying Islands"
2193
  msgstr ""
2194
 
2195
+ #: profile-builder-2.0/admin/manage-fields.php:476
2196
  msgid "Uruguay"
2197
  msgstr ""
2198
 
2199
+ #: profile-builder-2.0/admin/manage-fields.php:477
2200
  msgid "Uzbekistan"
2201
  msgstr ""
2202
 
2203
+ #: profile-builder-2.0/admin/manage-fields.php:478
2204
  msgid "Vanuatu"
2205
  msgstr ""
2206
 
2207
+ #: profile-builder-2.0/admin/manage-fields.php:479
2208
  msgid "Vatican"
2209
  msgstr ""
2210
 
2211
+ #: profile-builder-2.0/admin/manage-fields.php:480
2212
  msgid "Venezuela"
2213
  msgstr ""
2214
 
2215
+ #: profile-builder-2.0/admin/manage-fields.php:481
2216
  msgid "Vietnam"
2217
  msgstr ""
2218
 
2219
+ #: profile-builder-2.0/admin/manage-fields.php:482
2220
  msgid "Wallis and Futuna"
2221
  msgstr ""
2222
 
2223
+ #: profile-builder-2.0/admin/manage-fields.php:483
2224
  msgid "Western Sahara"
2225
  msgstr ""
2226
 
2227
+ #: profile-builder-2.0/admin/manage-fields.php:484
2228
  msgid "Yemen"
2229
  msgstr ""
2230
 
2231
+ #: profile-builder-2.0/admin/manage-fields.php:485
2232
  msgid "Zambia"
2233
  msgstr ""
2234
 
2235
+ #: profile-builder-2.0/admin/manage-fields.php:486
2236
  msgid "Zimbabwe"
2237
  msgstr ""
2238
 
2239
+ #: profile-builder-2.0/admin/manage-fields.php:617
2240
+ #: profile-builder-2.0/admin/manage-fields.php:761
2241
  msgid "You must select a field\n"
2242
  msgstr ""
2243
 
2244
+ #: profile-builder-2.0/admin/manage-fields.php:627
2245
  msgid ""
2246
  "Please choose a different field type as this one already exists in your form "
2247
  "(must be unique)\n"
2248
  msgstr ""
2249
 
2250
+ #: profile-builder-2.0/admin/manage-fields.php:638
2251
  msgid "The entered avatar size is not between 20 and 200\n"
2252
  msgstr ""
2253
 
2254
+ #: profile-builder-2.0/admin/manage-fields.php:641
2255
  msgid "The entered avatar size is not numerical\n"
2256
  msgstr ""
2257
 
2258
+ #: profile-builder-2.0/admin/manage-fields.php:649
2259
  msgid "The entered row number is not numerical\n"
2260
  msgstr ""
2261
 
2262
+ #: profile-builder-2.0/admin/manage-fields.php:652
2263
  msgid "You must enter a value for the row number\n"
2264
  msgstr ""
2265
 
2266
+ #: profile-builder-2.0/admin/manage-fields.php:660
2267
  msgid "You must enter the site key\n"
2268
  msgstr ""
2269
 
2270
+ #: profile-builder-2.0/admin/manage-fields.php:662
2271
  msgid "You must enter the secret key\n"
2272
  msgstr ""
2273
 
2274
+ #: profile-builder-2.0/admin/manage-fields.php:670
2275
  msgid "The entered value for the Datepicker is not a valid date-format\n"
2276
  msgstr ""
2277
 
2278
+ #: profile-builder-2.0/admin/manage-fields.php:673
2279
  msgid "You must enter a value for the date-format\n"
2280
  msgstr ""
2281
 
2282
+ #: profile-builder-2.0/admin/manage-fields.php:689
2283
  msgid "The meta-name cannot be empty\n"
2284
  msgstr ""
2285
 
2286
+ #: profile-builder-2.0/admin/manage-fields.php:701
2287
+ #: profile-builder-2.0/admin/manage-fields.php:709
2288
+ #: profile-builder-2.0/admin/manage-fields.php:719
2289
  msgid "That meta-name is already in use\n"
2290
  msgstr ""
2291
 
2292
+ #: profile-builder-2.0/admin/manage-fields.php:741
2293
  #, php-format
2294
  msgid ""
2295
  "The following option(s) did not coincide with the ones in the options list: "
2296
  "%s\n"
2297
  msgstr ""
2298
 
2299
+ #: profile-builder-2.0/admin/manage-fields.php:745
2300
  #, php-format
2301
  msgid ""
2302
  "The following option did not coincide with the ones in the options list: %s\n"
2303
  msgstr ""
2304
 
2305
+ #: profile-builder-2.0/admin/manage-fields.php:752
2306
  msgid "Please select at least one user role\n"
2307
  msgstr ""
2308
 
2309
+ #: profile-builder-2.0/admin/manage-fields.php:768
2310
  msgid "That field is already added in this form\n"
2311
  msgstr ""
2312
 
2313
+ #: profile-builder-2.0/admin/manage-fields.php:817
2314
  msgid ""
2315
  "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
2316
  "required\">Required</pre>"
2317
  msgstr ""
2318
 
2319
+ #: profile-builder-2.0/admin/manage-fields.php:817
2320
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:440
2321
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:531
2322
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:119
2323
+ #: profile-builder-2.0/features/functions.php:654
2324
+ #: profile-builder-2.0/features/functions.php:661
2325
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
2326
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
2327
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
2328
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
2329
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:399
2330
  msgid "Edit"
2331
  msgstr ""
2332
 
2333
+ #: profile-builder-2.0/admin/manage-fields.php:817
2334
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:440
2335
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:532
2336
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:124
2337
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:235
2338
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
2339
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
2340
+ #: profile-builder-2.0/features/functions.php:647
2341
+ #: profile-builder-2.0/features/functions.php:661
2342
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
2343
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
2344
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
2345
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
2346
  msgid "Delete"
2347
  msgstr ""
2348
 
2349
+ #: profile-builder-2.0/admin/manage-fields.php:832
2350
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
2351
  msgstr ""
2352
 
2353
+ #: profile-builder-2.0/admin/manage-fields.php:841
2354
  msgid ""
2355
  "If you're interested in displaying different fields in the registration and "
2356
  "edit profile forms, please use the Multiple Registration & Edit Profile "
2357
  "Forms Addon."
2358
  msgstr ""
2359
 
2360
+ #: profile-builder-2.0/admin/manage-fields.php:843
2361
  msgid ""
2362
  "With Profile Builder Pro v2 you can display different fields in the "
2363
  "registration and edit profile forms, using the Multiple Registration & Edit "
2364
  "Profile Forms module."
2365
  msgstr ""
2366
 
2367
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:10
2368
  msgid "Paid Accounts"
2369
  msgstr ""
2370
 
2371
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:33
2372
  msgid "Paid Member Subscriptions - a free WordPress plugin"
2373
  msgstr ""
2374
 
2375
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:37
2376
  msgid ""
2377
  "With the new Subscriptions Field in Profile Builder, your registration forms "
2378
  "will allow your users to sign up for paid accounts."
2379
  msgstr ""
2380
 
2381
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:40
2382
  msgid "Paid & Free Subscriptions"
2383
  msgstr ""
2384
 
2385
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:41
2386
  msgid "Restrict Content"
2387
  msgstr ""
2388
 
2389
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:42
2390
  msgid "Member Management"
2391
  msgstr ""
2392
 
2393
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:43
2394
  msgid "Email Templates"
2395
  msgstr ""
2396
 
2397
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:44
2398
  msgid "Account Management"
2399
  msgstr ""
2400
 
2401
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:45
2402
  msgid "Subscription Management"
2403
  msgstr ""
2404
 
2405
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:46
2406
  msgid "Payment Management"
2407
  msgstr ""
2408
 
2409
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:83
2410
  msgid "Plugin is Active"
2411
  msgstr ""
2412
 
2413
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:84
2414
  msgid "Plugin has been activated"
2415
  msgstr ""
2416
 
2417
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:91
2418
  msgid "Plugin has been deactivated."
2419
  msgstr ""
2420
 
2421
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:104
2422
  msgid ""
2423
  "Accept user payments, create subscription plans and restrict content on your "
2424
  "website."
2425
  msgstr ""
2426
 
2427
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:155
2428
  msgid "Step by Step Quick Setup"
2429
  msgstr ""
2430
 
2431
+ #: profile-builder-2.0/admin/pms-cross-promotion.php:239
2432
  #, php-format
2433
  msgid ""
2434
  "Allow your users to have <strong>paid accounts with Profile Builder</"
2435
  "strong>. %1$sFind out how >%2$s. %3$sDismiss%4$s"
2436
  msgstr ""
2437
 
2438
+ #: profile-builder-2.0/admin/register-version.php:14
2439
  msgid "Register Your Version"
2440
  msgstr ""
2441
 
2442
+ #: profile-builder-2.0/admin/register-version.php:14
2443
  msgid "Register Version"
2444
  msgstr ""
2445
 
2446
+ #: profile-builder-2.0/admin/register-version.php:22
2447
  msgid "Profile Builder Register"
2448
  msgstr ""
2449
 
2450
+ #: profile-builder-2.0/admin/register-version.php:69
2451
  #, php-format
2452
  msgid ""
2453
  "Now that you acquired a copy of %s, you should take the time and register it "
2454
  "with the serial number you received"
2455
  msgstr ""
2456
 
2457
+ #: profile-builder-2.0/admin/register-version.php:70
2458
  msgid ""
2459
  "If you register this version of Profile Builder, you'll receive information "
2460
  "regarding upgrades, patches, and technical support."
2461
  msgstr ""
2462
 
2463
+ #: profile-builder-2.0/admin/register-version.php:72
2464
  msgid " Serial Number:"
2465
  msgstr ""
2466
 
2467
+ #: profile-builder-2.0/admin/register-version.php:77
2468
  msgid "The serial number was successfully validated!"
2469
  msgstr ""
2470
 
2471
+ #: profile-builder-2.0/admin/register-version.php:79
2472
  msgid "The serial number entered couldn't be validated!"
2473
  msgstr ""
2474
 
2475
+ #: profile-builder-2.0/admin/register-version.php:81
2476
  msgid "The serial number is about to expire soon!"
2477
  msgstr ""
2478
 
2479
+ #: profile-builder-2.0/admin/register-version.php:81
2480
  #, php-format
2481
  msgid ""
2482
  " Your serial number is about to expire, please %1$s Renew Your License%2$s."
2483
  msgstr ""
2484
 
2485
+ #: profile-builder-2.0/admin/register-version.php:83
2486
  msgid "The serial number couldn't be validated because it expired!"
2487
  msgstr ""
2488
 
2489
+ #: profile-builder-2.0/admin/register-version.php:83
2490
  #, php-format
2491
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
2492
  msgstr ""
2493
 
2494
+ #: profile-builder-2.0/admin/register-version.php:85
2495
  msgid ""
2496
  "The serial number couldn't be validated because process timed out. This is "
2497
  "possible due to the server being down. Please try again later!"
2498
  msgstr ""
2499
 
2500
+ #: profile-builder-2.0/admin/register-version.php:87
2501
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2502
  msgstr ""
2503
 
2504
+ #: profile-builder-2.0/admin/register-version.php:243
2505
  #, php-format
2506
  msgid ""
2507
  "<p>Your <strong>Profile Builder</strong> serial number is invalid or "
2510
  "p>"
2511
  msgstr ""
2512
 
2513
+ #: profile-builder-2.0/admin/register-version.php:246
2514
  #, php-format
2515
  msgid ""
2516
  "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
2519
  "%4$s %5$sDismiss%6$s</p>"
2520
  msgstr ""
2521
 
2522
+ #: profile-builder-2.0/admin/register-version.php:251
2523
  #, php-format
2524
  msgid ""
2525
  "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
2528
  "50&#37; off %4$s %6$sDismiss%7$s</p>"
2529
  msgstr ""
2530
 
2531
+ #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
2532
+ #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
2533
+ #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
2534
+ #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
2535
  msgid "...Choose"
2536
  msgstr ""
2537
 
2538
+ #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
2539
  #, php-format
2540
  msgid "You can add the information for the %s after you add a entry"
2541
  msgstr ""
2542
 
2543
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
2544
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
2545
  msgid "Remove"
2546
  msgstr ""
2547
 
2548
+ #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
2549
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
2550
  msgid "Upload "
2551
  msgstr ""
2552
 
2553
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:337
2554
+ #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:242
2555
  msgid "Save"
2556
  msgstr ""
2557
 
2558
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:337
2559
  msgid "Add Entry"
2560
  msgstr ""
2561
 
2562
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:440
2563
+ #: profile-builder-2.0/features/functions.php:661
2564
  msgid "Content"
2565
  msgstr ""
2566
 
2567
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:531
2568
  msgid "Edit this item"
2569
  msgstr ""
2570
 
2571
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:532
2572
  msgid "Delete this item"
2573
  msgstr ""
2574
 
2575
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:700
2576
  msgid "Please enter a value for the required field "
2577
  msgstr ""
2578
 
2579
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1179
2580
  msgid "Syncronize WCK"
2581
  msgstr ""
2582
 
2583
+ #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:1191
2584
  msgid "Syncronize WCK Translation"
2585
  msgstr ""
2586
 
2587
+ #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:241
2588
  msgid ""
2589
  "Your account has to be confirmed by an administrator before you can log in."
2590
  msgstr ""
2591
 
2592
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:7
2593
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:458
2594
  msgid "Admin Approval"
2595
  msgstr ""
2596
 
2597
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:21
2598
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
2599
  msgid "Do you want to"
2600
  msgstr ""
2601
 
2602
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:44
2603
  msgid "Your session has expired! Please refresh the page and try again"
2604
  msgstr ""
2605
 
2606
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:55
2607
  msgid "User successfully approved!"
2608
  msgstr ""
2609
 
2610
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:63
2611
  msgid "User successfully unapproved!"
2612
  msgstr ""
2613
 
2614
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:69
2615
  msgid "User successfully deleted!"
2616
  msgstr ""
2617
 
2618
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
2619
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:118
2620
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:135
2621
  msgid "You either don't have permission for that action or there was an error!"
2622
  msgstr ""
2623
 
2624
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
2625
  msgid "Your session has expired! Please refresh the page and try again."
2626
  msgstr ""
2627
 
2628
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:97
2629
  msgid "Users successfully approved!"
2630
  msgstr ""
2631
 
2632
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:106
2633
  msgid "Users successfully unapproved!"
2634
  msgstr ""
2635
 
2636
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:114
2637
  msgid "Users successfully deleted!"
2638
  msgstr ""
2639
 
2640
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:134
2641
  #, php-format
2642
  msgid "Your account on %1$s has been approved!"
2643
  msgstr ""
2644
 
2645
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:135
2646
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:138
2647
  msgid "approved"
2648
  msgstr ""
2649
 
2650
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:137
2651
  #, php-format
2652
  msgid "An administrator has just approved your account on %1$s (%2$s)."
2653
  msgstr ""
2654
 
2655
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:142
2656
  #, php-format
2657
  msgid "Your account on %1$s has been unapproved!"
2658
  msgstr ""
2659
 
2660
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:143
2661
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:146
2662
  msgid "unapproved"
2663
  msgstr ""
2664
 
2665
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:145
2666
  #, php-format
2667
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
2668
  msgstr ""
2669
 
2670
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:164
2671
  msgid ""
2672
  "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
2673
  "before you can log in."
2674
  msgstr ""
2675
 
2676
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:176
2677
  msgid ""
2678
  "Your account has to be confirmed by an administrator before you can use the "
2679
  "\"Password Recovery\" feature."
2680
  msgstr ""
2681
 
2682
+ #: profile-builder-2.0/features/admin-approval/admin-approval.php:203
2683
  msgid "Your account has been successfully created!"
2684
  msgstr ""
2685
 
2686
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:124
2687
  msgid "delete this user?"
2688
  msgstr ""
2689
 
2690
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:127
2691
  msgid "unapprove this user?"
2692
  msgstr ""
2693
 
2694
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:127
2695
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:234
2696
  msgid "Unapprove"
2697
  msgstr ""
2698
 
2699
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:129
2700
  msgid "approve this user?"
2701
  msgstr ""
2702
 
2703
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:129
2704
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:233
2705
  msgid "Approve"
2706
  msgstr ""
2707
 
2708
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:178
2709
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:249
2710
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:623
2711
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1264
2712
  msgid "Firstname"
2713
  msgstr ""
2714
 
2715
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:179
2716
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:626
2717
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1265
2718
  msgid "Lastname"
2719
  msgstr ""
2720
 
2721
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:181
2722
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:124
2723
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:250
2724
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:653
2725
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1269
2726
  msgid "Role"
2727
  msgstr ""
2728
 
2729
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:182
2730
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
2731
  msgid "Registered"
2732
  msgstr ""
2733
 
2734
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:183
2735
  msgid "User-status"
2736
  msgstr ""
2737
 
2738
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:263
2739
  msgid "Do you want to bulk approve the selected users?"
2740
  msgstr ""
2741
 
2742
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:271
2743
  msgid "Do you want to bulk unapprove the selected users?"
2744
  msgstr ""
2745
 
2746
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:277
2747
  msgid "Do you want to bulk delete the selected users?"
2748
  msgstr ""
2749
 
2750
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:285
2751
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
2752
  msgid "Sorry, but you don't have permission to do that!"
2753
  msgstr ""
2754
 
2755
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
2756
  msgid "Approved"
2757
  msgstr ""
2758
 
2759
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:343
2760
  msgid "Unapproved"
2761
  msgstr ""
2762
 
2763
+ #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
2764
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:465
2765
  msgid "All Users"
2766
  msgstr ""
2767
 
2768
+ #: profile-builder-2.0/features/class-list-table.php:184
2769
  msgid "No items found."
2770
  msgstr ""
2771
 
2772
+ #: profile-builder-2.0/features/class-list-table.php:308
2773
  msgid "Bulk Actions"
2774
  msgstr ""
2775
 
2776
+ #: profile-builder-2.0/features/class-list-table.php:318
2777
  msgid "Apply"
2778
  msgstr ""
2779
 
2780
+ #: profile-builder-2.0/features/class-list-table.php:402
2781
  msgid "Show all dates"
2782
  msgstr ""
2783
 
2784
+ #: profile-builder-2.0/features/class-list-table.php:415
2785
  #, php-format
2786
  msgid "%1$s %2$d"
2787
  msgstr ""
2788
 
2789
+ #: profile-builder-2.0/features/class-list-table.php:431
2790
  msgid "List View"
2791
  msgstr ""
2792
 
2793
+ #: profile-builder-2.0/features/class-list-table.php:432
2794
  msgid "Excerpt View"
2795
  msgstr ""
2796
 
2797
+ #: profile-builder-2.0/features/class-list-table.php:458
2798
  #, php-format
2799
  msgid "%s pending"
2800
  msgstr ""
2801
 
2802
+ #: profile-builder-2.0/features/class-list-table.php:526
2803
+ #: profile-builder-2.0/features/class-list-table.php:941
2804
  msgid "1 item"
2805
  msgstr ""
2806
 
2807
+ #: profile-builder-2.0/features/class-list-table.php:566
2808
  #, php-format
2809
  msgid "%1$s of %2$s"
2810
  msgstr ""
2811
 
2812
+ #: profile-builder-2.0/features/class-list-table.php:713
2813
  msgid "Select All"
2814
  msgstr ""
2815
 
2816
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
2817
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
2818
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
2819
  msgid "User Meta"
2820
  msgstr ""
2821
 
2822
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
2823
  msgid "show"
2824
  msgstr ""
2825
 
2826
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
2827
  msgid "delete this user from the _signups table?"
2828
  msgstr ""
2829
 
2830
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
2831
  msgid "confirm this email yourself?"
2832
  msgstr ""
2833
 
2834
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
2835
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
2836
  msgid "Confirm Email"
2837
  msgstr ""
2838
 
2839
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
2840
  msgid "resend the activation link?"
2841
  msgstr ""
2842
 
2843
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
2844
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
2845
  msgid "Resend Activation Email"
2846
  msgstr ""
2847
 
2848
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
2849
  #, php-format
2850
  msgid "%s couldn't be deleted"
2851
  msgstr ""
2852
 
2853
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
2854
  msgid "All users have been successfully deleted"
2855
  msgstr ""
2856
 
2857
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
2858
  msgid "The selected users have been activated"
2859
  msgstr ""
2860
 
2861
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
2862
  msgid "The selected users have had their activation emails resent"
2863
  msgstr ""
2864
 
2865
+ #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:462
2866
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
2867
  msgid "Users with Unconfirmed Email Address"
2868
  msgstr ""
2869
 
2870
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:110
2871
  msgid "There was an error performing that action!"
2872
  msgstr ""
2873
 
2874
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:118
2875
  msgid "The selected user couldn't be deleted"
2876
  msgstr ""
2877
 
2878
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:129
2879
  msgid "Email notification resent to user"
2880
  msgstr ""
2881
 
2882
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
2883
  #, php-format
2884
  msgid "[%1$s] Activate %2$s"
2885
  msgstr ""
2886
 
2887
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
2888
  #, php-format
2889
  msgid ""
2890
  "To activate your user, please click the following link:<br><br>%s%s"
2892
  "your login."
2893
  msgstr ""
2894
 
2895
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
2896
+ #: profile-builder-2.0/front-end/register.php:68
2897
  msgid "Could not create user!"
2898
  msgstr ""
2899
 
2900
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
2901
  msgid "That username is already activated!"
2902
  msgstr ""
2903
 
2904
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:466
2905
  msgid "There was an error while trying to activate the user"
2906
  msgstr ""
2907
 
2908
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:514
2909
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
2910
  msgid "A new subscriber has (been) registered!"
2911
  msgstr ""
2912
 
2913
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:517
2914
  #, php-format
2915
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
2916
  msgstr ""
2917
 
2918
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:566
2919
  #, php-format
2920
  msgid "[%1$s] Your new account information"
2921
  msgstr ""
2922
 
2923
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
2924
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:573
2925
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:413
2926
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:420
2927
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:434
2928
  msgid "Your selected password at signup"
2929
  msgstr ""
2930
 
2931
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:572
2932
  #, php-format
2933
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
2934
  msgstr ""
2935
 
2936
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:624
2937
  msgid ""
2938
  "The \"Admin Approval\" feature was activated at the time of registration, so "
2939
  "please remember that you need to approve this user before he/she can log in!"
2940
  msgstr ""
2941
 
2942
+ #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:632
2943
+ #: profile-builder-2.0/front-end/register.php:127
2944
  msgid ""
2945
  "Before you can access your account, an administrator needs to approve it. "
2946
  "You will be notified via email."
2947
  msgstr ""
2948
 
2949
+ #: profile-builder-2.0/features/functions.php:297
2950
  msgid "The user-validation has failed - the avatar was not deleted!"
2951
  msgstr ""
2952
 
2953
+ #: profile-builder-2.0/features/functions.php:308
2954
  msgid "The user-validation has failed - the attachment was not deleted!"
2955
  msgstr ""
2956
 
2957
+ #: profile-builder-2.0/features/functions.php:500
2958
  msgid "Strength indicator"
2959
  msgstr ""
2960
 
2961
+ #: profile-builder-2.0/features/functions.php:525
2962
  msgid "Very Weak"
2963
  msgstr ""
2964
 
2965
+ #: profile-builder-2.0/features/functions.php:539
2966
  #, php-format
2967
  msgid "Minimum length of %d characters"
2968
  msgstr ""
2969
 
2970
+ #: profile-builder-2.0/features/functions.php:613
2971
  msgid "This field is required"
2972
  msgstr ""
2973
 
2974
+ #: profile-builder-2.0/features/functions.php:620
2975
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:374
2976
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:379
2977
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
2978
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:458
2979
  msgid "Please enter a (valid) reCAPTCHA value"
2980
  msgstr ""
2981
 
2982
+ #: profile-builder-2.0/features/functions.php:640
2983
  msgid "Cancel"
2984
  msgstr ""
2985
 
2986
+ #: profile-builder-2.0/features/functions.php:672
2987
  #, php-format
2988
  msgid ""
2989
  "To allow users to register for your website via Profile Builder, you first "
2992
  "%3$sDismiss%4$s"
2993
  msgstr ""
2994
 
2995
+ #: profile-builder-2.0/features/functions.php:676
2996
  #, php-format
2997
  msgid ""
2998
  "To allow users to register for your website via Profile Builder, you first "
3000
  "under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3001
  msgstr ""
3002
 
3003
+ #: profile-builder-2.0/features/login-widget/login-widget.php:10
3004
  msgid "This login widget lets you add a login form in the sidebar."
3005
  msgstr ""
3006
 
3007
+ #: profile-builder-2.0/features/login-widget/login-widget.php:15
3008
  msgid "Profile Builder Login Widget"
3009
  msgstr ""
3010
 
3011
+ #: profile-builder-2.0/features/login-widget/login-widget.php:63
3012
  msgid "Title:"
3013
  msgstr ""
3014
 
3015
+ #: profile-builder-2.0/features/login-widget/login-widget.php:68
3016
  msgid "After login redirect URL (optional):"
3017
  msgstr ""
3018
 
3019
+ #: profile-builder-2.0/features/login-widget/login-widget.php:73
3020
  msgid "Register page URL (optional):"
3021
  msgstr ""
3022
 
3023
+ #: profile-builder-2.0/features/login-widget/login-widget.php:78
3024
  msgid "Password Recovery page URL (optional):"
3025
  msgstr ""
3026
 
3027
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
3028
+ #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
3029
  msgid "The usernames cannot be changed."
3030
  msgstr ""
3031
 
3032
+ #: profile-builder-2.0/front-end/class-formbuilder.php:132
3033
  msgid "Only an administrator can add new users."
3034
  msgstr ""
3035
 
3036
+ #: profile-builder-2.0/front-end/class-formbuilder.php:142
3037
  msgid "Users can register themselves or you can manually create users here."
3038
  msgstr ""
3039
 
3040
+ #: profile-builder-2.0/front-end/class-formbuilder.php:142
3041
+ #: profile-builder-2.0/front-end/class-formbuilder.php:145
3042
  msgid "This message is only visible by administrators"
3043
  msgstr ""
3044
 
3045
+ #: profile-builder-2.0/front-end/class-formbuilder.php:145
3046
  msgid ""
3047
  "Users cannot currently register themselves, but you can manually create "
3048
  "users here."
3049
  msgstr ""
3050
 
3051
+ #: profile-builder-2.0/front-end/class-formbuilder.php:167
3052
  #, php-format
3053
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
3054
  msgstr ""
3055
 
3056
+ #: profile-builder-2.0/front-end/class-formbuilder.php:167
3057
  msgid "Log out of this account."
3058
  msgstr ""
3059
 
3060
+ #: profile-builder-2.0/front-end/class-formbuilder.php:167
3061
  msgid "Logout"
3062
  msgstr ""
3063
 
3064
+ #: profile-builder-2.0/front-end/class-formbuilder.php:174
3065
  msgid "You must be logged in to edit your profile."
3066
  msgstr ""
3067
 
3068
+ #: profile-builder-2.0/front-end/class-formbuilder.php:203
3069
  msgid "here"
3070
  msgstr ""
3071
 
3072
+ #: profile-builder-2.0/front-end/class-formbuilder.php:205
3073
  #, php-format
3074
  msgid ""
3075
  "You will soon be redirected automatically. If you see this page for more "
3076
  "than %1$d seconds, please click %2$s.%3$s"
3077
  msgstr ""
3078
 
3079
+ #: profile-builder-2.0/front-end/class-formbuilder.php:293
3080
+ #: profile-builder-2.0/front-end/class-formbuilder.php:300
3081
  #, php-format
3082
  msgid "The account %1s has been successfully created!"
3083
  msgstr ""
3084
 
3085
+ #: profile-builder-2.0/front-end/class-formbuilder.php:296
3086
+ #: profile-builder-2.0/front-end/class-formbuilder.php:306
3087
  #, php-format
3088
  msgid ""
3089
  "Before you can access your account %1s, you need to confirm your email "
3090
  "address. Please check your inbox and click the activation link."
3091
  msgstr ""
3092
 
3093
+ #: profile-builder-2.0/front-end/class-formbuilder.php:302
3094
  #, php-format
3095
  msgid ""
3096
  "Before you can access your account %1s, an administrator has to approve it. "
3097
  "You will be notified via email."
3098
  msgstr ""
3099
 
3100
+ #: profile-builder-2.0/front-end/class-formbuilder.php:316
3101
  msgid "Your profile has been successfully updated!"
3102
  msgstr ""
3103
 
3104
+ #: profile-builder-2.0/front-end/class-formbuilder.php:326
3105
  msgid "There was an error in the submitted form"
3106
  msgstr ""
3107
 
3108
+ #: profile-builder-2.0/front-end/class-formbuilder.php:348
3109
  msgid "Add User"
3110
  msgstr ""
3111
 
3112
+ #: profile-builder-2.0/front-end/class-formbuilder.php:401
3113
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:35
 
 
 
 
3114
  msgid "The avatar was successfully deleted!"
3115
  msgstr ""
3116
 
3117
+ #: profile-builder-2.0/front-end/class-formbuilder.php:401
3118
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:37
3119
  msgid "The following attachment was successfully deleted:"
3120
  msgstr ""
3121
 
3122
+ #: profile-builder-2.0/front-end/class-formbuilder.php:413
3123
  msgid "Send these credentials via email."
3124
  msgstr ""
3125
 
3126
+ #: profile-builder-2.0/front-end/class-formbuilder.php:571
3127
  msgid "User to edit:"
3128
  msgstr ""
3129
 
3130
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:48
 
 
 
 
3131
  msgid "You must enter a valid email address."
3132
  msgstr ""
3133
 
3134
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:57
3135
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:64
3136
  msgid "This email is already reserved to be used soon."
3137
  msgstr ""
3138
 
3139
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:57
3140
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:64
3141
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:73
3142
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:84
3143
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:50
3144
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
3145
  msgid "Please try a different one!"
3146
  msgstr ""
3147
 
3148
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:73
3149
+ #: profile-builder-2.0/front-end/default-fields/email/email.php:84
3150
  msgid "This email is already in use."
3151
  msgstr ""
3152
 
3153
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
3154
+ #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
3155
  msgid "The passwords do not match"
3156
  msgstr ""
3157
 
3158
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:46
3159
+ #: profile-builder-2.0/front-end/recover.php:245
3160
  #, php-format
3161
  msgid "The password must have the minimum length of %s characters"
3162
  msgstr ""
3163
 
3164
+ #: profile-builder-2.0/front-end/default-fields/password/password.php:50
3165
+ #: profile-builder-2.0/front-end/recover.php:249
3166
  #, php-format
3167
  msgid "The password must have a minimum strength of %s"
3168
  msgstr ""
3169
 
3170
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:50
3171
  msgid "This username already exists."
3172
  msgstr ""
3173
 
3174
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:53
3175
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3176
  msgid "This username is invalid because it uses illegal characters."
3177
  msgstr ""
3178
 
3179
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:53
3180
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:60
3181
  msgid "Please enter a valid username."
3182
  msgstr ""
3183
 
3184
+ #: profile-builder-2.0/front-end/default-fields/username/username.php:65
3185
  msgid "This username is already reserved to be used soon."
3186
  msgstr ""
3187
 
3188
+ #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
3189
+ #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
3190
+ #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
3191
+ #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
3192
+ #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
3193
+ #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
3194
+ #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
3195
+ #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:44
3196
+ #: profile-builder-2.0/front-end/extra-fields/select/select.php:46
3197
+ #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
3198
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
3199
+ #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
3200
  msgid "required"
3201
  msgstr ""
3202
 
3203
+ #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:99
3204
+ #: profile-builder-2.0/front-end/login.php:92
3205
+ #: profile-builder-2.0/front-end/login.php:99
3206
+ #: profile-builder-2.0/front-end/login.php:113
3207
+ #: profile-builder-2.0/front-end/recover.php:17
3208
+ #: profile-builder-2.0/front-end/recover.php:228
3209
  msgid "ERROR"
3210
  msgstr ""
3211
 
3212
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:48
3213
  msgid "To use reCAPTCHA you must get an API key from"
3214
  msgstr ""
3215
 
3216
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:131
3217
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
3218
  msgstr ""
3219
 
3220
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:192
3221
  msgid "To use reCAPTCHA you must get an API public key from:"
3222
  msgstr ""
3223
 
3224
+ #: profile-builder-2.0/front-end/extra-fields/recaptcha/recaptcha.php:421
3225
  msgid "Click the BACK button on your browser, and try again."
3226
  msgstr ""
3227
 
3228
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
3229
  msgid "Select File"
3230
  msgstr ""
3231
 
3232
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
3233
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
3234
  msgid "Sorry, you cannot upload this file type for this field."
3235
  msgstr ""
3236
 
3237
+ #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
3238
  msgid "An error occurred, please try again later."
3239
  msgstr ""
3240
 
3241
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:67
3242
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:80
3243
  msgid "Only administrators can see this field on edit profile forms."
3244
  msgstr ""
3245
 
3246
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:76
3247
  msgid "As an administrator you cannot change your role."
3248
  msgstr ""
3249
 
3250
+ #: profile-builder-2.0/front-end/extra-fields/user-role/user-role.php:112
3251
  msgid "You cannot register this user role"
3252
  msgstr ""
3253
 
3254
+ #: profile-builder-2.0/front-end/login.php:92
3255
  msgid "The password you entered is incorrect."
3256
  msgstr ""
3257
 
3258
+ #: profile-builder-2.0/front-end/login.php:93
3259
+ #: profile-builder-2.0/front-end/login.php:100
3260
  msgid "Password Lost and Found."
3261
  msgstr ""
3262
 
3263
+ #: profile-builder-2.0/front-end/login.php:93
3264
+ #: profile-builder-2.0/front-end/login.php:100
3265
  msgid "Lost your password"
3266
  msgstr ""
3267
 
3268
+ #: profile-builder-2.0/front-end/login.php:99
3269
  msgid "Invalid username."
3270
  msgstr ""
3271
 
3272
+ #: profile-builder-2.0/front-end/login.php:104
3273
+ #: profile-builder-2.0/front-end/login.php:108
3274
  msgid "username"
3275
  msgstr ""
3276
 
3277
+ #: profile-builder-2.0/front-end/login.php:104
3278
  msgid "email"
3279
  msgstr ""
3280
 
3281
+ #: profile-builder-2.0/front-end/login.php:108
3282
  msgid "username or email"
3283
  msgstr ""
3284
 
3285
+ #: profile-builder-2.0/front-end/login.php:113
3286
  msgid "Both fields are empty."
3287
  msgstr ""
3288
 
3289
+ #: profile-builder-2.0/front-end/login.php:177
3290
  msgid "Username or Email"
3291
  msgstr ""
3292
 
3293
+ #: profile-builder-2.0/front-end/login.php:211
3294
  msgid "Lost your password?"
3295
  msgstr ""
3296
 
3297
+ #: profile-builder-2.0/front-end/login.php:253
3298
+ #: profile-builder-2.0/front-end/logout.php:26
3299
  msgid "Log out of this account"
3300
  msgstr ""
3301
 
3302
+ #: profile-builder-2.0/front-end/login.php:253
3303
  msgid "Log out"
3304
  msgstr ""
3305
 
3306
+ #: profile-builder-2.0/front-end/login.php:254
3307
  #, php-format
3308
  msgid "You are currently logged in as %1$s. %2$s"
3309
  msgstr ""
3310
 
3311
+ #: profile-builder-2.0/front-end/logout.php:15
3312
  #, php-format
3313
  msgid "You are currently logged in as %s. "
3314
  msgstr ""
3315
 
3316
+ #: profile-builder-2.0/front-end/logout.php:15
3317
  msgid "Log out &raquo;"
3318
  msgstr ""
3319
 
3320
+ #: profile-builder-2.0/front-end/recover.php:17
3321
  msgid ""
3322
  "Your account has to be confirmed by an administrator before you can use the "
3323
  "\"Password Reset\" feature."
3324
  msgstr ""
3325
 
3326
+ #: profile-builder-2.0/front-end/recover.php:91
3327
  msgid "Reset Password"
3328
  msgstr ""
3329
 
3330
+ #: profile-builder-2.0/front-end/recover.php:111
3331
  msgid "Please enter your username or email address."
3332
  msgstr ""
3333
 
3334
+ #: profile-builder-2.0/front-end/recover.php:112
3335
  msgid "You will receive a link to create a new password via email."
3336
  msgstr ""
3337
 
3338
+ #: profile-builder-2.0/front-end/recover.php:119
3339
  msgid "Username or E-mail"
3340
  msgstr ""
3341
 
3342
+ #: profile-builder-2.0/front-end/recover.php:125
3343
  msgid "Get New Password"
3344
  msgstr ""
3345
 
3346
+ #: profile-builder-2.0/front-end/recover.php:166
3347
  msgid "The username entered wasn't found in the database!"
3348
  msgstr ""
3349
 
3350
+ #: profile-builder-2.0/front-end/recover.php:166
3351
  msgid "Please check that you entered the correct username."
3352
  msgstr ""
3353
 
3354
+ #: profile-builder-2.0/front-end/recover.php:181
3355
  msgid "Check your e-mail for the confirmation link."
3356
  msgstr ""
3357
 
3358
+ #: profile-builder-2.0/front-end/recover.php:188
3359
  msgid "The email address entered wasn't found in the database!"
3360
  msgstr ""
3361
 
3362
+ #: profile-builder-2.0/front-end/recover.php:188
3363
  msgid "Please check that you entered the correct email address."
3364
  msgstr ""
3365
 
3366
+ #: profile-builder-2.0/front-end/recover.php:216
3367
  #, php-format
3368
  msgid ""
3369
  "Someone requested that the password be reset for the following account: <b>"
3371
  "happen.<br/>To reset your password, visit the following link:%2$s"
3372
  msgstr ""
3373
 
3374
+ #: profile-builder-2.0/front-end/recover.php:219
3375
  #, php-format
3376
  msgid "Password Reset from \"%1$s\""
3377
  msgstr ""
3378
 
3379
+ #: profile-builder-2.0/front-end/recover.php:228
3380
  #, php-format
3381
  msgid "There was an error while trying to send the activation link to %1$s!"
3382
  msgstr ""
3383
 
3384
+ #: profile-builder-2.0/front-end/recover.php:256
3385
  msgid "Your password has been successfully changed!"
3386
  msgstr ""
3387
 
3388
+ #: profile-builder-2.0/front-end/recover.php:275
3389
  #, php-format
3390
  msgid "You have successfully reset your password to: %1$s"
3391
  msgstr ""
3392
 
3393
+ #: profile-builder-2.0/front-end/recover.php:278
3394
+ #: profile-builder-2.0/front-end/recover.php:292
3395
  #, php-format
3396
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
3397
  msgstr ""
3398
 
3399
+ #: profile-builder-2.0/front-end/recover.php:289
3400
  #, php-format
3401
  msgid ""
3402
  "%1$s has requested a password change via the password reset feature.<br/>His/"
3403
  "her new password is:%2$s"
3404
  msgstr ""
3405
 
3406
+ #: profile-builder-2.0/front-end/recover.php:308
3407
  msgid "The entered passwords don't match!"
3408
  msgstr ""
3409
 
3410
+ #: profile-builder-2.0/front-end/recover.php:375
3411
  msgid "ERROR:"
3412
  msgstr ""
3413
 
3414
+ #: profile-builder-2.0/front-end/recover.php:375
3415
  msgid "Invalid key!"
3416
  msgstr ""
3417
 
3418
+ #: profile-builder-2.0/front-end/register.php:46
3419
  msgid "Invalid activation key!"
3420
  msgstr ""
3421
 
3422
+ #: profile-builder-2.0/front-end/register.php:50
3423
  msgid "This username is now active!"
3424
  msgstr ""
3425
 
3426
+ #: profile-builder-2.0/front-end/register.php:71
3427
  msgid "This username is already activated!"
3428
  msgstr ""
3429
 
3430
+ #: profile-builder-2.0/front-end/register.php:126
3431
  msgid "Your email was successfully confirmed."
3432
  msgstr ""
3433
 
3434
+ #: profile-builder-2.0/front-end/register.php:130
3435
  msgid "You will soon be redirected automatically."
3436
  msgstr ""
3437
 
3438
+ #: profile-builder-2.0/front-end/register.php:159
3439
  msgid "There was an error while trying to activate the user."
3440
  msgstr ""
3441
 
3442
+ #: profile-builder-2.0/index.php:34
3443
  msgid ""
3444
  " is also activated. You need to deactivate it before activating this version "
3445
  "of the plugin."
3446
  msgstr ""
3447
 
3448
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
3449
  msgid "After Login"
3450
  msgstr ""
3451
 
3452
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
3453
  msgid "After Logout"
3454
  msgstr ""
3455
 
3456
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
3457
  msgid "After Registration"
3458
  msgstr ""
3459
 
3460
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
3461
  msgid "After Edit Profile"
3462
  msgstr ""
3463
 
3464
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
3465
  msgid "After Successful Email Confirmation"
3466
  msgstr ""
3467
 
3468
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
3469
  msgid "After Successful Password Reset"
3470
  msgstr ""
3471
 
3472
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
3473
  msgid "Dashboard (redirect users from accessing the dashboard)"
3474
  msgstr ""
3475
 
3476
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
3477
  msgid "User ID"
3478
  msgstr ""
3479
 
3480
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
3481
  msgid "User ID or Username"
3482
  msgstr ""
3483
 
3484
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
3485
  msgid "User ID / Username"
3486
  msgstr ""
3487
 
3488
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
3489
  msgid "Please select and enter the ID or username of your user."
3490
  msgstr ""
3491
 
3492
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
3493
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
3494
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
3495
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
3496
  msgid "Redirect Type"
3497
  msgstr ""
3498
 
3499
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
3500
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
3501
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
3502
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
3503
  msgid "Redirect URL"
3504
  msgstr ""
3505
 
3506
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
3507
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
3508
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
3509
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
3510
  msgid ""
3511
  "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, "
3512
  "{{user_id}}, {{user_nicename}}, {{http_referer}}"
3513
  msgstr ""
3514
 
3515
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
3516
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
3517
  msgid "Individual User Redirects"
3518
  msgstr ""
3519
 
3520
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
3521
  msgid "... Choose"
3522
  msgstr ""
3523
 
3524
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3525
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
3526
  msgid "User Role"
3527
  msgstr ""
3528
 
3529
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
3530
  msgid "Select a user role."
3531
  msgstr ""
3532
 
3533
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
3534
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
3535
  msgid "User Role based Redirects"
3536
  msgstr ""
3537
 
3538
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
3539
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
3540
  msgid "Global Redirects"
3541
  msgstr ""
3542
 
3543
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
3544
  msgid "Login ( wp_login.php )"
3545
  msgstr ""
3546
 
3547
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
3548
  msgid "Register ( wp-login.php?action=register )"
3549
  msgstr ""
3550
 
3551
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
3552
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
3553
  msgstr ""
3554
 
3555
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
3556
  msgid "Author Archive ( http://sitename.com/author/admin )"
3557
  msgstr ""
3558
 
3559
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
3560
  msgid "Redirect Default WordPress Forms and Pages"
3561
  msgstr ""
3562
 
3563
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
3564
  msgid "How does this work?"
3565
  msgstr ""
3566
 
3567
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
3568
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
3569
  msgstr ""
3570
 
3571
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
3572
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
3573
  msgstr ""
3574
 
3575
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
3576
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
3577
  msgid "<pre>Redirect</pre><pre>URL</pre>"
3578
  msgstr ""
3579
 
3580
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
3581
  msgid ""
3582
  "These redirects happen after a successful action, like registration or after "
3583
  "a successful login."
3584
  msgstr ""
3585
 
3586
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
3587
  msgid "Which redirect happens depends on the following priority:"
3588
  msgstr ""
3589
 
3590
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
3591
  msgid ""
3592
  "Individual redirects defined in shortcodes or in the Multiple Registration "
3593
  "and Edit Profile form settings. (<strong><em>redirect_priority=\"top\"</em></"
3595
  "redirect will have priority over all other redirects)"
3596
  msgstr ""
3597
 
3598
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:246
3599
  msgid "Redirect Default WordPress forms and pages"
3600
  msgstr ""
3601
 
3602
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
3603
  msgid ""
3604
  "With these you can redirect various WordPress forms and pages to pages "
3605
  "created with profile builder."
3606
  msgstr ""
3607
 
3608
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:249
3609
  msgid "Available tags for dynamic URLs"
3610
  msgstr ""
3611
 
3612
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
3613
  msgid ""
3614
  "You use the following tags in your URLs to redirect users to various pages."
3615
  msgstr ""
3616
 
3617
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:252
3618
  msgid "generates a url of the current website homepage."
3619
  msgstr ""
3620
 
3621
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
3622
  msgid ""
3623
  "in WordPress the <a target='_blank' href='https://codex.wordpress.org/"
3624
  "Function_Reference/site_url'>site url</a> can be different then the home url"
3625
  msgstr ""
3626
 
3627
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
3628
  msgid "the ID of the user"
3629
  msgstr ""
3630
 
3631
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
3632
  msgid ""
3633
  "the URL sanitized version of the username, the user nicename can be safely "
3634
  "used in URLs since it can't contain special characters or spaces."
3635
  msgstr ""
3636
 
3637
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
3638
  msgid "the URL of the previously visited page"
3639
  msgstr ""
3640
 
3641
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:339
3642
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:345
3643
+ #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:351
3644
  msgid "You can't add duplicate redirects!"
3645
  msgstr ""
3646
 
3647
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
3648
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
3649
+ #: profile-builder-2.0/modules/modules.php:93
3650
  msgid "Admin Email Customizer"
3651
  msgstr ""
3652
 
3653
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3654
  msgid ""
3655
  "These settings are also replicated in the \"User Email Customizer\" settings-"
3656
  "page upon save."
3657
  msgstr ""
3658
 
3659
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
3660
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3661
  msgid "Valid tags {{reply_to}} and {{site_name}}"
3662
  msgstr ""
3663
 
3664
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
3665
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
3666
  msgid "From (name)"
3667
  msgstr ""
3668
 
3669
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
3670
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
3671
  msgid "From (reply-to email)"
3672
  msgstr ""
3673
 
3674
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
3675
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
3676
  msgid ""
3677
  "Must be a valid email address or the tag {{reply_to}} which defaults to the "
3678
  "administrator email"
3679
  msgstr ""
3680
 
3681
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
3682
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
3683
  msgid "Common Settings"
3684
  msgstr ""
3685
 
3686
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
3687
  msgid ""
3688
  "\n"
3689
  "<p>New subscriber on {{site_name}}.</p>\n"
3691
  "<p>E-mail:{{user_email}}</p>\n"
3692
  msgstr ""
3693
 
3694
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
3695
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
3696
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
3697
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
3698
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
3699
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
3700
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
3701
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
3702
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
3703
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
3704
  msgid "Email Subject"
3705
  msgstr ""
3706
 
3707
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
3708
  msgid "Default Registration & Registration with Email Confirmation"
3709
  msgstr ""
3710
 
3711
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
3712
  msgid ""
3713
  "\n"
3714
  "<p>New subscriber on {{site_name}}.</p>\n"
3719
  "in!</p>\n"
3720
  msgstr ""
3721
 
3722
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
3723
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
3724
  msgid "Registration with Admin Approval"
3725
  msgstr ""
3726
 
3727
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
3728
  msgid ""
3729
  "\n"
3730
  "<p>{{username}} has requested a password change via the password reset "
3732
  "<p>His/her new password is: {{password}}</p>\n"
3733
  msgstr ""
3734
 
3735
+ #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
3736
  msgid "Admin Notification for User Password Reset"
3737
  msgstr ""
3738
 
3739
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
3740
  msgid "Available Tags"
3741
  msgstr ""
3742
 
3743
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
3744
  msgid "Site Url"
3745
  msgstr ""
3746
 
3747
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
3748
  msgid "Site Name"
3749
  msgstr ""
3750
 
3751
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
3752
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:133
3753
  msgid "User Id"
3754
  msgstr ""
3755
 
3756
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
3757
  msgid "Reply To"
3758
  msgstr ""
3759
 
3760
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
3761
  msgid "Activation Key"
3762
  msgstr ""
3763
 
3764
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:37
3765
  msgid "Activation Url"
3766
  msgstr ""
3767
 
3768
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:38
3769
  msgid "Activation Link"
3770
  msgstr ""
3771
 
3772
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
3773
  msgid "Reset Key"
3774
  msgstr ""
3775
 
3776
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:43
3777
  msgid "Reset Url"
3778
  msgstr ""
3779
 
3780
+ #: profile-builder-2.0/modules/email-customizer/email-customizer.php:44
3781
  msgid "Reset Link"
3782
  msgstr ""
3783
 
3784
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
3785
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
3786
+ #: profile-builder-2.0/modules/modules.php:100
3787
  msgid "User Email Customizer"
3788
  msgstr ""
3789
 
3790
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
3791
  msgid ""
3792
  "These settings are also replicated in the \"Admin Email Customizer\" "
3793
  "settings-page upon save."
3794
  msgstr ""
3795
 
3796
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
3797
  msgid ""
3798
  "\n"
3799
  "<h3>Welcome to {{site_name}}!</h3>\n"
3800
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
3801
  msgstr ""
3802
 
3803
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
3804
  msgid "Default Registration"
3805
  msgstr ""
3806
 
3807
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
3808
  msgid ""
3809
  "\n"
3810
  "<p>To activate your user, please click the following link:<br/>\n"
3813
  "</p>\n"
3814
  msgstr ""
3815
 
3816
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
3817
  msgid "[{{site_name}}] Activate {{username}}"
3818
  msgstr ""
3819
 
3820
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
3821
  msgid "Registration with Email Confirmation"
3822
  msgstr ""
3823
 
3824
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
3825
  msgid ""
3826
  "\n"
3827
  "<h3>Welcome to {{site_name}}!</h3>\n"
3830
  "You will be notified via email.</p>\n"
3831
  msgstr ""
3832
 
3833
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
3834
  msgid "A new account has been created for you on {{site_name}}"
3835
  msgstr ""
3836
 
3837
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
3838
  msgid ""
3839
  "\n"
3840
  "<h3>Good News!</h3>\n"
3842
  "{{site_name}}.</p>\n"
3843
  msgstr ""
3844
 
3845
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
3846
  msgid "Your account on {{site_name}} has been approved!"
3847
  msgstr ""
3848
 
3849
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
3850
  msgid "User Approval Notification"
3851
  msgstr ""
3852
 
3853
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
3854
  msgid ""
3855
  "\n"
3856
  "<h3>Hello,</h3>\n"
3858
  "{{username}} on {{site_name}}.</p>\n"
3859
  msgstr ""
3860
 
3861
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
3862
  msgid "Your account on {{site_name}} has been unapproved!"
3863
  msgstr ""
3864
 
3865
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
3866
  msgid "Unapproved User Notification"
3867
  msgstr ""
3868
 
3869
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
3870
  msgid ""
3871
  "\n"
3872
  "<p>Someone requested that the password be reset for the following account: "
3878
  "{{{reset_link}}}</p>\n"
3879
  msgstr ""
3880
 
3881
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
3882
  msgid "[{{site_name}}] Password Reset"
3883
  msgstr ""
3884
 
3885
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
3886
  msgid "Password Reset Email"
3887
  msgstr ""
3888
 
3889
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
3890
  msgid ""
3891
  "\n"
3892
  "<p>You have successfully reset your password to: {{password}}</p>\n"
3893
  msgstr ""
3894
 
3895
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
3896
  msgid "[{{site_name}}] Password Reset Successfully"
3897
  msgstr ""
3898
 
3899
+ #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
3900
  msgid "Password Reset Success Email"
3901
  msgstr ""
3902
 
3903
+ #: profile-builder-2.0/modules/modules.php:11
3904
+ #: profile-builder-2.0/modules/modules.php:55
3905
  msgid "Modules"
3906
  msgstr ""
3907
 
3908
+ #: profile-builder-2.0/modules/modules.php:56
3909
  msgid ""
3910
  "Here you can activate / deactivate available modules for Profile Builder."
3911
  msgstr ""
3912
 
3913
+ #: profile-builder-2.0/modules/modules.php:66
3914
  msgid "Name/Description"
3915
  msgstr ""
3916
 
3917
+ #: profile-builder-2.0/modules/modules.php:67
3918
  msgid "Status"
3919
  msgstr ""
3920
 
3921
+ #: profile-builder-2.0/modules/modules.php:74
3922
+ #: profile-builder-2.0/modules/modules.php:81
3923
+ #: profile-builder-2.0/modules/modules.php:88
3924
+ #: profile-builder-2.0/modules/modules.php:95
3925
+ #: profile-builder-2.0/modules/modules.php:102
3926
+ #: profile-builder-2.0/modules/modules.php:109
3927
  msgid "Active"
3928
  msgstr ""
3929
 
3930
+ #: profile-builder-2.0/modules/modules.php:75
3931
+ #: profile-builder-2.0/modules/modules.php:82
3932
+ #: profile-builder-2.0/modules/modules.php:89
3933
+ #: profile-builder-2.0/modules/modules.php:96
3934
+ #: profile-builder-2.0/modules/modules.php:103
3935
+ #: profile-builder-2.0/modules/modules.php:110
3936
  msgid "Inactive"
3937
  msgstr ""
3938
 
3939
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
3940
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
3941
  msgid "Edit-profile Form"
3942
  msgstr ""
3943
 
3944
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
3945
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
3946
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:13
3947
  msgid "Add New"
3948
  msgstr ""
3949
 
3950
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
3951
  msgid "Add new Edit-profile Form"
3952
  msgstr ""
3953
 
3954
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
3955
  msgid "Edit the Edit-profile Forms"
3956
  msgstr ""
3957
 
3958
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
3959
  msgid "New Edit-profile Form"
3960
  msgstr ""
3961
 
3962
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
3963
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
3964
  msgid "Edit-profile Forms"
3965
  msgstr ""
3966
 
3967
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
3968
  msgid "View the Edit-profile Form"
3969
  msgstr ""
3970
 
3971
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
3972
  msgid "Search the Edit-profile Forms"
3973
  msgstr ""
3974
 
3975
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
3976
  msgid "No Edit-profile Form found"
3977
  msgstr ""
3978
 
3979
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
3980
  msgid "No Edit-profile Forms found in trash"
3981
  msgstr ""
3982
 
3983
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:131
3984
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:134
3985
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1155
3986
  msgid "Shortcode"
3987
  msgstr ""
3988
 
3989
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:151
3990
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:155
3991
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1176
3992
  msgid "(no title)"
3993
  msgstr ""
3994
 
3995
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:171
3996
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:174
3997
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1196
3998
  msgid "The shortcode will be available after you publish this form."
3999
  msgstr ""
4000
 
4001
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:173
4002
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:176
4003
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1198
4004
  msgid "Use this shortcode on the page you want the form to be displayed:"
4005
  msgstr ""
4006
 
4007
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
4008
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
4009
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1202
4010
  msgid ""
4011
  "<span style=\"color:red;\">Note:</span> changing the form title also changes "
4012
  "the shortcode!"
4013
  msgstr ""
4014
 
4015
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:183
4016
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:186
4017
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1235
4018
  msgid "Form Shortcode"
4019
  msgstr ""
4020
 
4021
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:202
4022
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:226
4023
  msgid "Redirect"
4024
  msgstr ""
4025
 
4026
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:202
4027
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:226
4028
  msgid "Whether to redirect the user to a specific page or not"
4029
  msgstr ""
4030
 
4031
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:203
4032
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:227
4033
  msgid "Display Messages"
4034
  msgstr ""
4035
 
4036
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:203
4037
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:227
4038
  msgid "Allowed time to display any success messages (in seconds)"
4039
  msgstr ""
4040
 
4041
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:204
4042
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
4043
  msgid "URL"
4044
  msgstr ""
4045
 
4046
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:204
4047
  msgid ""
4048
  "Specify the URL of the page users will be redirected once they updated their "
4049
  "profile using this form<br/>Use the following format: http://www.mysite.com"
4050
  msgstr ""
4051
 
4052
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:211
4053
  msgid "After Profile Update..."
4054
  msgstr ""
4055
 
4056
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:237
4057
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:258
4058
  msgid "Add New Field to the List"
4059
  msgstr ""
4060
 
4061
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
4062
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
4063
  msgid "Choose one of the supported fields you manage <a href=\""
4064
  msgstr ""
4065
 
4066
+ #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:270
4067
  msgid "This form is empty."
4068
  msgstr ""
4069
 
4070
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:215
4071
  msgid "You need to specify the title of the form before creating it"
4072
  msgstr ""
4073
 
4074
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:399
4075
  msgid "<pre>Title (Type)</pre>"
4076
  msgstr ""
4077
 
4078
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:399
4079
  msgid "Delete all items"
4080
  msgstr ""
4081
 
4082
+ #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:399
4083
  msgid "Delete all"
4084
  msgstr ""
4085
 
4086
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
4087
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
4088
  msgid "Registration Form"
4089
  msgstr ""
4090
 
4091
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
4092
  msgid "Add new Registration Form"
4093
  msgstr ""
4094
 
4095
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
4096
  msgid "Edit the Registration Forms"
4097
  msgstr ""
4098
 
4099
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
4100
  msgid "New Registration Form"
4101
  msgstr ""
4102
 
4103
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
4104
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
4105
  msgid "Registration Forms"
4106
  msgstr ""
4107
 
4108
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
4109
  msgid "View the Registration Form"
4110
  msgstr ""
4111
 
4112
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
4113
  msgid "Search the Registration Forms"
4114
  msgstr ""
4115
 
4116
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
4117
  msgid "No Registration Form found"
4118
  msgstr ""
4119
 
4120
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
4121
  msgid "No Registration Forms found in trash"
4122
  msgstr ""
4123
 
4124
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:215
4125
  msgid "Default Role"
4126
  msgstr ""
4127
 
4128
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:224
4129
  msgid "Set Role"
4130
  msgstr ""
4131
 
4132
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:224
4133
  msgid ""
4134
  "Choose what role the user will have after (s)he registered<br/>If not "
4135
  "specified, defaults to the role set in the WordPress settings"
4136
  msgstr ""
4137
 
4138
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:225
4139
  msgid "Automatically Log In"
4140
  msgstr ""
4141
 
4142
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:225
4143
  msgid ""
4144
  "Whether to automatically log in the newly registered user or not<br/>Only "
4145
  "works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
4147
  "automatic login not work"
4148
  msgstr ""
4149
 
4150
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:226
4151
  msgid "Choose..."
4152
  msgstr ""
4153
 
4154
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
4155
  msgid ""
4156
  "Specify the URL of the page users will be redirected once registered using "
4157
  "this form<br/>Use the following format: http://www.mysite.com"
4158
  msgstr ""
4159
 
4160
+ #: profile-builder-2.0/modules/multiple-forms/register-forms.php:234
4161
  msgid "After Registration..."
4162
  msgstr ""
4163
 
4164
+ #: profile-builder-2.0/modules/user-listing/class-userlisting.php:470
4165
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:724
4166
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:968
4167
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1011
4168
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1356
4169
  msgid "Search Users by All Fields"
4170
  msgstr ""
4171
 
4172
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:14
4173
  msgid "Add new User Listing"
4174
  msgstr ""
4175
 
4176
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:15
4177
  msgid "Edit the User Listing"
4178
  msgstr ""
4179
 
4180
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:16
4181
  msgid "New User Listing"
4182
  msgstr ""
4183
 
4184
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:18
4185
  msgid "View the User Listing"
4186
  msgstr ""
4187
 
4188
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:19
4189
  msgid "Search the User Listing"
4190
  msgstr ""
4191
 
4192
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:20
4193
  msgid "No User Listing found"
4194
  msgstr ""
4195
 
4196
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:21
4197
  msgid "No User Listing found in trash"
4198
  msgstr ""
4199
 
4200
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:95
4201
  msgid "Display name as"
4202
  msgstr ""
4203
 
4204
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:125
4205
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1263
4206
  msgid "Registration Date"
4207
  msgstr ""
4208
 
4209
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:126
4210
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1268
4211
  msgid "Number of Posts"
4212
  msgstr ""
4213
 
4214
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:130
4215
  msgid "More Info"
4216
  msgstr ""
4217
 
4218
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:131
4219
  msgid "More Info Url"
4220
  msgstr ""
4221
 
4222
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:132
4223
  msgid "Avatar or Gravatar"
4224
  msgstr ""
4225
 
4226
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:134
4227
  msgid "User Nicename"
4228
  msgstr ""
4229
 
4230
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:161
4231
  msgid "Meta Variables"
4232
  msgstr ""
4233
 
4234
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:167
4235
  msgid "Sort Variables"
4236
  msgstr ""
4237
 
4238
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:171
4239
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:198
4240
  msgid "Extra Functions"
4241
  msgstr ""
4242
 
4243
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:173
4244
  msgid "Pagination"
4245
  msgstr ""
4246
 
4247
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:174
4248
  msgid "Search all Fields"
4249
  msgstr ""
4250
 
4251
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:200
4252
  msgid "Go Back Link"
4253
  msgstr ""
4254
 
4255
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:218
4256
  msgid "All-userlisting Template"
4257
  msgstr ""
4258
 
4259
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:221
4260
  msgid "Single-userlisting Template"
4261
  msgstr ""
4262
 
4263
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:247
4264
  msgid "Avatar"
4265
  msgstr ""
4266
 
4267
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:251
4268
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:638
4269
  msgid "Posts"
4270
  msgstr ""
4271
 
4272
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:252
4273
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:620
4274
  msgid "Sign-up Date"
4275
  msgstr ""
4276
 
4277
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:253
4278
  msgid "More"
4279
  msgstr ""
4280
 
4281
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:338
4282
  msgid "You do not have permission to view this user list."
4283
  msgstr ""
4284
 
4285
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:351
4286
  msgid "You do not have the required user role to view this user list."
4287
  msgstr ""
4288
 
4289
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:364
4290
  msgid "User not found"
4291
  msgstr ""
4292
 
4293
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:614
 
 
 
 
4294
  msgid "First/Lastname"
4295
  msgstr ""
4296
 
4297
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:629
4298
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1266
4299
  msgid "Display Name"
4300
  msgstr ""
4301
 
4302
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:641
4303
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1273
4304
  msgid "Aim"
4305
  msgstr ""
4306
 
4307
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:644
4308
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1274
4309
  msgid "Yim"
4310
  msgstr ""
4311
 
4312
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:647
4313
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1275
4314
  msgid "Jabber"
4315
  msgstr ""
4316
 
4317
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:827
4318
  msgid "Click here to see more information about this user"
4319
  msgstr ""
4320
 
4321
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:827
4322
  msgid "More..."
4323
  msgstr ""
4324
 
4325
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:830
4326
  msgid "Click here to see more information about this user."
4327
  msgstr ""
4328
 
4329
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:922
4330
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:925
4331
  msgid "Click here to go back"
4332
  msgstr ""
4333
 
4334
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:922
4335
  msgid "Back"
4336
  msgstr ""
4337
 
4338
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:955
4339
  msgid "&laquo;&laquo; First"
4340
  msgstr ""
4341
 
4342
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:956
4343
  msgid "&laquo; Prev"
4344
  msgstr ""
4345
 
4346
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:957
4347
  msgid "Next &raquo; "
4348
  msgstr ""
4349
 
4350
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:958
4351
  msgid "Last &raquo;&raquo;"
4352
  msgstr ""
4353
 
4354
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:987
4355
  msgid "You don't have any pagination settings on this userlisting!"
4356
  msgstr ""
4357
 
4358
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1028
4359
  msgid "Search"
4360
  msgstr ""
4361
 
4362
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1029
4363
  msgid "Clear Results"
4364
  msgstr ""
4365
 
4366
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1205
4367
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1209
4368
  msgid "Extra shortcode parameters"
4369
  msgstr ""
4370
 
4371
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1207
4372
  msgid "View all extra shortcode parameters"
4373
  msgstr ""
4374
 
4375
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1212
4376
  msgid ""
4377
  "displays users having a certain meta-value within a certain (extra) meta-"
4378
  "field"
4379
  msgstr ""
4380
 
4381
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1213
4382
  msgid "Example:"
4383
  msgstr ""
4384
 
4385
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1215
4386
  msgid ""
4387
  "Remember though, that the field-value combination must exist in the database."
4388
  msgstr ""
4389
 
4390
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1221
4391
  msgid "displays only the users that you specified the user_id for"
4392
  msgstr ""
4393
 
4394
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1227
4395
  msgid "displays all users except the ones you specified the user_id for"
4396
  msgstr ""
4397
 
4398
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1285
4399
  msgid "Random (very slow on large databases > 10K user)"
4400
  msgstr ""
4401
 
4402
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1288
4403
  msgid "Ascending"
4404
  msgstr ""
4405
 
4406
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1289
4407
  msgid "Descending"
4408
  msgstr ""
4409
 
4410
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1298
4411
  msgid "Roles to Display"
4412
  msgstr ""
4413
 
4414
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1298
4415
  msgid ""
4416
  "Restrict the userlisting to these selected roles only<br/>If not specified, "
4417
  "defaults to all existing roles"
4418
  msgstr ""
4419
 
4420
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1299
4421
  msgid "Number of Users/Page"
4422
  msgstr ""
4423
 
4424
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1299
4425
  msgid ""
4426
  "Set the number of users to be displayed on every paginated part of the all-"
4427
  "userlisting"
4428
  msgstr ""
4429
 
4430
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1300
4431
  msgid "Default Sorting Criteria"
4432
  msgstr ""
4433
 
4434
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1300
4435
  msgid ""
4436
  "Set the default sorting criteria<br/>This can temporarily be changed for "
4437
  "each new session"
4438
  msgstr ""
4439
 
4440
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1301
4441
  msgid "Default Sorting Order"
4442
  msgstr ""
4443
 
4444
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1301
4445
  msgid ""
4446
  "Set the default sorting order<br/>This can temporarily be changed for each "
4447
  "new session"
4448
  msgstr ""
4449
 
4450
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1302
4451
  msgid "Avatar Size (All-userlisting)"
4452
  msgstr ""
4453
 
4454
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1302
4455
  msgid "Set the avatar size on the all-userlisting only"
4456
  msgstr ""
4457
 
4458
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1303
4459
  msgid "Avatar Size (Single-userlisting)"
4460
  msgstr ""
4461
 
4462
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1303
4463
  msgid "Set the avatar size on the single-userlisting only"
4464
  msgstr ""
4465
 
4466
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1304
4467
  msgid "Visible only to logged in users?"
4468
  msgstr ""
4469
 
4470
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1304
4471
  msgid "The userlisting will only be visible only to the logged in users"
4472
  msgstr ""
4473
 
4474
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1305
4475
  msgid "Visible to following Roles"
4476
  msgstr ""
4477
 
4478
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1305
4479
  msgid "The userlisting will only be visible to the following roles"
4480
  msgstr ""
4481
 
4482
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1311
4483
  msgid "Userlisting Settings"
4484
  msgstr ""
4485
 
4486
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1332
4487
  msgid ""
4488
  "You need to activate the Userlisting feature from within the \"Modules\" tab!"
4489
  msgstr ""
4490
 
4491
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1332
4492
  msgid "You can find it in the Profile Builder menu."
4493
  msgstr ""
4494
 
4495
+ #: profile-builder-2.0/modules/user-listing/userlisting.php:1495
4496
  msgid "No results found!"
4497
  msgstr ""