User registration & user profile – Profile Builder - Version 2.7.2

Version Description

  • Updated translation file.
  • Fixed issue with login token generating duplicated ID validation error
Download this release

Release Info

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

Code changes from version 2.7.1 to 2.7.2

features/functions.php CHANGED
@@ -1041,5 +1041,5 @@ function wppb_get_role_name($role){
1041
  if ( array_key_exists( $role, $wp_roles->role_names ) )
1042
  return $wp_roles->role_names[$role];
1043
 
1044
- return '';
1045
  }
1041
  if ( array_key_exists( $role, $wp_roles->role_names ) )
1042
  return $wp_roles->role_names[$role];
1043
 
1044
+ return $role;
1045
  }
front-end/login.php CHANGED
@@ -15,7 +15,7 @@ function wppb_login_form_bottom( $form_part, $args ){
15
  $form_part .= '<input type="hidden" name="wppb_lostpassword_url" value="'.esc_url( $args['lostpassword_url'] ).'"/>';
16
  $form_part .= '<input type="hidden" name="wppb_redirect_priority" value="'. esc_attr( isset( $args['redirect_priority'] ) ? $args['redirect_priority'] : '' ) .'"/>';
17
  $form_part .= '<input type="hidden" name="wppb_referer_url" value="'.esc_url( isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '' ).'"/>';
18
- $form_part .= wp_nonce_field( 'wppb_login', 'CSRFToken' );
19
  }
20
 
21
  $form_part .= '<input type="hidden" name="wppb_redirect_check" value="true"/>';
15
  $form_part .= '<input type="hidden" name="wppb_lostpassword_url" value="'.esc_url( $args['lostpassword_url'] ).'"/>';
16
  $form_part .= '<input type="hidden" name="wppb_redirect_priority" value="'. esc_attr( isset( $args['redirect_priority'] ) ? $args['redirect_priority'] : '' ) .'"/>';
17
  $form_part .= '<input type="hidden" name="wppb_referer_url" value="'.esc_url( isset( $_SERVER['HTTP_REFERER'] ) ? $_SERVER['HTTP_REFERER'] : '' ).'"/>';
18
+ $form_part .= wp_nonce_field( 'wppb_login', 'CSRFToken', true, false );
19
  }
20
 
21
  $form_part .= '<input type="hidden" name="wppb_redirect_check" value="true"/>';
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: https://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.7.1
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
@@ -73,7 +73,7 @@ function wppb_free_plugin_init() {
73
  *
74
  *
75
  */
76
- define('PROFILE_BUILDER_VERSION', '2.7.1' );
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: https://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.7.2
7
  Author: Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova
8
  Author URI: https://www.cozmoslabs.com/
9
  License: GPL2
73
  *
74
  *
75
  */
76
+ define('PROFILE_BUILDER_VERSION', '2.7.2' );
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
@@ -3,8 +3,8 @@ Contributors: cozmoslabs, reflectionmedia, sareiodata, adispiac, madalin.ungurea
3
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
- Tested up to: 4.9.0
7
- Stable tag: 2.7.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -163,6 +163,10 @@ This plugin adds/removes user fields in the front-end. Both default and extra pr
163
  12. Role Editor
164
 
165
  == Changelog ==
 
 
 
 
166
  = 2.7.1 =
167
  * Fixed an issue with the Biographical Info field that was showing html tags
168
  * Fixed Content Restriction preview post before more-tag issue
3
  Donate link: http://www.cozmoslabs.com/wordpress-profile-builder/
4
  Tags: user registration, user profile, user registration form, user fields, extra user fields, edit profile, user custom fields, front-end login, front-end edit profile, front-end user registration, email confirmation, login form, content restriction, restrict content
5
  Requires at least: 3.1
6
+ Tested up to: 4.9.1
7
+ Stable tag: 2.7.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
163
  12. Role Editor
164
 
165
  == Changelog ==
166
+ = 2.7.2 =
167
+ * Updated translation file.
168
+ * Fixed issue with login token generating duplicated ID validation error
169
+
170
  = 2.7.1 =
171
  * Fixed an issue with the Biographical Info field that was showing html tags
172
  * Fixed Content Restriction preview post before more-tag issue
translation/profile-builder.pot CHANGED
@@ -1,917 +1,630 @@
1
- #, fuzzy
 
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: profile-builder\n"
5
- "POT-Creation-Date: 2017-08-01 16:37+0300\n"
6
- "PO-Revision-Date: 2015-04-30 10:26+0200\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Cozmoslabs\n"
9
- "Language: en\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Generator: Poedit 2.0.1\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:5
22
- #: pb-add-on-woocommerce/shipping-fields.php:5
23
- msgid "Country"
24
- msgstr ""
25
-
26
- #: pb-add-on-woocommerce/billing-fields.php:6
27
- #: pb-add-on-woocommerce/shipping-fields.php:6
28
- #: profile-builder-2.0/admin/manage-fields.php:202
29
- msgid "First Name"
30
- msgstr ""
31
-
32
- #: pb-add-on-woocommerce/billing-fields.php:7
33
- #: pb-add-on-woocommerce/shipping-fields.php:7
34
- #: profile-builder-2.0/admin/manage-fields.php:203
35
- msgid "Last Name"
36
- msgstr ""
37
-
38
- #: pb-add-on-woocommerce/billing-fields.php:8
39
- #: pb-add-on-woocommerce/shipping-fields.php:8
40
- msgid "Company Name"
41
- msgstr ""
42
-
43
- #: pb-add-on-woocommerce/billing-fields.php:9
44
- #: pb-add-on-woocommerce/shipping-fields.php:9
45
- msgid "Address"
46
- msgstr ""
47
-
48
- #: pb-add-on-woocommerce/billing-fields.php:11
49
- #: pb-add-on-woocommerce/shipping-fields.php:11
50
- msgid "Town / City"
51
- msgstr ""
52
-
53
- #: pb-add-on-woocommerce/billing-fields.php:12
54
- #: pb-add-on-woocommerce/shipping-fields.php:12
55
- msgid "State / County"
56
- msgstr ""
57
-
58
- #: pb-add-on-woocommerce/billing-fields.php:13
59
- #: pb-add-on-woocommerce/shipping-fields.php:13
60
- msgid "Postcode / Zip"
61
- msgstr ""
62
-
63
- #: pb-add-on-woocommerce/billing-fields.php:14
64
- msgid "Email Address"
65
- msgstr ""
66
-
67
- #: pb-add-on-woocommerce/billing-fields.php:15
68
- msgid "Phone"
69
- msgstr ""
70
-
71
- #: pb-add-on-woocommerce/billing-fields.php:278
72
- msgid "Ship to a different address?"
73
- msgstr ""
74
-
75
- #: pb-add-on-woocommerce/index.php:169 pb-add-on-woocommerce/index.php:437
76
- msgid "Billing Address"
77
- msgstr ""
78
-
79
- #: pb-add-on-woocommerce/index.php:169
80
- msgid "Displays customer billing fields in front-end. "
81
- msgstr ""
82
-
83
- #: pb-add-on-woocommerce/index.php:173 pb-add-on-woocommerce/index.php:438
84
- msgid "Shipping Address"
85
- msgstr ""
86
-
87
- #: pb-add-on-woocommerce/index.php:173
88
- msgid "Displays customer shipping fields in front-end. "
89
- msgstr ""
90
-
91
- #: pb-add-on-woocommerce/index.php:248 pb-add-on-woocommerce/index.php:267
92
- #: pb-add-on-woocommerce/index.php:364 pb-add-on-woocommerce/index.php:367
93
- #: pb-add-on-woocommerce/index.php:493
94
- msgid "Address line 2"
95
- msgstr ""
96
-
97
- #: pb-add-on-woocommerce/index.php:256
98
- msgid "Billing Fields"
99
- msgstr ""
100
-
101
- #: pb-add-on-woocommerce/index.php:256
102
- msgid ""
103
- "Select which WooCommerce Billing fields to display to the user ( drag and "
104
- "drop to re-order ) and which should be required"
105
- msgstr ""
106
-
107
- #: pb-add-on-woocommerce/index.php:257
108
- msgid "Billing Fields Order"
109
- msgstr ""
110
-
111
- #: pb-add-on-woocommerce/index.php:257
112
- msgid "Save the billing fields order from the billing fields checkboxes"
113
- msgstr ""
114
-
115
- #: pb-add-on-woocommerce/index.php:258
116
- msgid "Billing Fields Name"
117
- msgstr ""
118
-
119
- #: pb-add-on-woocommerce/index.php:258
120
- msgid "Save the billing fields names"
121
- msgstr ""
122
-
123
- #: pb-add-on-woocommerce/index.php:275
124
- msgid "Shipping Fields"
125
- msgstr ""
126
-
127
- #: pb-add-on-woocommerce/index.php:275
128
- msgid ""
129
- "Select which WooCommerce Shipping fields to display to the user ( drag and "
130
- "drop to re-order ) and which should be required"
131
- msgstr ""
132
-
133
- #: pb-add-on-woocommerce/index.php:276
134
- msgid "Shipping Fields Order"
135
- msgstr ""
136
-
137
- #: pb-add-on-woocommerce/index.php:276
138
- msgid "Save the shipping fields order from the billing fields checkboxes"
139
- msgstr ""
140
-
141
- #: pb-add-on-woocommerce/index.php:277
142
- msgid "Shipping Fields Name"
143
- msgstr ""
144
-
145
- #: pb-add-on-woocommerce/index.php:277
146
- msgid "Save the shipping fields names"
147
- msgstr ""
148
-
149
- #: pb-add-on-woocommerce/index.php:305
150
- msgid "Field Name"
151
- msgstr ""
152
-
153
- #: pb-add-on-woocommerce/index.php:306
154
- #: profile-builder-2.0/admin/manage-fields.php:160
155
- msgid "Required"
156
- msgstr ""
157
-
158
- #: pb-add-on-woocommerce/index.php:369
159
- msgid "Click to edit "
160
- msgstr ""
161
 
162
- #: pb-add-on-woocommerce/index.php:393
163
- #: profile-builder-2.0/front-end/default-fields/email/email.php:47
164
- msgid "The email you entered is not a valid email address."
165
- msgstr ""
166
-
167
- #: pb-add-on-woocommerce/index.php:541
168
- msgid ""
169
- "WooCommerce needs to be installed and activated for Profile Builder - "
170
- "WooCommerce Sync Add-on to work!"
171
- msgstr ""
172
-
173
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:25
174
- #: profile-builder-2.0/admin/basic-info.php:36
175
- #: profile-builder-2.0/features/login-widget/login-widget.php:59
176
- msgid "Login"
177
  msgstr ""
178
 
179
- #: pb-add-on-woocommerce/templates/myaccount-login-register.php:36
180
- #: profile-builder-2.0/front-end/class-formbuilder.php:415
181
- #: profile-builder-2.0/front-end/login.php:250
182
- msgid "Register"
183
  msgstr ""
184
 
185
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
186
- msgid "Display on WooCommerce Checkout"
187
  msgstr ""
188
 
189
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:96
190
  msgid ""
191
- "Whether the field should be added to the WooCommerce checkout form or not"
192
- msgstr ""
193
-
194
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:252
195
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:43
196
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:112
197
- msgid "Remove"
198
- msgstr ""
199
-
200
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:262
201
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:122
202
- msgid "Select File"
203
  msgstr ""
204
 
205
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:268
206
- #: profile-builder-2.0/assets/lib/wck-api/fields/upload.php:75
207
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:128
208
- msgid "Upload "
209
- msgstr ""
210
-
211
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:368
212
- msgid "is not a valid phone number."
213
- msgstr ""
214
-
215
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:377
216
- msgid "is not a number."
217
- msgstr ""
218
-
219
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:382
220
- msgid "must be a multiplier of "
221
  msgstr ""
222
 
223
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:387
224
- msgid "must be a greater than or equal to "
 
 
225
  msgstr ""
226
 
227
- #: pb-add-on-woocommerce/woo-checkout-field-support.php:392
228
- msgid "must be less than or equal to "
 
 
229
  msgstr ""
230
 
231
- #: pb-add-on-woocommerce/woosync-page.php:23
232
- #: pb-add-on-woocommerce/woosync-page.php:70
233
- msgid "WooCommerce Sync"
234
  msgstr ""
235
 
236
- #: pb-add-on-woocommerce/woosync-page.php:76
237
- msgid "Choose Register form to display on My Account page:"
 
238
  msgstr ""
239
 
240
- #: pb-add-on-woocommerce/woosync-page.php:80
241
- #: pb-add-on-woocommerce/woosync-page.php:114
242
- #: profile-builder-2.0/modules/user-listing/userlisting.php:499
243
- msgid "None"
244
  msgstr ""
245
 
246
- #: pb-add-on-woocommerce/woosync-page.php:81
247
- msgid "Default Register"
 
248
  msgstr ""
249
 
250
- #: pb-add-on-woocommerce/woosync-page.php:103
 
251
  msgid ""
252
- "Select which Profile Builder Register form to display on My Account page "
253
- "from WooCommerce. <br/> This will also add the Profile Builder Login form to "
254
- "MyAccount page."
255
- msgstr ""
256
-
257
- #: pb-add-on-woocommerce/woosync-page.php:110
258
- msgid "Choose Edit Profile form to display on My Account page:"
259
- msgstr ""
260
-
261
- #: pb-add-on-woocommerce/woosync-page.php:115
262
- msgid "Default Edit Profile"
263
  msgstr ""
264
 
265
- #: pb-add-on-woocommerce/woosync-page.php:137
266
  msgid ""
267
- "Select which Profile Builder Edit-profile form to display on My Account page "
268
- "from WooCommerce."
269
- msgstr ""
270
-
271
- #: pb-add-on-woocommerce/woosync-page.php:147
272
- #: profile-builder-2.0/admin/admin-bar.php:86
273
- #: profile-builder-2.0/admin/general-settings.php:224
274
- #: profile-builder-2.0/admin/register-version.php:95
275
- #: profile-builder-2.0/features/functions.php:697
276
- #: profile-builder-2.0/modules/modules.php:127
277
- msgid "Save Changes"
278
- msgstr ""
279
-
280
- #: profile-builder-2.0/admin/add-ons.php:10
281
- #: profile-builder-2.0/admin/add-ons.php:32
282
- msgid "Add-Ons"
283
- msgstr ""
284
-
285
- #: profile-builder-2.0/admin/add-ons.php:34
286
- #: profile-builder-2.0/admin/add-ons.php:129
287
- #: profile-builder-2.0/admin/add-ons.php:231
288
- #: profile-builder-2.0/admin/pms-cross-promotion.php:78
289
- #: profile-builder-2.0/admin/pms-cross-promotion.php:114
290
- #: profile-builder-2.0/admin/pms-cross-promotion.php:193
291
- msgid "Activate"
292
  msgstr ""
293
 
294
- #: profile-builder-2.0/admin/add-ons.php:36
295
- #: profile-builder-2.0/admin/pms-cross-promotion.php:80
296
  msgid "Downloading and installing..."
297
  msgstr ""
298
 
299
- #: profile-builder-2.0/admin/add-ons.php:37
300
- #: profile-builder-2.0/admin/pms-cross-promotion.php:81
301
  msgid "Installation complete"
302
  msgstr ""
303
 
304
- #: profile-builder-2.0/admin/add-ons.php:39
305
  msgid "Add-On is Active"
306
  msgstr ""
307
 
308
- #: profile-builder-2.0/admin/add-ons.php:40
309
  msgid "Add-On has been activated"
310
  msgstr ""
311
 
312
- #: profile-builder-2.0/admin/add-ons.php:41
313
- #: profile-builder-2.0/admin/pms-cross-promotion.php:85
314
  msgid "Retry Install"
315
  msgstr ""
316
 
317
- #: profile-builder-2.0/admin/add-ons.php:43
318
- #: profile-builder-2.0/admin/add-ons.php:140
319
  msgid "Add-On is <strong>active</strong>"
320
  msgstr ""
321
 
322
- #: profile-builder-2.0/admin/add-ons.php:44
323
- #: profile-builder-2.0/admin/add-ons.php:138
324
  msgid "Add-On is <strong>inactive</strong>"
325
  msgstr ""
326
 
327
- #: profile-builder-2.0/admin/add-ons.php:46
328
- #: profile-builder-2.0/admin/add-ons.php:133
329
- #: profile-builder-2.0/admin/add-ons.php:235
330
- #: profile-builder-2.0/admin/pms-cross-promotion.php:90
331
- #: profile-builder-2.0/admin/pms-cross-promotion.php:118
332
- #: profile-builder-2.0/admin/pms-cross-promotion.php:197
333
- msgid "Deactivate"
334
- msgstr ""
335
-
336
- #: profile-builder-2.0/admin/add-ons.php:47
337
  msgid "Add-On has been deactivated."
338
  msgstr ""
339
 
340
- #: profile-builder-2.0/admin/add-ons.php:59
341
  msgid ""
342
  "Something went wrong, we could not connect to the server. Please try again "
343
  "later."
344
  msgstr ""
345
 
346
- #: profile-builder-2.0/admin/add-ons.php:103
347
  msgid "Available in Hobbyist and Pro Versions"
348
  msgstr ""
349
 
350
- #: profile-builder-2.0/admin/add-ons.php:105
351
  msgid "Available in All Versions"
352
  msgstr ""
353
 
354
- #: profile-builder-2.0/admin/add-ons.php:148
355
  msgid "Learn More"
356
  msgstr ""
357
 
358
- #: profile-builder-2.0/admin/add-ons.php:148
359
- #: profile-builder-2.0/admin/add-ons.php:248
360
- #: profile-builder-2.0/admin/pms-cross-promotion.php:134
361
- #: profile-builder-2.0/admin/pms-cross-promotion.php:213
362
  msgid "Download Now"
363
  msgstr ""
364
 
365
- #: profile-builder-2.0/admin/add-ons.php:153
366
- #: profile-builder-2.0/admin/add-ons.php:251
367
- #: profile-builder-2.0/admin/pms-cross-promotion.php:141
368
- #: profile-builder-2.0/admin/pms-cross-promotion.php:220
369
- msgid "Compatible with your version of Profile Builder."
370
- msgstr ""
371
-
372
- #: profile-builder-2.0/admin/add-ons.php:162
373
  msgid "Upgrade Profile Builder"
374
  msgstr ""
375
 
376
- #: profile-builder-2.0/admin/add-ons.php:163
377
  msgid "Not compatible with Profile Builder"
378
  msgstr ""
379
 
380
- #: profile-builder-2.0/admin/add-ons.php:170
381
- #: profile-builder-2.0/front-end/class-formbuilder.php:418
382
  msgid "Update"
383
  msgstr ""
384
 
385
- #: profile-builder-2.0/admin/add-ons.php:171
386
  msgid "Not compatible with your version of Profile Builder."
387
  msgstr ""
388
 
389
- #: profile-builder-2.0/admin/add-ons.php:172
390
  msgid "Minimum required Profile Builder version:"
391
  msgstr ""
392
 
393
- #: profile-builder-2.0/admin/add-ons.php:177
394
- #, php-format
395
  msgid ""
396
  "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
397
  "manually</a>."
398
  msgstr ""
399
 
400
- #: profile-builder-2.0/admin/add-ons.php:190
401
- msgid "Recommended Plugins"
402
- msgstr ""
403
-
404
- #: profile-builder-2.0/admin/add-ons.php:219
405
- #: profile-builder-2.0/admin/pms-cross-promotion.php:102
406
- msgid "Free"
407
- msgstr ""
408
-
409
- #: profile-builder-2.0/admin/add-ons.php:221
410
- msgid ""
411
- "Accept user payments, create subscription plans and restrict content on your "
412
- "membership site."
413
- msgstr ""
414
-
415
- #: profile-builder-2.0/admin/add-ons.php:222
416
- #: profile-builder-2.0/admin/pms-cross-promotion.php:105
417
- msgid "More Details"
418
- msgstr ""
419
-
420
- #: profile-builder-2.0/admin/add-ons.php:240
421
- #: profile-builder-2.0/admin/pms-cross-promotion.php:88
422
- #: profile-builder-2.0/admin/pms-cross-promotion.php:123
423
- #: profile-builder-2.0/admin/pms-cross-promotion.php:202
424
- msgid "Plugin is <strong>inactive</strong>"
425
- msgstr ""
426
-
427
- #: profile-builder-2.0/admin/add-ons.php:242
428
- #: profile-builder-2.0/admin/pms-cross-promotion.php:87
429
- #: profile-builder-2.0/admin/pms-cross-promotion.php:125
430
- #: profile-builder-2.0/admin/pms-cross-promotion.php:204
431
- msgid "Plugin is <strong>active</strong>"
432
- msgstr ""
433
-
434
- #: profile-builder-2.0/admin/add-ons.php:256
435
- #: profile-builder-2.0/admin/pms-cross-promotion.php:146
436
- #, php-format
437
- msgid ""
438
- "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install "
439
- "manually</a>."
440
- msgstr ""
441
-
442
- #: profile-builder-2.0/admin/admin-bar.php:10
443
  msgid "Show/Hide the Admin Bar on the Front-End"
444
  msgstr ""
445
 
446
- #: profile-builder-2.0/admin/admin-bar.php:10
447
- #: profile-builder-2.0/admin/admin-bar.php:47
448
  msgid "Admin Bar Settings"
449
  msgstr ""
450
 
451
- #: profile-builder-2.0/admin/admin-bar.php:48
452
  msgid ""
453
  "Choose which user roles view the admin bar in the front-end of the website."
454
  msgstr ""
455
 
456
- #: profile-builder-2.0/admin/admin-bar.php:57
457
  msgid "User-Role"
458
  msgstr ""
459
 
460
- #: profile-builder-2.0/admin/admin-bar.php:58
461
  msgid "Visibility"
462
  msgstr ""
463
 
464
- #: profile-builder-2.0/admin/admin-bar.php:73
465
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
466
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
467
  msgid "Default"
468
  msgstr ""
469
 
470
- #: profile-builder-2.0/admin/admin-bar.php:74
471
  msgid "Show"
472
  msgstr ""
473
 
474
- #: profile-builder-2.0/admin/admin-bar.php:75
475
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1554
476
  msgid "Hide"
477
  msgstr ""
478
 
479
- #: profile-builder-2.0/admin/admin-functions.php:37
480
- #, php-format
 
 
 
 
 
481
  msgid ""
482
  "Login is set to be done using the E-mail. This field will NOT appear in the "
483
  "front-end! ( you can change these settings under the \"%s\" tab )"
484
  msgstr ""
485
 
486
- #: profile-builder-2.0/admin/admin-functions.php:37
487
- #: profile-builder-2.0/admin/general-settings.php:10
488
- #: profile-builder-2.0/admin/general-settings.php:35
489
  msgid "General Settings"
490
  msgstr ""
491
 
492
- #: profile-builder-2.0/admin/admin-functions.php:41
493
  msgid "Display name publicly as - only appears on the Edit Profile page!"
494
  msgstr ""
495
 
496
- #: profile-builder-2.0/admin/admin-functions.php:44
497
  msgid "Blog Details - only appears on the Registration page!"
498
  msgstr ""
499
 
500
- #: profile-builder-2.0/admin/admin-functions.php:132
501
- #, php-format
502
  msgid ""
503
  "<strong>ERROR</strong>: The password must have the minimum length of %s "
504
  "characters"
505
  msgstr ""
506
 
507
- #: profile-builder-2.0/admin/admin-functions.php:137
508
- #: profile-builder-2.0/admin/general-settings.php:210
509
  msgid "Very weak"
510
  msgstr ""
511
 
512
- #: profile-builder-2.0/admin/admin-functions.php:137
513
- #: profile-builder-2.0/admin/general-settings.php:211
514
- #: profile-builder-2.0/features/functions.php:552
515
  msgid "Weak"
516
  msgstr ""
517
 
518
- #: profile-builder-2.0/admin/admin-functions.php:137
519
- #: profile-builder-2.0/admin/general-settings.php:212
520
- #: profile-builder-2.0/features/functions.php:552
521
  msgid "Medium"
522
  msgstr ""
523
 
524
- #: profile-builder-2.0/admin/admin-functions.php:137
525
- #: profile-builder-2.0/admin/general-settings.php:213
526
- #: profile-builder-2.0/features/functions.php:552
527
  msgid "Strong"
528
  msgstr ""
529
 
530
- #: profile-builder-2.0/admin/admin-functions.php:148
531
- #, php-format
532
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
533
  msgstr ""
534
 
535
- #: profile-builder-2.0/admin/admin-functions.php:187
536
  msgid "Add Field"
537
  msgstr ""
538
 
539
- #: profile-builder-2.0/admin/admin-functions.php:189
540
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:390
 
541
  msgid "Save Settings"
542
  msgstr ""
543
 
544
- #: profile-builder-2.0/admin/admin-functions.php:200
545
- #, php-format
546
  msgid ""
547
  "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target="
548
  "\"_blank\">rate us on WordPress.org</a>. More happy users means more "
549
  "features, less bugs and better support for everyone. "
550
  msgstr ""
551
 
552
- #: profile-builder-2.0/admin/basic-info.php:10
553
  msgid "Basic Information"
554
  msgstr ""
555
 
556
- #: profile-builder-2.0/admin/basic-info.php:29
557
- #, php-format
558
  msgid "Version %s"
559
  msgstr ""
560
 
561
- #: profile-builder-2.0/admin/basic-info.php:30
562
- msgid "<strong>Profile Builder </strong>"
563
- msgstr ""
564
-
565
- #: profile-builder-2.0/admin/basic-info.php:31
566
  msgid ""
567
  "The best way to add front-end registration, edit profile and login forms."
568
  msgstr ""
569
 
570
- #: profile-builder-2.0/admin/basic-info.php:33
571
  msgid "For Modern User Interaction"
572
  msgstr ""
573
 
574
- #: profile-builder-2.0/admin/basic-info.php:37
575
- #, php-format
 
 
 
576
  msgid "Friction-less login using %s shortcode or a widget."
577
  msgstr ""
578
 
579
- #: profile-builder-2.0/admin/basic-info.php:40
580
  msgid "Registration"
581
  msgstr ""
582
 
583
- #: profile-builder-2.0/admin/basic-info.php:41
584
- #, php-format
585
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
586
  msgstr ""
587
 
588
- #: profile-builder-2.0/admin/basic-info.php:44
589
  msgid "Edit Profile"
590
  msgstr ""
591
 
592
- #: profile-builder-2.0/admin/basic-info.php:45
593
- #, php-format
594
  msgid "Straight forward edit profile forms using %s shortcode."
595
  msgstr ""
596
 
597
- #: profile-builder-2.0/admin/basic-info.php:51
598
  msgid "Extra Features"
599
  msgstr ""
600
 
601
- #: profile-builder-2.0/admin/basic-info.php:52
602
  msgid ""
603
  "Features that give you more control over your users, increased security and "
604
  "help you fight user registration spam."
605
  msgstr ""
606
 
607
- #: profile-builder-2.0/admin/basic-info.php:53
608
  msgid "Enable extra features"
609
  msgstr ""
610
 
611
- #: profile-builder-2.0/admin/basic-info.php:57
612
  msgid "Recover Password"
613
  msgstr ""
614
 
615
- #: profile-builder-2.0/admin/basic-info.php:58
616
- #, php-format
617
  msgid "Allow users to recover their password in the front-end using the %s."
618
  msgstr ""
619
 
620
- #: profile-builder-2.0/admin/basic-info.php:61
621
  msgid "Admin Approval (*)"
622
  msgstr ""
623
 
624
- #: profile-builder-2.0/admin/basic-info.php:62
625
  msgid ""
626
  "You decide who is a user on your website. Get notified via email or approve "
627
  "multiple users at once from the WordPress UI."
628
  msgstr ""
629
 
630
- #: profile-builder-2.0/admin/basic-info.php:65
631
  msgid "Email Confirmation"
632
  msgstr ""
633
 
634
- #: profile-builder-2.0/admin/basic-info.php:66
635
  msgid ""
636
  "Make sure users sign up with genuine emails. On registration users will "
637
  "receive a notification to confirm their email address."
638
  msgstr ""
639
 
640
- #: profile-builder-2.0/admin/basic-info.php:69
 
 
 
 
 
 
 
 
 
 
 
 
641
  msgid "Minimum Password Length and Strength Meter"
642
  msgstr ""
643
 
644
- #: profile-builder-2.0/admin/basic-info.php:70
645
  msgid ""
646
  "Eliminate weak passwords altogether by setting a minimum password length and "
647
  "enforcing a certain password strength."
648
  msgstr ""
649
 
650
- #: profile-builder-2.0/admin/basic-info.php:73
651
  msgid "Login with Email or Username"
652
  msgstr ""
653
 
654
- #: profile-builder-2.0/admin/basic-info.php:74
655
  msgid ""
656
  "Allow users to log in with their email or username when accessing your site."
657
  msgstr ""
658
 
659
- #: profile-builder-2.0/admin/basic-info.php:87
660
  msgid "Customize Your Forms The Way You Want (*)"
661
  msgstr ""
662
 
663
- #: profile-builder-2.0/admin/basic-info.php:88
664
  msgid ""
665
  "With Extra Profile Fields you can create the exact registration form your "
666
  "project needs."
667
  msgstr ""
668
 
669
- #: profile-builder-2.0/admin/basic-info.php:90
670
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
671
  msgstr ""
672
 
673
- #: profile-builder-2.0/admin/basic-info.php:92
674
  msgid "Get started with extra fields"
675
  msgstr ""
676
 
677
- #: profile-builder-2.0/admin/basic-info.php:95
678
  msgid "Avatar Upload"
679
  msgstr ""
680
 
681
- #: profile-builder-2.0/admin/basic-info.php:96
682
  msgid "Generic Uploads"
683
  msgstr ""
684
 
685
- #: profile-builder-2.0/admin/basic-info.php:97
686
  msgid "Agree To Terms Checkbox"
687
  msgstr ""
688
 
689
- #: profile-builder-2.0/admin/basic-info.php:98
690
  msgid "Datepicker"
691
  msgstr ""
692
 
693
- #: profile-builder-2.0/admin/basic-info.php:99
694
  msgid "Timepicker"
695
  msgstr ""
696
 
697
- #: profile-builder-2.0/admin/basic-info.php:100
698
  msgid "Colorpicker"
699
  msgstr ""
700
 
701
- #: profile-builder-2.0/admin/basic-info.php:101
702
  msgid "reCAPTCHA"
703
  msgstr ""
704
 
705
- #: profile-builder-2.0/admin/basic-info.php:102
706
  msgid "Country Select"
707
  msgstr ""
708
 
709
- #: profile-builder-2.0/admin/basic-info.php:103
710
  msgid "Currency Select"
711
  msgstr ""
712
 
713
- #: profile-builder-2.0/admin/basic-info.php:104
714
  msgid "Timezone Select"
715
  msgstr ""
716
 
717
- #: profile-builder-2.0/admin/basic-info.php:108
718
  msgid "Input / Hidden Input"
719
  msgstr ""
720
 
721
- #: profile-builder-2.0/admin/basic-info.php:109
722
  msgid "Number"
723
  msgstr ""
724
 
725
- #: profile-builder-2.0/admin/basic-info.php:110
726
  msgid "Checkbox"
727
  msgstr ""
728
 
729
- #: profile-builder-2.0/admin/basic-info.php:111
730
  msgid "Select"
731
  msgstr ""
732
 
733
- #: profile-builder-2.0/admin/basic-info.php:112
734
  msgid "Radio Buttons"
735
  msgstr ""
736
 
737
- #: profile-builder-2.0/admin/basic-info.php:113
738
  msgid "Textarea"
739
  msgstr ""
740
 
741
- #: profile-builder-2.0/admin/basic-info.php:114
742
  msgid "Validation"
743
  msgstr ""
744
 
745
- #: profile-builder-2.0/admin/basic-info.php:115
746
  msgid "Map"
747
  msgstr ""
748
 
749
- #: profile-builder-2.0/admin/basic-info.php:116
750
  msgid "HTML"
751
  msgstr ""
752
 
753
- #: profile-builder-2.0/admin/basic-info.php:125
754
  msgid "Powerful Modules (**)"
755
  msgstr ""
756
 
757
- #: profile-builder-2.0/admin/basic-info.php:126
758
  msgid ""
759
  "Everything you will need to manage your users is probably already available "
760
  "using the Pro Modules."
761
  msgstr ""
762
 
763
- #: profile-builder-2.0/admin/basic-info.php:128
764
  msgid "Enable your modules"
765
  msgstr ""
766
 
767
- #: profile-builder-2.0/admin/basic-info.php:131
768
  msgid "Find out more about PRO Modules"
769
  msgstr ""
770
 
771
- #: profile-builder-2.0/admin/basic-info.php:136
772
- #: profile-builder-2.0/modules/modules.php:89
773
- #: profile-builder-2.0/modules/user-listing/userlisting.php:11
774
- #: profile-builder-2.0/modules/user-listing/userlisting.php:12
775
- #: profile-builder-2.0/modules/user-listing/userlisting.php:17
776
- #: profile-builder-2.0/modules/user-listing/userlisting.php:23
777
  msgid "User Listing"
778
  msgstr ""
779
 
780
- #: profile-builder-2.0/admin/basic-info.php:138
781
  msgid ""
782
  "Easy to edit templates for listing your website users as well as creating "
783
  "single user pages. Shortcode based, offering many options to customize your "
784
  "listings."
785
  msgstr ""
786
 
787
- #: profile-builder-2.0/admin/basic-info.php:140
788
- #, php-format
789
  msgid ""
790
  "To create a page containing the users registered to this current site/blog, "
791
  "insert the following shortcode in a page of your chosing: %s."
792
  msgstr ""
793
 
794
- #: profile-builder-2.0/admin/basic-info.php:144
795
  msgid "Email Customizer"
796
  msgstr ""
797
 
798
- #: profile-builder-2.0/admin/basic-info.php:145
799
  msgid ""
800
  "Personalize all emails sent to your users or admins. On registration, email "
801
  "confirmation, admin approval / un-approval."
802
  msgstr ""
803
 
804
- #: profile-builder-2.0/admin/basic-info.php:148
805
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:32
806
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:33
807
- #: profile-builder-2.0/modules/modules.php:110
808
  msgid "Custom Redirects"
809
  msgstr ""
810
 
811
- #: profile-builder-2.0/admin/basic-info.php:149
812
  msgid ""
813
  "Keep your users out of the WordPress dashboard, redirect them to the front-"
814
  "page after login or registration, everything is just a few clicks away."
815
  msgstr ""
816
 
817
- #: profile-builder-2.0/admin/basic-info.php:154
818
- #: profile-builder-2.0/modules/modules.php:75
819
  msgid "Multiple Registration Forms"
820
  msgstr ""
821
 
822
- #: profile-builder-2.0/admin/basic-info.php:155
823
  msgid ""
824
  "Set up multiple registration forms with different fields for certain user "
825
  "roles. Capture different information from different types of users."
826
  msgstr ""
827
 
828
- #: profile-builder-2.0/admin/basic-info.php:158
829
- #: profile-builder-2.0/modules/modules.php:82
830
  msgid "Multiple Edit-profile Forms"
831
  msgstr ""
832
 
833
- #: profile-builder-2.0/admin/basic-info.php:159
834
  msgid ""
835
  "Allow different user roles to edit their specific information. Set up "
836
  "multiple edit-profile forms with different fields for certain user roles."
837
  msgstr ""
838
 
839
- #: profile-builder-2.0/admin/basic-info.php:162
840
- #: profile-builder-2.0/modules/modules.php:117
841
  msgid "Repeater Fields"
842
  msgstr ""
843
 
844
- #: profile-builder-2.0/admin/basic-info.php:163
845
  msgid ""
846
  "Set up a repeating group of fields on register and edit profile forms. Limit "
847
  "the number of repeated groups for each user role."
848
  msgstr ""
849
 
850
- #: profile-builder-2.0/admin/basic-info.php:187
851
- #, php-format
852
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
853
  msgstr ""
854
 
855
- #: profile-builder-2.0/admin/basic-info.php:188
856
- #, php-format
857
  msgid "** only available in the %1$sPro version%2$s."
858
  msgstr ""
859
 
860
- #: profile-builder-2.0/admin/general-settings.php:39
861
  msgid "Load Profile Builder's own CSS file in the front-end:"
862
  msgstr ""
863
 
864
- #: profile-builder-2.0/admin/general-settings.php:42
865
- #: profile-builder-2.0/admin/general-settings.php:55
866
- #: profile-builder-2.0/admin/general-settings.php:104
867
- #: profile-builder-2.0/admin/general-settings.php:151
868
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
869
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
870
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
871
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
872
  msgid "Yes"
873
  msgstr ""
874
 
875
- #: profile-builder-2.0/admin/general-settings.php:44
876
- #, php-format
877
  msgid "You can find the default file here: %1$s"
878
  msgstr ""
879
 
880
- #: profile-builder-2.0/admin/general-settings.php:51
881
  msgid "\"Email Confirmation\" Activated:"
882
  msgstr ""
883
 
884
- #: profile-builder-2.0/admin/general-settings.php:56
885
- #: profile-builder-2.0/admin/general-settings.php:105
886
- #: profile-builder-2.0/admin/general-settings.php:150
887
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
888
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
889
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
890
  msgid "No"
891
  msgstr ""
892
 
893
- #: profile-builder-2.0/admin/general-settings.php:59
894
  msgid ""
895
  "This works with front-end forms only. Recommended to redirect WP default "
896
  "registration to a Profile Builder one using \"Custom Redirects\" module."
897
  msgstr ""
898
 
899
- #: profile-builder-2.0/admin/general-settings.php:61
900
- #, php-format
901
  msgid ""
902
  "You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
903
  "Email Confirmation%2$s."
904
  msgstr ""
905
 
906
- #: profile-builder-2.0/admin/general-settings.php:69
907
  msgid "\"Email Confirmation\" Landing Page:"
908
  msgstr ""
909
 
910
- #: profile-builder-2.0/admin/general-settings.php:74
911
  msgid "Existing Pages"
912
  msgstr ""
913
 
914
- #: profile-builder-2.0/admin/general-settings.php:89
915
  msgid ""
916
  "Specify the page where the users will be directed when confirming the email "
917
  "account. This page can differ from the register page(s) and can be changed "
@@ -919,145 +632,147 @@ msgid ""
919
  "for the user."
920
  msgstr ""
921
 
922
- #: profile-builder-2.0/admin/general-settings.php:100
923
  msgid "\"Admin Approval\" Activated:"
924
  msgstr ""
925
 
926
- #: profile-builder-2.0/admin/general-settings.php:108
927
- #, php-format
928
  msgid ""
929
  "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
930
  msgstr ""
931
 
932
- #: profile-builder-2.0/admin/general-settings.php:115
933
  msgid "\"Admin Approval\" on User Role:"
934
  msgstr ""
935
 
936
- #: profile-builder-2.0/admin/general-settings.php:134
937
  msgid "Select on what user roles to activate Admin Approval."
938
  msgstr ""
939
 
940
- #: profile-builder-2.0/admin/general-settings.php:146
941
  msgid "\"Roles Editor\" Activated:"
942
  msgstr ""
943
 
944
- #: profile-builder-2.0/admin/general-settings.php:154
945
- #, php-format
946
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
947
  msgstr ""
948
 
949
- #: profile-builder-2.0/admin/general-settings.php:165
 
 
 
 
 
 
 
 
 
 
950
  msgid "\"Admin Approval\" Feature:"
951
  msgstr ""
952
 
953
- #: profile-builder-2.0/admin/general-settings.php:168
954
- #, php-format
955
  msgid ""
956
  "You decide who is a user on your website. Get notified via email or approve "
957
  "multiple users at once from the WordPress UI. Enable Admin Approval by "
958
  "upgrading to %1$sHobbyist or PRO versions%2$s."
959
  msgstr ""
960
 
961
- #: profile-builder-2.0/admin/general-settings.php:175
962
  msgid "Allow Users to Log in With:"
963
  msgstr ""
964
 
965
- #: profile-builder-2.0/admin/general-settings.php:179
966
  msgid "Username and Email"
967
  msgstr ""
968
 
969
- #: profile-builder-2.0/admin/general-settings.php:180
970
- #: profile-builder-2.0/admin/manage-fields.php:201
971
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:166
972
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:167
973
- #: profile-builder-2.0/front-end/login.php:85
974
- #: profile-builder-2.0/front-end/login.php:99
975
- #: profile-builder-2.0/front-end/login.php:218
976
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:56
977
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:28
978
- #: profile-builder-2.0/modules/user-listing/userlisting.php:102
979
- #: profile-builder-2.0/modules/user-listing/userlisting.php:277
980
- #: profile-builder-2.0/modules/user-listing/userlisting.php:730
981
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2219
982
  msgid "Username"
983
  msgstr ""
984
 
985
- #: profile-builder-2.0/admin/general-settings.php:181
986
- #: profile-builder-2.0/front-end/login.php:215
987
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:29
988
- #: profile-builder-2.0/modules/user-listing/userlisting.php:736
989
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2220
990
  msgid "Email"
991
  msgstr ""
992
 
993
- #: profile-builder-2.0/admin/general-settings.php:184
994
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
995
  msgstr ""
996
 
997
- #: profile-builder-2.0/admin/general-settings.php:185
998
  msgid "\"Username\" - users can Log In only with Username."
999
  msgstr ""
1000
 
1001
- #: profile-builder-2.0/admin/general-settings.php:186
1002
  msgid "\"Email\" - users can Log In only with Email."
1003
  msgstr ""
1004
 
1005
- #: profile-builder-2.0/admin/general-settings.php:193
1006
  msgid "Minimum Password Length:"
1007
  msgstr ""
1008
 
1009
- #: profile-builder-2.0/admin/general-settings.php:198
1010
  msgid ""
1011
  "Enter the minimum characters the password should have. Leave empty for no "
1012
  "minimum limit"
1013
  msgstr ""
1014
 
1015
- #: profile-builder-2.0/admin/general-settings.php:205
1016
  msgid "Minimum Password Strength:"
1017
  msgstr ""
1018
 
1019
- #: profile-builder-2.0/admin/general-settings.php:209
1020
  msgid "Disabled"
1021
  msgstr ""
1022
 
1023
- #: profile-builder-2.0/admin/manage-fields.php:12
1024
  msgid "Manage Fields"
1025
  msgstr ""
1026
 
1027
- #: profile-builder-2.0/admin/manage-fields.php:13
1028
  msgid "Manage Default and Extra Fields"
1029
  msgstr ""
1030
 
1031
- #: profile-builder-2.0/admin/manage-fields.php:82
1032
  msgid "Choose one of the supported field types"
1033
  msgstr ""
1034
 
1035
- #: profile-builder-2.0/admin/manage-fields.php:84
1036
- #, php-format
1037
  msgid ""
1038
  ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO "
1039
  "versions</a>."
1040
  msgstr ""
1041
 
1042
- #: profile-builder-2.0/admin/manage-fields.php:118
1043
  msgid "Field Title"
1044
  msgstr ""
1045
 
1046
- #: profile-builder-2.0/admin/manage-fields.php:118
1047
  msgid "Title of the field"
1048
  msgstr ""
1049
 
1050
- #: profile-builder-2.0/admin/manage-fields.php:119
1051
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
1052
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
1053
  msgid "Field"
1054
  msgstr ""
1055
 
1056
- #: profile-builder-2.0/admin/manage-fields.php:120
1057
  msgid "Meta-name"
1058
  msgstr ""
1059
 
1060
- #: profile-builder-2.0/admin/manage-fields.php:120
1061
  msgid ""
1062
  "Use this in conjunction with WordPress functions to display the value in the "
1063
  "page of your choosing<br/>Auto-completed but in some cases editable (in "
@@ -1065,81 +780,81 @@ msgid ""
1065
  "very big user-count"
1066
  msgstr ""
1067
 
1068
- #: profile-builder-2.0/admin/manage-fields.php:121
1069
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:65
1070
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:95
1071
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:114
1072
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:139
1073
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
1074
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
1075
  msgid "ID"
1076
  msgstr ""
1077
 
1078
- #: profile-builder-2.0/admin/manage-fields.php:121
1079
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:246
1080
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:267
1081
  msgid ""
1082
  "A unique, auto-generated ID for this particular field<br/>You can use this "
1083
  "in conjuction with filters to target this element if needed<br/>Can't be "
1084
  "edited"
1085
  msgstr ""
1086
 
1087
- #: profile-builder-2.0/admin/manage-fields.php:122
1088
  msgid "Description"
1089
  msgstr ""
1090
 
1091
- #: profile-builder-2.0/admin/manage-fields.php:122
1092
  msgid ""
1093
  "Enter a (detailed) description of the option for end users to read<br/"
1094
  ">Optional"
1095
  msgstr ""
1096
 
1097
- #: profile-builder-2.0/admin/manage-fields.php:123
1098
  msgid "Row Count"
1099
  msgstr ""
1100
 
1101
- #: profile-builder-2.0/admin/manage-fields.php:123
1102
  msgid ""
1103
  "Specify the number of rows for a 'Textarea' field<br/>If not specified, "
1104
  "defaults to 5"
1105
  msgstr ""
1106
 
1107
- #: profile-builder-2.0/admin/manage-fields.php:124
1108
  msgid "Allowed Image Extensions"
1109
  msgstr ""
1110
 
1111
- #: profile-builder-2.0/admin/manage-fields.php:124
1112
  msgid ""
1113
  "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
1114
  "ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
1115
  msgstr ""
1116
 
1117
- #: profile-builder-2.0/admin/manage-fields.php:125
1118
  msgid "Allowed Upload Extensions"
1119
  msgstr ""
1120
 
1121
- #: profile-builder-2.0/admin/manage-fields.php:125
1122
  msgid ""
1123
  "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
1124
  "ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
1125
  "extensions (.*)"
1126
  msgstr ""
1127
 
1128
- #: profile-builder-2.0/admin/manage-fields.php:126
1129
  msgid "Avatar Size"
1130
  msgstr ""
1131
 
1132
- #: profile-builder-2.0/admin/manage-fields.php:126
1133
  msgid ""
1134
  "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
1135
  "specified, defaults to 100"
1136
  msgstr ""
1137
 
1138
- #: profile-builder-2.0/admin/manage-fields.php:127
1139
  msgid "Date-format"
1140
  msgstr ""
1141
 
1142
- #: profile-builder-2.0/admin/manage-fields.php:127
1143
  msgid ""
1144
  "Specify the format of the date when using Datepicker<br/>Valid options: mm/"
1145
  "dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, "
@@ -1147,198 +862,195 @@ msgid ""
1147
  "defaults to mm/dd/yy"
1148
  msgstr ""
1149
 
1150
- #: profile-builder-2.0/admin/manage-fields.php:128
1151
  msgid "Terms of Agreement"
1152
  msgstr ""
1153
 
1154
- #: profile-builder-2.0/admin/manage-fields.php:128
1155
  msgid ""
1156
  "Enter a detailed description of the temrs of agreement for the user to read."
1157
  "<br/>Links can be inserted by using standard HTML syntax: &lt;a href="
1158
  "\"custom_url\"&gt;custom_text&lt;/a&gt;"
1159
  msgstr ""
1160
 
1161
- #: profile-builder-2.0/admin/manage-fields.php:129
1162
  msgid "Options"
1163
  msgstr ""
1164
 
1165
- #: profile-builder-2.0/admin/manage-fields.php:129
1166
  msgid ""
1167
  "Enter a comma separated list of values<br/>This can be anything, as it is "
1168
  "hidden from the user, but should not contain special characters or "
1169
  "apostrophes"
1170
  msgstr ""
1171
 
1172
- #: profile-builder-2.0/admin/manage-fields.php:130
1173
  msgid "Labels"
1174
  msgstr ""
1175
 
1176
- #: profile-builder-2.0/admin/manage-fields.php:130
1177
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
1178
  msgstr ""
1179
 
1180
- #: profile-builder-2.0/admin/manage-fields.php:131
1181
  msgid "Site Key"
1182
  msgstr ""
1183
 
1184
- #: profile-builder-2.0/admin/manage-fields.php:131
1185
  msgid ""
1186
  "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target="
1187
  "\"_blank\">www.google.com/recaptcha</a>"
1188
  msgstr ""
1189
 
1190
- #: profile-builder-2.0/admin/manage-fields.php:132
1191
  msgid "Secret Key"
1192
  msgstr ""
1193
 
1194
- #: profile-builder-2.0/admin/manage-fields.php:132
1195
  msgid ""
1196
  "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" "
1197
  "target=\"_blank\">www.google.com/recaptcha</a>"
1198
  msgstr ""
1199
 
1200
- #: profile-builder-2.0/admin/manage-fields.php:133
1201
  msgid "Display on PB forms"
1202
  msgstr ""
1203
 
1204
- #: profile-builder-2.0/admin/manage-fields.php:133
1205
  msgid "PB Login"
1206
  msgstr ""
1207
 
1208
- #: profile-builder-2.0/admin/manage-fields.php:133
1209
  msgid "PB Register"
1210
  msgstr ""
1211
 
1212
- #: profile-builder-2.0/admin/manage-fields.php:133
1213
  msgid "PB Recover Password"
1214
  msgstr ""
1215
 
1216
- #: profile-builder-2.0/admin/manage-fields.php:133
1217
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
1218
  msgstr ""
1219
 
1220
- #: profile-builder-2.0/admin/manage-fields.php:134
1221
  msgid "Display on default WP forms"
1222
  msgstr ""
1223
 
1224
- #: profile-builder-2.0/admin/manage-fields.php:134
1225
  msgid "Default WP Login"
1226
  msgstr ""
1227
 
1228
- #: profile-builder-2.0/admin/manage-fields.php:134
1229
  msgid "Default WP Register"
1230
  msgstr ""
1231
 
1232
- #: profile-builder-2.0/admin/manage-fields.php:134
1233
  msgid "Default WP Recover Password"
1234
  msgstr ""
1235
 
1236
- #: profile-builder-2.0/admin/manage-fields.php:134
1237
  msgid "Select on which default WP forms to display reCAPTCHA"
1238
  msgstr ""
1239
 
1240
- #: profile-builder-2.0/admin/manage-fields.php:135
1241
  msgid "User Roles"
1242
  msgstr ""
1243
 
1244
- #: profile-builder-2.0/admin/manage-fields.php:135
1245
  msgid ""
1246
  "Select which user roles to show to the user ( drag and drop to re-order )"
1247
  msgstr ""
1248
 
1249
- #: profile-builder-2.0/admin/manage-fields.php:136
1250
  msgid "User Roles Order"
1251
  msgstr ""
1252
 
1253
- #: profile-builder-2.0/admin/manage-fields.php:136
1254
  msgid "Save the user role order from the user roles checkboxes"
1255
  msgstr ""
1256
 
1257
- #: profile-builder-2.0/admin/manage-fields.php:137
1258
  msgid "Default Value"
1259
  msgstr ""
1260
 
1261
- #: profile-builder-2.0/admin/manage-fields.php:137
1262
  msgid "Default value of the field"
1263
  msgstr ""
1264
 
1265
- #: profile-builder-2.0/admin/manage-fields.php:138
1266
- #: profile-builder-2.0/admin/manage-fields.php:140
1267
- #: profile-builder-2.0/admin/manage-fields.php:141
1268
- #: profile-builder-2.0/admin/manage-fields.php:142
1269
  msgid "Default Option"
1270
  msgstr ""
1271
 
1272
- #: profile-builder-2.0/admin/manage-fields.php:138
1273
  msgid "Specify the option which should be selected by default"
1274
  msgstr ""
1275
 
1276
- #: profile-builder-2.0/admin/manage-fields.php:139
1277
  msgid "Default Option(s)"
1278
  msgstr ""
1279
 
1280
- #: profile-builder-2.0/admin/manage-fields.php:139
1281
  msgid ""
1282
  "Specify the option which should be checked by default<br/>If there are "
1283
  "multiple values, separate them with a ',' (comma)"
1284
  msgstr ""
1285
 
1286
- #: profile-builder-2.0/admin/manage-fields.php:140
1287
- #: profile-builder-2.0/admin/manage-fields.php:141
1288
- #: profile-builder-2.0/admin/manage-fields.php:142
1289
  msgid "Default option of the field"
1290
  msgstr ""
1291
 
1292
- #: profile-builder-2.0/admin/manage-fields.php:143
1293
  msgid "Show Currency Symbol"
1294
  msgstr ""
1295
 
1296
- #: profile-builder-2.0/admin/manage-fields.php:143
1297
  msgid ""
1298
  "Whether the currency symbol should be displayed after the currency name in "
1299
  "the select option."
1300
  msgstr ""
1301
 
1302
- #: profile-builder-2.0/admin/manage-fields.php:144
1303
  msgid "Show Post Type"
1304
  msgstr ""
1305
 
1306
- #: profile-builder-2.0/admin/manage-fields.php:144
1307
  msgid "Posts from what post type will be displayed in the select."
1308
  msgstr ""
1309
 
1310
- #: profile-builder-2.0/admin/manage-fields.php:145
1311
  msgid "Allowable Values"
1312
  msgstr ""
1313
 
1314
- #: profile-builder-2.0/admin/manage-fields.php:145
1315
  msgid ""
1316
  "Enter a comma separated list of possible values. Upon registration if the "
1317
  "value provided by the user does not match one of these values, the user will "
1318
  "not be registered."
1319
  msgstr ""
1320
 
1321
- #: profile-builder-2.0/admin/manage-fields.php:146
1322
  msgid "Error Message"
1323
  msgstr ""
1324
 
1325
- #: profile-builder-2.0/admin/manage-fields.php:146
1326
  msgid "Set a custom error message that will be displayed to the user."
1327
  msgstr ""
1328
 
1329
- #: profile-builder-2.0/admin/manage-fields.php:147
1330
  msgid "Time Format"
1331
  msgstr ""
1332
 
1333
- #: profile-builder-2.0/admin/manage-fields.php:147
1334
  msgid "Specify the time format."
1335
  msgstr ""
1336
 
1337
- #: profile-builder-2.0/admin/manage-fields.php:148
1338
  msgid "Google Maps API Key"
1339
  msgstr ""
1340
 
1341
- #: profile-builder-2.0/admin/manage-fields.php:148
1342
  msgid ""
1343
  "Enter your Google Maps API key ( <a href=\"https://console.developers.google."
1344
  "com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</"
@@ -1346,2201 +1058,2195 @@ msgid ""
1346
  "first map displayed will be used."
1347
  msgstr ""
1348
 
1349
- #: profile-builder-2.0/admin/manage-fields.php:149
1350
  msgid "Default Latitude"
1351
  msgstr ""
1352
 
1353
- #: profile-builder-2.0/admin/manage-fields.php:149
1354
  msgid ""
1355
  "The latitude at which the map should be displayed when no pins are attached."
1356
  msgstr ""
1357
 
1358
- #: profile-builder-2.0/admin/manage-fields.php:150
1359
  msgid "Default Longitude"
1360
  msgstr ""
1361
 
1362
- #: profile-builder-2.0/admin/manage-fields.php:150
1363
  msgid ""
1364
  "The longitude at which the map should be displayed when no pins are attached."
1365
  msgstr ""
1366
 
1367
- #: profile-builder-2.0/admin/manage-fields.php:151
1368
  msgid "Default Zoom Level"
1369
  msgstr ""
1370
 
1371
- #: profile-builder-2.0/admin/manage-fields.php:151
1372
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
1373
  msgstr ""
1374
 
1375
- #: profile-builder-2.0/admin/manage-fields.php:152
1376
  msgid "Map Height"
1377
  msgstr ""
1378
 
1379
- #: profile-builder-2.0/admin/manage-fields.php:152
1380
  msgid "The height of the map."
1381
  msgstr ""
1382
 
1383
- #: profile-builder-2.0/admin/manage-fields.php:153
1384
  msgid "Default Content"
1385
  msgstr ""
1386
 
1387
- #: profile-builder-2.0/admin/manage-fields.php:153
1388
  msgid "Default value of the textarea"
1389
  msgstr ""
1390
 
1391
- #: profile-builder-2.0/admin/manage-fields.php:154
1392
  msgid "HTML Content"
1393
  msgstr ""
1394
 
1395
- #: profile-builder-2.0/admin/manage-fields.php:154
1396
  msgid "Add your HTML (or text) content"
1397
  msgstr ""
1398
 
1399
- #: profile-builder-2.0/admin/manage-fields.php:155
1400
  msgid "Phone Format"
1401
  msgstr ""
1402
 
1403
- #: profile-builder-2.0/admin/manage-fields.php:155
1404
  msgid ""
1405
  "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and "
1406
  "spaces."
1407
  msgstr ""
1408
 
1409
- #: profile-builder-2.0/admin/manage-fields.php:155
1410
  msgid "Eg. (###) ###-####"
1411
  msgstr ""
1412
 
1413
- #: profile-builder-2.0/admin/manage-fields.php:155
1414
  msgid "Empty field won't check for correct phone number."
1415
  msgstr ""
1416
 
1417
- #: profile-builder-2.0/admin/manage-fields.php:156
1418
  msgid "Heading Tag"
1419
  msgstr ""
1420
 
1421
- #: profile-builder-2.0/admin/manage-fields.php:156
1422
  msgid "Change heading field size on front-end forms"
1423
  msgstr ""
1424
 
1425
- #: profile-builder-2.0/admin/manage-fields.php:157
1426
  msgid "Min Number Value"
1427
  msgstr ""
1428
 
1429
- #: profile-builder-2.0/admin/manage-fields.php:157
1430
  msgid "Min allowed number value (0 to allow only positive numbers)"
1431
  msgstr ""
1432
 
1433
- #: profile-builder-2.0/admin/manage-fields.php:157
1434
  msgid "Leave it empty for no min value"
1435
  msgstr ""
1436
 
1437
- #: profile-builder-2.0/admin/manage-fields.php:158
1438
  msgid "Max Number Value"
1439
  msgstr ""
1440
 
1441
- #: profile-builder-2.0/admin/manage-fields.php:158
1442
  msgid "Max allowed number value (0 to allow only negative numbers)"
1443
  msgstr ""
1444
 
1445
- #: profile-builder-2.0/admin/manage-fields.php:158
1446
  msgid "Leave it empty for no max value"
1447
  msgstr ""
1448
 
1449
- #: profile-builder-2.0/admin/manage-fields.php:159
1450
  msgid "Number Step Value"
1451
  msgstr ""
1452
 
1453
- #: profile-builder-2.0/admin/manage-fields.php:159
1454
  msgid ""
1455
  "Step value 1 to allow only integers, 0.1 to allow integers and numbers with "
1456
  "1 decimal"
1457
  msgstr ""
1458
 
1459
- #: profile-builder-2.0/admin/manage-fields.php:159
1460
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
1461
  msgstr ""
1462
 
1463
- #: profile-builder-2.0/admin/manage-fields.php:159
1464
  msgid ""
1465
  "You can also use step value to specify the legal number intervals (eg. step "
1466
  "value 2 will allow only -4, -2, 0, 2 and so on)"
1467
  msgstr ""
1468
 
1469
- #: profile-builder-2.0/admin/manage-fields.php:159
1470
  msgid "Leave it empty for no restriction"
1471
  msgstr ""
1472
 
1473
- #: profile-builder-2.0/admin/manage-fields.php:160
 
 
 
 
1474
  msgid "Whether the field is required or not"
1475
  msgstr ""
1476
 
1477
- #: profile-builder-2.0/admin/manage-fields.php:161
1478
  msgid "Overwrite Existing"
1479
  msgstr ""
1480
 
1481
- #: profile-builder-2.0/admin/manage-fields.php:161
1482
  msgid ""
1483
  "Selecting 'Yes' will add the field to the list, but will overwrite any other "
1484
  "field in the database that has the same meta-name<br/>Use this at your own "
1485
  "risk"
1486
  msgstr ""
1487
 
1488
- #: profile-builder-2.0/admin/manage-fields.php:167
1489
  msgid "Field Properties"
1490
  msgstr ""
1491
 
1492
- #: profile-builder-2.0/admin/manage-fields.php:181
1493
  msgid "Registration & Edit Profile"
1494
  msgstr ""
1495
 
1496
- #: profile-builder-2.0/admin/manage-fields.php:200
1497
  msgid "Name"
1498
  msgstr ""
1499
 
1500
- #: profile-builder-2.0/admin/manage-fields.php:201
1501
  msgid "Usernames cannot be changed."
1502
  msgstr ""
1503
 
1504
- #: profile-builder-2.0/admin/manage-fields.php:204
1505
- #: profile-builder-2.0/modules/user-listing/userlisting.php:769
1506
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2227
 
 
 
 
 
 
 
1507
  msgid "Nickname"
1508
  msgstr ""
1509
 
1510
- #: profile-builder-2.0/admin/manage-fields.php:205
1511
  msgid "Display name publicly as"
1512
  msgstr ""
1513
 
1514
- #: profile-builder-2.0/admin/manage-fields.php:206
1515
  msgid "Contact Info"
1516
  msgstr ""
1517
 
1518
- #: profile-builder-2.0/admin/manage-fields.php:207
1519
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:169
1520
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:168
1521
- #: profile-builder-2.0/front-end/recover.php:118
1522
- #: profile-builder-2.0/modules/user-listing/userlisting.php:108
1523
  msgid "E-mail"
1524
  msgstr ""
1525
 
1526
- #: profile-builder-2.0/admin/manage-fields.php:208
1527
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:32
1528
- #: profile-builder-2.0/modules/user-listing/userlisting.php:111
1529
- #: profile-builder-2.0/modules/user-listing/userlisting.php:751
1530
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2221
1531
  msgid "Website"
1532
  msgstr ""
1533
 
1534
- #: profile-builder-2.0/admin/manage-fields.php:212
1535
  msgid "AIM"
1536
  msgstr ""
1537
 
1538
- #: profile-builder-2.0/admin/manage-fields.php:213
1539
  msgid "Yahoo IM"
1540
  msgstr ""
1541
 
1542
- #: profile-builder-2.0/admin/manage-fields.php:214
1543
  msgid "Jabber / Google Talk"
1544
  msgstr ""
1545
 
1546
- #: profile-builder-2.0/admin/manage-fields.php:217
1547
  msgid "About Yourself"
1548
  msgstr ""
1549
 
1550
- #: profile-builder-2.0/admin/manage-fields.php:218
1551
- #: profile-builder-2.0/modules/user-listing/userlisting.php:114
1552
- #: profile-builder-2.0/modules/user-listing/userlisting.php:754
1553
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2222
1554
  msgid "Biographical Info"
1555
  msgstr ""
1556
 
1557
- #: profile-builder-2.0/admin/manage-fields.php:218
1558
  msgid ""
1559
  "Share a little biographical information to fill out your profile. This may "
1560
  "be shown publicly."
1561
  msgstr ""
1562
 
1563
- #: profile-builder-2.0/admin/manage-fields.php:219
1564
- #: profile-builder-2.0/front-end/recover.php:73
1565
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:30
1566
  msgid "Password"
1567
  msgstr ""
1568
 
1569
- #: profile-builder-2.0/admin/manage-fields.php:219
1570
  msgid "Type your password."
1571
  msgstr ""
1572
 
1573
- #: profile-builder-2.0/admin/manage-fields.php:220
1574
- #: profile-builder-2.0/front-end/recover.php:74
1575
  msgid "Repeat Password"
1576
  msgstr ""
1577
 
1578
- #: profile-builder-2.0/admin/manage-fields.php:220
1579
  msgid "Type your password again. "
1580
  msgstr ""
1581
 
1582
- #: profile-builder-2.0/admin/manage-fields.php:222
1583
  msgid "Blog Details"
1584
  msgstr ""
1585
 
1586
- #: profile-builder-2.0/admin/manage-fields.php:282
1587
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1588
  msgid "Afghanistan"
1589
  msgstr ""
1590
 
1591
- #: profile-builder-2.0/admin/manage-fields.php:283
1592
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1593
  msgid "Aland Islands"
1594
  msgstr ""
1595
 
1596
- #: profile-builder-2.0/admin/manage-fields.php:284
1597
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1598
  msgid "Albania"
1599
  msgstr ""
1600
 
1601
- #: profile-builder-2.0/admin/manage-fields.php:285
1602
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1603
  msgid "Algeria"
1604
  msgstr ""
1605
 
1606
- #: profile-builder-2.0/admin/manage-fields.php:286
1607
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1608
  msgid "American Samoa"
1609
  msgstr ""
1610
 
1611
- #: profile-builder-2.0/admin/manage-fields.php:287
1612
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1613
  msgid "Andorra"
1614
  msgstr ""
1615
 
1616
- #: profile-builder-2.0/admin/manage-fields.php:288
1617
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1618
  msgid "Angola"
1619
  msgstr ""
1620
 
1621
- #: profile-builder-2.0/admin/manage-fields.php:289
1622
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1623
  msgid "Anguilla"
1624
  msgstr ""
1625
 
1626
- #: profile-builder-2.0/admin/manage-fields.php:290
1627
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1628
  msgid "Antarctica"
1629
  msgstr ""
1630
 
1631
- #: profile-builder-2.0/admin/manage-fields.php:291
1632
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1633
  msgid "Antigua and Barbuda"
1634
  msgstr ""
1635
 
1636
- #: profile-builder-2.0/admin/manage-fields.php:292
1637
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1638
  msgid "Argentina"
1639
  msgstr ""
1640
 
1641
- #: profile-builder-2.0/admin/manage-fields.php:293
1642
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1643
  msgid "Armenia"
1644
  msgstr ""
1645
 
1646
- #: profile-builder-2.0/admin/manage-fields.php:294
1647
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1648
  msgid "Aruba"
1649
  msgstr ""
1650
 
1651
- #: profile-builder-2.0/admin/manage-fields.php:295
1652
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1653
  msgid "Australia"
1654
  msgstr ""
1655
 
1656
- #: profile-builder-2.0/admin/manage-fields.php:296
1657
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1658
  msgid "Austria"
1659
  msgstr ""
1660
 
1661
- #: profile-builder-2.0/admin/manage-fields.php:297
1662
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1663
  msgid "Azerbaijan"
1664
  msgstr ""
1665
 
1666
- #: profile-builder-2.0/admin/manage-fields.php:298
1667
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1668
  msgid "Bahamas"
1669
  msgstr ""
1670
 
1671
- #: profile-builder-2.0/admin/manage-fields.php:299
1672
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1673
  msgid "Bahrain"
1674
  msgstr ""
1675
 
1676
- #: profile-builder-2.0/admin/manage-fields.php:300
1677
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1678
  msgid "Bangladesh"
1679
  msgstr ""
1680
 
1681
- #: profile-builder-2.0/admin/manage-fields.php:301
1682
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1683
  msgid "Barbados"
1684
  msgstr ""
1685
 
1686
- #: profile-builder-2.0/admin/manage-fields.php:302
1687
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1688
  msgid "Belarus"
1689
  msgstr ""
1690
 
1691
- #: profile-builder-2.0/admin/manage-fields.php:303
1692
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1693
  msgid "Belgium"
1694
  msgstr ""
1695
 
1696
- #: profile-builder-2.0/admin/manage-fields.php:304
1697
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1698
  msgid "Belize"
1699
  msgstr ""
1700
 
1701
- #: profile-builder-2.0/admin/manage-fields.php:305
1702
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1703
  msgid "Benin"
1704
  msgstr ""
1705
 
1706
- #: profile-builder-2.0/admin/manage-fields.php:306
1707
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1708
  msgid "Bermuda"
1709
  msgstr ""
1710
 
1711
- #: profile-builder-2.0/admin/manage-fields.php:307
1712
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1713
  msgid "Bhutan"
1714
  msgstr ""
1715
 
1716
- #: profile-builder-2.0/admin/manage-fields.php:308
1717
  msgid "Bolivia"
1718
  msgstr ""
1719
 
1720
- #: profile-builder-2.0/admin/manage-fields.php:309
1721
  msgid "Bonaire, Saint Eustatius and Saba"
1722
  msgstr ""
1723
 
1724
- #: profile-builder-2.0/admin/manage-fields.php:310
1725
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1726
  msgid "Bosnia and Herzegovina"
1727
  msgstr ""
1728
 
1729
- #: profile-builder-2.0/admin/manage-fields.php:311
1730
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1731
  msgid "Botswana"
1732
  msgstr ""
1733
 
1734
- #: profile-builder-2.0/admin/manage-fields.php:312
1735
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1736
  msgid "Bouvet Island"
1737
  msgstr ""
1738
 
1739
- #: profile-builder-2.0/admin/manage-fields.php:313
1740
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1741
  msgid "Brazil"
1742
  msgstr ""
1743
 
1744
- #: profile-builder-2.0/admin/manage-fields.php:314
1745
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1746
  msgid "British Indian Ocean Territory"
1747
  msgstr ""
1748
 
1749
- #: profile-builder-2.0/admin/manage-fields.php:315
1750
  msgid "British Virgin Islands"
1751
  msgstr ""
1752
 
1753
- #: profile-builder-2.0/admin/manage-fields.php:316
1754
  msgid "Brunei"
1755
  msgstr ""
1756
 
1757
- #: profile-builder-2.0/admin/manage-fields.php:317
1758
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1759
  msgid "Bulgaria"
1760
  msgstr ""
1761
 
1762
- #: profile-builder-2.0/admin/manage-fields.php:318
1763
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1764
  msgid "Burkina Faso"
1765
  msgstr ""
1766
 
1767
- #: profile-builder-2.0/admin/manage-fields.php:319
1768
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1769
  msgid "Burundi"
1770
  msgstr ""
1771
 
1772
- #: profile-builder-2.0/admin/manage-fields.php:320
1773
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1774
  msgid "Cambodia"
1775
  msgstr ""
1776
 
1777
- #: profile-builder-2.0/admin/manage-fields.php:321
1778
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1779
  msgid "Cameroon"
1780
  msgstr ""
1781
 
1782
- #: profile-builder-2.0/admin/manage-fields.php:322
1783
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1784
  msgid "Canada"
1785
  msgstr ""
1786
 
1787
- #: profile-builder-2.0/admin/manage-fields.php:323
1788
  msgid "Cape Verde"
1789
  msgstr ""
1790
 
1791
- #: profile-builder-2.0/admin/manage-fields.php:324
1792
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1793
  msgid "Cayman Islands"
1794
  msgstr ""
1795
 
1796
- #: profile-builder-2.0/admin/manage-fields.php:325
1797
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1798
  msgid "Central African Republic"
1799
  msgstr ""
1800
 
1801
- #: profile-builder-2.0/admin/manage-fields.php:326
1802
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1803
  msgid "Chad"
1804
  msgstr ""
1805
 
1806
- #: profile-builder-2.0/admin/manage-fields.php:327
1807
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1808
  msgid "Chile"
1809
  msgstr ""
1810
 
1811
- #: profile-builder-2.0/admin/manage-fields.php:328
1812
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1813
  msgid "China"
1814
  msgstr ""
1815
 
1816
- #: profile-builder-2.0/admin/manage-fields.php:329
1817
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1818
  msgid "Christmas Island"
1819
  msgstr ""
1820
 
1821
- #: profile-builder-2.0/admin/manage-fields.php:330
1822
  msgid "Cocos Islands"
1823
  msgstr ""
1824
 
1825
- #: profile-builder-2.0/admin/manage-fields.php:331
1826
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1827
  msgid "Colombia"
1828
  msgstr ""
1829
 
1830
- #: profile-builder-2.0/admin/manage-fields.php:332
1831
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1832
  msgid "Comoros"
1833
  msgstr ""
1834
 
1835
- #: profile-builder-2.0/admin/manage-fields.php:333
1836
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1837
  msgid "Cook Islands"
1838
  msgstr ""
1839
 
1840
- #: profile-builder-2.0/admin/manage-fields.php:334
1841
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1842
  msgid "Costa Rica"
1843
  msgstr ""
1844
 
1845
- #: profile-builder-2.0/admin/manage-fields.php:335
1846
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1847
  msgid "Croatia"
1848
  msgstr ""
1849
 
1850
- #: profile-builder-2.0/admin/manage-fields.php:336
1851
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1852
  msgid "Cuba"
1853
  msgstr ""
1854
 
1855
- #: profile-builder-2.0/admin/manage-fields.php:337
1856
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1857
  msgid "Curacao"
1858
  msgstr ""
1859
 
1860
- #: profile-builder-2.0/admin/manage-fields.php:338
1861
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1862
  msgid "Cyprus"
1863
  msgstr ""
1864
 
1865
- #: profile-builder-2.0/admin/manage-fields.php:339
1866
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1867
  msgid "Czech Republic"
1868
  msgstr ""
1869
 
1870
- #: profile-builder-2.0/admin/manage-fields.php:340
1871
  msgid "Democratic Republic of the Congo"
1872
  msgstr ""
1873
 
1874
- #: profile-builder-2.0/admin/manage-fields.php:341
1875
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1876
  msgid "Denmark"
1877
  msgstr ""
1878
 
1879
- #: profile-builder-2.0/admin/manage-fields.php:342
1880
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1881
  msgid "Djibouti"
1882
  msgstr ""
1883
 
1884
- #: profile-builder-2.0/admin/manage-fields.php:343
1885
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1886
  msgid "Dominica"
1887
  msgstr ""
1888
 
1889
- #: profile-builder-2.0/admin/manage-fields.php:344
1890
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1891
  msgid "Dominican Republic"
1892
  msgstr ""
1893
 
1894
- #: profile-builder-2.0/admin/manage-fields.php:345
1895
  msgid "East Timor"
1896
  msgstr ""
1897
 
1898
- #: profile-builder-2.0/admin/manage-fields.php:346
1899
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1900
  msgid "Ecuador"
1901
  msgstr ""
1902
 
1903
- #: profile-builder-2.0/admin/manage-fields.php:347
1904
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1905
  msgid "Egypt"
1906
  msgstr ""
1907
 
1908
- #: profile-builder-2.0/admin/manage-fields.php:348
1909
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1910
  msgid "El Salvador"
1911
  msgstr ""
1912
 
1913
- #: profile-builder-2.0/admin/manage-fields.php:349
1914
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1915
  msgid "Equatorial Guinea"
1916
  msgstr ""
1917
 
1918
- #: profile-builder-2.0/admin/manage-fields.php:350
1919
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1920
  msgid "Eritrea"
1921
  msgstr ""
1922
 
1923
- #: profile-builder-2.0/admin/manage-fields.php:351
1924
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1925
  msgid "Estonia"
1926
  msgstr ""
1927
 
1928
- #: profile-builder-2.0/admin/manage-fields.php:352
1929
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1930
  msgid "Ethiopia"
1931
  msgstr ""
1932
 
1933
- #: profile-builder-2.0/admin/manage-fields.php:353
1934
  msgid "Falkland Islands"
1935
  msgstr ""
1936
 
1937
- #: profile-builder-2.0/admin/manage-fields.php:354
1938
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1939
  msgid "Faroe Islands"
1940
  msgstr ""
1941
 
1942
- #: profile-builder-2.0/admin/manage-fields.php:355
1943
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1944
  msgid "Fiji"
1945
  msgstr ""
1946
 
1947
- #: profile-builder-2.0/admin/manage-fields.php:356
1948
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1949
  msgid "Finland"
1950
  msgstr ""
1951
 
1952
- #: profile-builder-2.0/admin/manage-fields.php:357
1953
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1954
  msgid "France"
1955
  msgstr ""
1956
 
1957
- #: profile-builder-2.0/admin/manage-fields.php:358
1958
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1959
  msgid "French Guiana"
1960
  msgstr ""
1961
 
1962
- #: profile-builder-2.0/admin/manage-fields.php:359
1963
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1964
  msgid "French Polynesia"
1965
  msgstr ""
1966
 
1967
- #: profile-builder-2.0/admin/manage-fields.php:360
1968
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1969
  msgid "French Southern Territories"
1970
  msgstr ""
1971
 
1972
- #: profile-builder-2.0/admin/manage-fields.php:361
1973
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1974
  msgid "Gabon"
1975
  msgstr ""
1976
 
1977
- #: profile-builder-2.0/admin/manage-fields.php:362
1978
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1979
  msgid "Gambia"
1980
  msgstr ""
1981
 
1982
- #: profile-builder-2.0/admin/manage-fields.php:363
1983
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1984
  msgid "Georgia"
1985
  msgstr ""
1986
 
1987
- #: profile-builder-2.0/admin/manage-fields.php:364
1988
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1989
  msgid "Germany"
1990
  msgstr ""
1991
 
1992
- #: profile-builder-2.0/admin/manage-fields.php:365
1993
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1994
  msgid "Ghana"
1995
  msgstr ""
1996
 
1997
- #: profile-builder-2.0/admin/manage-fields.php:366
1998
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
1999
  msgid "Gibraltar"
2000
  msgstr ""
2001
 
2002
- #: profile-builder-2.0/admin/manage-fields.php:367
2003
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2004
  msgid "Greece"
2005
  msgstr ""
2006
 
2007
- #: profile-builder-2.0/admin/manage-fields.php:368
2008
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2009
  msgid "Greenland"
2010
  msgstr ""
2011
 
2012
- #: profile-builder-2.0/admin/manage-fields.php:369
2013
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2014
  msgid "Grenada"
2015
  msgstr ""
2016
 
2017
- #: profile-builder-2.0/admin/manage-fields.php:370
2018
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2019
  msgid "Guadeloupe"
2020
  msgstr ""
2021
 
2022
- #: profile-builder-2.0/admin/manage-fields.php:371
2023
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2024
  msgid "Guam"
2025
  msgstr ""
2026
 
2027
- #: profile-builder-2.0/admin/manage-fields.php:372
2028
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2029
  msgid "Guatemala"
2030
  msgstr ""
2031
 
2032
- #: profile-builder-2.0/admin/manage-fields.php:373
2033
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2034
  msgid "Guernsey"
2035
  msgstr ""
2036
 
2037
- #: profile-builder-2.0/admin/manage-fields.php:374
2038
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2039
  msgid "Guinea"
2040
  msgstr ""
2041
 
2042
- #: profile-builder-2.0/admin/manage-fields.php:375
2043
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2044
  msgid "Guinea-Bissau"
2045
  msgstr ""
2046
 
2047
- #: profile-builder-2.0/admin/manage-fields.php:376
2048
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2049
  msgid "Guyana"
2050
  msgstr ""
2051
 
2052
- #: profile-builder-2.0/admin/manage-fields.php:377
2053
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2054
  msgid "Haiti"
2055
  msgstr ""
2056
 
2057
- #: profile-builder-2.0/admin/manage-fields.php:378
2058
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2059
  msgid "Heard Island and McDonald Islands"
2060
  msgstr ""
2061
 
2062
- #: profile-builder-2.0/admin/manage-fields.php:379
2063
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2064
  msgid "Honduras"
2065
  msgstr ""
2066
 
2067
- #: profile-builder-2.0/admin/manage-fields.php:380
2068
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2069
  msgid "Hong Kong"
2070
  msgstr ""
2071
 
2072
- #: profile-builder-2.0/admin/manage-fields.php:381
2073
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2074
  msgid "Hungary"
2075
  msgstr ""
2076
 
2077
- #: profile-builder-2.0/admin/manage-fields.php:382
2078
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2079
  msgid "Iceland"
2080
  msgstr ""
2081
 
2082
- #: profile-builder-2.0/admin/manage-fields.php:383
2083
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2084
  msgid "India"
2085
  msgstr ""
2086
 
2087
- #: profile-builder-2.0/admin/manage-fields.php:384
2088
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2089
  msgid "Indonesia"
2090
  msgstr ""
2091
 
2092
- #: profile-builder-2.0/admin/manage-fields.php:385
2093
  msgid "Iran"
2094
  msgstr ""
2095
 
2096
- #: profile-builder-2.0/admin/manage-fields.php:386
2097
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2098
  msgid "Iraq"
2099
  msgstr ""
2100
 
2101
- #: profile-builder-2.0/admin/manage-fields.php:387
2102
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2103
  msgid "Ireland"
2104
  msgstr ""
2105
 
2106
- #: profile-builder-2.0/admin/manage-fields.php:388
2107
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2108
  msgid "Isle of Man"
2109
  msgstr ""
2110
 
2111
- #: profile-builder-2.0/admin/manage-fields.php:389
2112
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2113
  msgid "Israel"
2114
  msgstr ""
2115
 
2116
- #: profile-builder-2.0/admin/manage-fields.php:390
2117
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2118
  msgid "Italy"
2119
  msgstr ""
2120
 
2121
- #: profile-builder-2.0/admin/manage-fields.php:391
2122
  msgid "Ivory Coast"
2123
  msgstr ""
2124
 
2125
- #: profile-builder-2.0/admin/manage-fields.php:392
2126
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2127
  msgid "Jamaica"
2128
  msgstr ""
2129
 
2130
- #: profile-builder-2.0/admin/manage-fields.php:393
2131
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2132
  msgid "Japan"
2133
  msgstr ""
2134
 
2135
- #: profile-builder-2.0/admin/manage-fields.php:394
2136
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2137
  msgid "Jersey"
2138
  msgstr ""
2139
 
2140
- #: profile-builder-2.0/admin/manage-fields.php:395
2141
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2142
  msgid "Jordan"
2143
  msgstr ""
2144
 
2145
- #: profile-builder-2.0/admin/manage-fields.php:396
2146
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2147
  msgid "Kazakhstan"
2148
  msgstr ""
2149
 
2150
- #: profile-builder-2.0/admin/manage-fields.php:397
2151
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2152
  msgid "Kenya"
2153
  msgstr ""
2154
 
2155
- #: profile-builder-2.0/admin/manage-fields.php:398
2156
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2157
  msgid "Kiribati"
2158
  msgstr ""
2159
 
2160
- #: profile-builder-2.0/admin/manage-fields.php:399
2161
  msgid "Kosovo"
2162
  msgstr ""
2163
 
2164
- #: profile-builder-2.0/admin/manage-fields.php:400
2165
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2166
  msgid "Kuwait"
2167
  msgstr ""
2168
 
2169
- #: profile-builder-2.0/admin/manage-fields.php:401
2170
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2171
  msgid "Kyrgyzstan"
2172
  msgstr ""
2173
 
2174
- #: profile-builder-2.0/admin/manage-fields.php:402
2175
  msgid "Laos"
2176
  msgstr ""
2177
 
2178
- #: profile-builder-2.0/admin/manage-fields.php:403
2179
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2180
  msgid "Latvia"
2181
  msgstr ""
2182
 
2183
- #: profile-builder-2.0/admin/manage-fields.php:404
2184
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2185
  msgid "Lebanon"
2186
  msgstr ""
2187
 
2188
- #: profile-builder-2.0/admin/manage-fields.php:405
2189
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2190
  msgid "Lesotho"
2191
  msgstr ""
2192
 
2193
- #: profile-builder-2.0/admin/manage-fields.php:406
2194
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2195
  msgid "Liberia"
2196
  msgstr ""
2197
 
2198
- #: profile-builder-2.0/admin/manage-fields.php:407
2199
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2200
  msgid "Libya"
2201
  msgstr ""
2202
 
2203
- #: profile-builder-2.0/admin/manage-fields.php:408
2204
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2205
  msgid "Liechtenstein"
2206
  msgstr ""
2207
 
2208
- #: profile-builder-2.0/admin/manage-fields.php:409
2209
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2210
  msgid "Lithuania"
2211
  msgstr ""
2212
 
2213
- #: profile-builder-2.0/admin/manage-fields.php:410
2214
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2215
  msgid "Luxembourg"
2216
  msgstr ""
2217
 
2218
- #: profile-builder-2.0/admin/manage-fields.php:411
2219
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2220
  msgid "Macao"
2221
  msgstr ""
2222
 
2223
- #: profile-builder-2.0/admin/manage-fields.php:412
2224
  msgid "Macedonia"
2225
  msgstr ""
2226
 
2227
- #: profile-builder-2.0/admin/manage-fields.php:413
2228
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2229
  msgid "Madagascar"
2230
  msgstr ""
2231
 
2232
- #: profile-builder-2.0/admin/manage-fields.php:414
2233
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2234
  msgid "Malawi"
2235
  msgstr ""
2236
 
2237
- #: profile-builder-2.0/admin/manage-fields.php:415
2238
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2239
  msgid "Malaysia"
2240
  msgstr ""
2241
 
2242
- #: profile-builder-2.0/admin/manage-fields.php:416
2243
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2244
  msgid "Maldives"
2245
  msgstr ""
2246
 
2247
- #: profile-builder-2.0/admin/manage-fields.php:417
2248
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2249
  msgid "Mali"
2250
  msgstr ""
2251
 
2252
- #: profile-builder-2.0/admin/manage-fields.php:418
2253
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2254
  msgid "Malta"
2255
  msgstr ""
2256
 
2257
- #: profile-builder-2.0/admin/manage-fields.php:419
2258
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2259
  msgid "Marshall Islands"
2260
  msgstr ""
2261
 
2262
- #: profile-builder-2.0/admin/manage-fields.php:420
2263
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2264
  msgid "Martinique"
2265
  msgstr ""
2266
 
2267
- #: profile-builder-2.0/admin/manage-fields.php:421
2268
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2269
  msgid "Mauritania"
2270
  msgstr ""
2271
 
2272
- #: profile-builder-2.0/admin/manage-fields.php:422
2273
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2274
  msgid "Mauritius"
2275
  msgstr ""
2276
 
2277
- #: profile-builder-2.0/admin/manage-fields.php:423
2278
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2279
  msgid "Mayotte"
2280
  msgstr ""
2281
 
2282
- #: profile-builder-2.0/admin/manage-fields.php:424
2283
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2284
  msgid "Mexico"
2285
  msgstr ""
2286
 
2287
- #: profile-builder-2.0/admin/manage-fields.php:425
2288
  msgid "Micronesia"
2289
  msgstr ""
2290
 
2291
- #: profile-builder-2.0/admin/manage-fields.php:426
2292
  msgid "Moldova"
2293
  msgstr ""
2294
 
2295
- #: profile-builder-2.0/admin/manage-fields.php:427
2296
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2297
  msgid "Monaco"
2298
  msgstr ""
2299
 
2300
- #: profile-builder-2.0/admin/manage-fields.php:428
2301
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2302
  msgid "Mongolia"
2303
  msgstr ""
2304
 
2305
- #: profile-builder-2.0/admin/manage-fields.php:429
2306
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2307
  msgid "Montenegro"
2308
  msgstr ""
2309
 
2310
- #: profile-builder-2.0/admin/manage-fields.php:430
2311
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2312
  msgid "Montserrat"
2313
  msgstr ""
2314
 
2315
- #: profile-builder-2.0/admin/manage-fields.php:431
2316
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2317
  msgid "Morocco"
2318
  msgstr ""
2319
 
2320
- #: profile-builder-2.0/admin/manage-fields.php:432
2321
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2322
  msgid "Mozambique"
2323
  msgstr ""
2324
 
2325
- #: profile-builder-2.0/admin/manage-fields.php:433
2326
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2327
  msgid "Myanmar"
2328
  msgstr ""
2329
 
2330
- #: profile-builder-2.0/admin/manage-fields.php:434
2331
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2332
  msgid "Namibia"
2333
  msgstr ""
2334
 
2335
- #: profile-builder-2.0/admin/manage-fields.php:435
2336
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2337
  msgid "Nauru"
2338
  msgstr ""
2339
 
2340
- #: profile-builder-2.0/admin/manage-fields.php:436
2341
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2342
  msgid "Nepal"
2343
  msgstr ""
2344
 
2345
- #: profile-builder-2.0/admin/manage-fields.php:437
2346
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2347
  msgid "Netherlands"
2348
  msgstr ""
2349
 
2350
- #: profile-builder-2.0/admin/manage-fields.php:438
2351
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2352
  msgid "New Caledonia"
2353
  msgstr ""
2354
 
2355
- #: profile-builder-2.0/admin/manage-fields.php:439
2356
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2357
  msgid "New Zealand"
2358
  msgstr ""
2359
 
2360
- #: profile-builder-2.0/admin/manage-fields.php:440
2361
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2362
  msgid "Nicaragua"
2363
  msgstr ""
2364
 
2365
- #: profile-builder-2.0/admin/manage-fields.php:441
2366
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2367
  msgid "Niger"
2368
  msgstr ""
2369
 
2370
- #: profile-builder-2.0/admin/manage-fields.php:442
2371
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2372
  msgid "Nigeria"
2373
  msgstr ""
2374
 
2375
- #: profile-builder-2.0/admin/manage-fields.php:443
2376
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2377
  msgid "Niue"
2378
  msgstr ""
2379
 
2380
- #: profile-builder-2.0/admin/manage-fields.php:444
2381
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2382
  msgid "Norfolk Island"
2383
  msgstr ""
2384
 
2385
- #: profile-builder-2.0/admin/manage-fields.php:445
2386
  msgid "North Korea"
2387
  msgstr ""
2388
 
2389
- #: profile-builder-2.0/admin/manage-fields.php:446
2390
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2391
  msgid "Northern Mariana Islands"
2392
  msgstr ""
2393
 
2394
- #: profile-builder-2.0/admin/manage-fields.php:447
2395
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2396
  msgid "Norway"
2397
  msgstr ""
2398
 
2399
- #: profile-builder-2.0/admin/manage-fields.php:448
2400
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2401
  msgid "Oman"
2402
  msgstr ""
2403
 
2404
- #: profile-builder-2.0/admin/manage-fields.php:449
2405
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2406
  msgid "Pakistan"
2407
  msgstr ""
2408
 
2409
- #: profile-builder-2.0/admin/manage-fields.php:450
2410
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2411
  msgid "Palau"
2412
  msgstr ""
2413
 
2414
- #: profile-builder-2.0/admin/manage-fields.php:451
2415
  msgid "Palestinian Territory"
2416
  msgstr ""
2417
 
2418
- #: profile-builder-2.0/admin/manage-fields.php:452
2419
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2420
  msgid "Panama"
2421
  msgstr ""
2422
 
2423
- #: profile-builder-2.0/admin/manage-fields.php:453
2424
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2425
  msgid "Papua New Guinea"
2426
  msgstr ""
2427
 
2428
- #: profile-builder-2.0/admin/manage-fields.php:454
2429
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2430
  msgid "Paraguay"
2431
  msgstr ""
2432
 
2433
- #: profile-builder-2.0/admin/manage-fields.php:455
2434
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2435
  msgid "Peru"
2436
  msgstr ""
2437
 
2438
- #: profile-builder-2.0/admin/manage-fields.php:456
2439
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2440
  msgid "Philippines"
2441
  msgstr ""
2442
 
2443
- #: profile-builder-2.0/admin/manage-fields.php:457
2444
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2445
  msgid "Pitcairn"
2446
  msgstr ""
2447
 
2448
- #: profile-builder-2.0/admin/manage-fields.php:458
2449
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2450
  msgid "Poland"
2451
  msgstr ""
2452
 
2453
- #: profile-builder-2.0/admin/manage-fields.php:459
2454
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2455
  msgid "Portugal"
2456
  msgstr ""
2457
 
2458
- #: profile-builder-2.0/admin/manage-fields.php:460
2459
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2460
  msgid "Puerto Rico"
2461
  msgstr ""
2462
 
2463
- #: profile-builder-2.0/admin/manage-fields.php:461
2464
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2465
  msgid "Qatar"
2466
  msgstr ""
2467
 
2468
- #: profile-builder-2.0/admin/manage-fields.php:462
2469
  msgid "Republic of the Congo"
2470
  msgstr ""
2471
 
2472
- #: profile-builder-2.0/admin/manage-fields.php:463
2473
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2474
  msgid "Reunion"
2475
  msgstr ""
2476
 
2477
- #: profile-builder-2.0/admin/manage-fields.php:464
2478
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2479
  msgid "Romania"
2480
  msgstr ""
2481
 
2482
- #: profile-builder-2.0/admin/manage-fields.php:465
2483
  msgid "Russia"
2484
  msgstr ""
2485
 
2486
- #: profile-builder-2.0/admin/manage-fields.php:466
2487
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2488
  msgid "Rwanda"
2489
  msgstr ""
2490
 
2491
- #: profile-builder-2.0/admin/manage-fields.php:467
2492
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2493
  msgid "Saint Barthelemy"
2494
  msgstr ""
2495
 
2496
- #: profile-builder-2.0/admin/manage-fields.php:468
2497
  msgid "Saint Helena"
2498
  msgstr ""
2499
 
2500
- #: profile-builder-2.0/admin/manage-fields.php:469
2501
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2502
  msgid "Saint Kitts and Nevis"
2503
  msgstr ""
2504
 
2505
- #: profile-builder-2.0/admin/manage-fields.php:470
2506
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2507
  msgid "Saint Lucia"
2508
  msgstr ""
2509
 
2510
- #: profile-builder-2.0/admin/manage-fields.php:471
2511
  msgid "Saint Martin"
2512
  msgstr ""
2513
 
2514
- #: profile-builder-2.0/admin/manage-fields.php:472
2515
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2516
  msgid "Saint Pierre and Miquelon"
2517
  msgstr ""
2518
 
2519
- #: profile-builder-2.0/admin/manage-fields.php:473
2520
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2521
  msgid "Saint Vincent and the Grenadines"
2522
  msgstr ""
2523
 
2524
- #: profile-builder-2.0/admin/manage-fields.php:474
2525
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2526
  msgid "Samoa"
2527
  msgstr ""
2528
 
2529
- #: profile-builder-2.0/admin/manage-fields.php:475
2530
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2531
  msgid "San Marino"
2532
  msgstr ""
2533
 
2534
- #: profile-builder-2.0/admin/manage-fields.php:476
2535
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2536
  msgid "Sao Tome and Principe"
2537
  msgstr ""
2538
 
2539
- #: profile-builder-2.0/admin/manage-fields.php:477
2540
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2541
  msgid "Saudi Arabia"
2542
  msgstr ""
2543
 
2544
- #: profile-builder-2.0/admin/manage-fields.php:478
2545
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2546
  msgid "Senegal"
2547
  msgstr ""
2548
 
2549
- #: profile-builder-2.0/admin/manage-fields.php:479
2550
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2551
  msgid "Serbia"
2552
  msgstr ""
2553
 
2554
- #: profile-builder-2.0/admin/manage-fields.php:480
2555
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2556
  msgid "Seychelles"
2557
  msgstr ""
2558
 
2559
- #: profile-builder-2.0/admin/manage-fields.php:481
2560
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2561
  msgid "Sierra Leone"
2562
  msgstr ""
2563
 
2564
- #: profile-builder-2.0/admin/manage-fields.php:482
2565
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2566
  msgid "Singapore"
2567
  msgstr ""
2568
 
2569
- #: profile-builder-2.0/admin/manage-fields.php:483
2570
  msgid "Sint Maarten"
2571
  msgstr ""
2572
 
2573
- #: profile-builder-2.0/admin/manage-fields.php:484
2574
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2575
  msgid "Slovakia"
2576
  msgstr ""
2577
 
2578
- #: profile-builder-2.0/admin/manage-fields.php:485
2579
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2580
  msgid "Slovenia"
2581
  msgstr ""
2582
 
2583
- #: profile-builder-2.0/admin/manage-fields.php:486
2584
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2585
  msgid "Solomon Islands"
2586
  msgstr ""
2587
 
2588
- #: profile-builder-2.0/admin/manage-fields.php:487
2589
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2590
  msgid "Somalia"
2591
  msgstr ""
2592
 
2593
- #: profile-builder-2.0/admin/manage-fields.php:488
2594
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2595
  msgid "South Africa"
2596
  msgstr ""
2597
 
2598
- #: profile-builder-2.0/admin/manage-fields.php:489
2599
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2600
  msgid "South Georgia and the South Sandwich Islands"
2601
  msgstr ""
2602
 
2603
- #: profile-builder-2.0/admin/manage-fields.php:490
2604
  msgid "South Korea"
2605
  msgstr ""
2606
 
2607
- #: profile-builder-2.0/admin/manage-fields.php:491
2608
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2609
  msgid "South Sudan"
2610
  msgstr ""
2611
 
2612
- #: profile-builder-2.0/admin/manage-fields.php:492
2613
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2614
  msgid "Spain"
2615
  msgstr ""
2616
 
2617
- #: profile-builder-2.0/admin/manage-fields.php:493
2618
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2619
  msgid "Sri Lanka"
2620
  msgstr ""
2621
 
2622
- #: profile-builder-2.0/admin/manage-fields.php:494
2623
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2624
  msgid "Sudan"
2625
  msgstr ""
2626
 
2627
- #: profile-builder-2.0/admin/manage-fields.php:495
2628
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2629
  msgid "Suriname"
2630
  msgstr ""
2631
 
2632
- #: profile-builder-2.0/admin/manage-fields.php:496
2633
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2634
  msgid "Svalbard and Jan Mayen"
2635
  msgstr ""
2636
 
2637
- #: profile-builder-2.0/admin/manage-fields.php:497
2638
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2639
  msgid "Swaziland"
2640
  msgstr ""
2641
 
2642
- #: profile-builder-2.0/admin/manage-fields.php:498
2643
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2644
  msgid "Sweden"
2645
  msgstr ""
2646
 
2647
- #: profile-builder-2.0/admin/manage-fields.php:499
2648
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2649
  msgid "Switzerland"
2650
  msgstr ""
2651
 
2652
- #: profile-builder-2.0/admin/manage-fields.php:500
2653
  msgid "Syria"
2654
  msgstr ""
2655
 
2656
- #: profile-builder-2.0/admin/manage-fields.php:501
2657
  msgid "Taiwan"
2658
  msgstr ""
2659
 
2660
- #: profile-builder-2.0/admin/manage-fields.php:502
2661
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2662
  msgid "Tajikistan"
2663
  msgstr ""
2664
 
2665
- #: profile-builder-2.0/admin/manage-fields.php:503
2666
  msgid "Tanzania"
2667
  msgstr ""
2668
 
2669
- #: profile-builder-2.0/admin/manage-fields.php:504
2670
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2671
  msgid "Thailand"
2672
  msgstr ""
2673
 
2674
- #: profile-builder-2.0/admin/manage-fields.php:505
2675
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2676
  msgid "Togo"
2677
  msgstr ""
2678
 
2679
- #: profile-builder-2.0/admin/manage-fields.php:506
2680
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2681
  msgid "Tokelau"
2682
  msgstr ""
2683
 
2684
- #: profile-builder-2.0/admin/manage-fields.php:507
2685
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2686
  msgid "Tonga"
2687
  msgstr ""
2688
 
2689
- #: profile-builder-2.0/admin/manage-fields.php:508
2690
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2691
  msgid "Trinidad and Tobago"
2692
  msgstr ""
2693
 
2694
- #: profile-builder-2.0/admin/manage-fields.php:509
2695
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2696
  msgid "Tunisia"
2697
  msgstr ""
2698
 
2699
- #: profile-builder-2.0/admin/manage-fields.php:510
2700
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2701
  msgid "Turkey"
2702
  msgstr ""
2703
 
2704
- #: profile-builder-2.0/admin/manage-fields.php:511
2705
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2706
  msgid "Turkmenistan"
2707
  msgstr ""
2708
 
2709
- #: profile-builder-2.0/admin/manage-fields.php:512
2710
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2711
  msgid "Turks and Caicos Islands"
2712
  msgstr ""
2713
 
2714
- #: profile-builder-2.0/admin/manage-fields.php:513
2715
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2716
  msgid "Tuvalu"
2717
  msgstr ""
2718
 
2719
- #: profile-builder-2.0/admin/manage-fields.php:514
2720
  msgid "U.S. Virgin Islands"
2721
  msgstr ""
2722
 
2723
- #: profile-builder-2.0/admin/manage-fields.php:515
2724
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2725
  msgid "Uganda"
2726
  msgstr ""
2727
 
2728
- #: profile-builder-2.0/admin/manage-fields.php:516
2729
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2730
  msgid "Ukraine"
2731
  msgstr ""
2732
 
2733
- #: profile-builder-2.0/admin/manage-fields.php:517
2734
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2735
  msgid "United Arab Emirates"
2736
  msgstr ""
2737
 
2738
- #: profile-builder-2.0/admin/manage-fields.php:518
2739
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2740
  msgid "United Kingdom"
2741
  msgstr ""
2742
 
2743
- #: profile-builder-2.0/admin/manage-fields.php:519
2744
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2745
  msgid "United States"
2746
  msgstr ""
2747
 
2748
- #: profile-builder-2.0/admin/manage-fields.php:520
2749
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2750
  msgid "United States Minor Outlying Islands"
2751
  msgstr ""
2752
 
2753
- #: profile-builder-2.0/admin/manage-fields.php:521
2754
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2755
  msgid "Uruguay"
2756
  msgstr ""
2757
 
2758
- #: profile-builder-2.0/admin/manage-fields.php:522
2759
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2760
  msgid "Uzbekistan"
2761
  msgstr ""
2762
 
2763
- #: profile-builder-2.0/admin/manage-fields.php:523
2764
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2765
  msgid "Vanuatu"
2766
  msgstr ""
2767
 
2768
- #: profile-builder-2.0/admin/manage-fields.php:524
2769
  msgid "Vatican"
2770
  msgstr ""
2771
 
2772
- #: profile-builder-2.0/admin/manage-fields.php:525
2773
  msgid "Venezuela"
2774
  msgstr ""
2775
 
2776
- #: profile-builder-2.0/admin/manage-fields.php:526
2777
  msgid "Vietnam"
2778
  msgstr ""
2779
 
2780
- #: profile-builder-2.0/admin/manage-fields.php:527
2781
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2782
  msgid "Wallis and Futuna"
2783
  msgstr ""
2784
 
2785
- #: profile-builder-2.0/admin/manage-fields.php:528
2786
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2787
  msgid "Western Sahara"
2788
  msgstr ""
2789
 
2790
- #: profile-builder-2.0/admin/manage-fields.php:529
2791
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2792
  msgid "Yemen"
2793
  msgstr ""
2794
 
2795
- #: profile-builder-2.0/admin/manage-fields.php:530
2796
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2797
  msgid "Zambia"
2798
  msgstr ""
2799
 
2800
- #: profile-builder-2.0/admin/manage-fields.php:531
2801
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
2802
  msgid "Zimbabwe"
2803
  msgstr ""
2804
 
2805
- #: profile-builder-2.0/admin/manage-fields.php:564
2806
  msgid "Albania Lek"
2807
  msgstr ""
2808
 
2809
- #: profile-builder-2.0/admin/manage-fields.php:565
2810
  msgid "Afghanistan Afghani"
2811
  msgstr ""
2812
 
2813
- #: profile-builder-2.0/admin/manage-fields.php:566
2814
  msgid "Argentina Peso"
2815
  msgstr ""
2816
 
2817
- #: profile-builder-2.0/admin/manage-fields.php:567
2818
  msgid "Aruba Guilder"
2819
  msgstr ""
2820
 
2821
- #: profile-builder-2.0/admin/manage-fields.php:568
2822
  msgid "Australia Dollar"
2823
  msgstr ""
2824
 
2825
- #: profile-builder-2.0/admin/manage-fields.php:569
2826
  msgid "Azerbaijan New Manat"
2827
  msgstr ""
2828
 
2829
- #: profile-builder-2.0/admin/manage-fields.php:570
2830
  msgid "Bahamas Dollar"
2831
  msgstr ""
2832
 
2833
- #: profile-builder-2.0/admin/manage-fields.php:571
2834
  msgid "Barbados Dollar"
2835
  msgstr ""
2836
 
2837
- #: profile-builder-2.0/admin/manage-fields.php:572
2838
  msgid "Bangladeshi taka"
2839
  msgstr ""
2840
 
2841
- #: profile-builder-2.0/admin/manage-fields.php:573
2842
  msgid "Belarus Ruble"
2843
  msgstr ""
2844
 
2845
- #: profile-builder-2.0/admin/manage-fields.php:574
2846
  msgid "Belize Dollar"
2847
  msgstr ""
2848
 
2849
- #: profile-builder-2.0/admin/manage-fields.php:575
2850
  msgid "Bermuda Dollar"
2851
  msgstr ""
2852
 
2853
- #: profile-builder-2.0/admin/manage-fields.php:576
2854
  msgid "Bolivia Boliviano"
2855
  msgstr ""
2856
 
2857
- #: profile-builder-2.0/admin/manage-fields.php:577
2858
  msgid "Bosnia and Herzegovina Convertible Marka"
2859
  msgstr ""
2860
 
2861
- #: profile-builder-2.0/admin/manage-fields.php:578
2862
  msgid "Botswana Pula"
2863
  msgstr ""
2864
 
2865
- #: profile-builder-2.0/admin/manage-fields.php:579
2866
  msgid "Bulgaria Lev"
2867
  msgstr ""
2868
 
2869
- #: profile-builder-2.0/admin/manage-fields.php:580
2870
  msgid "Brazil Real"
2871
  msgstr ""
2872
 
2873
- #: profile-builder-2.0/admin/manage-fields.php:581
2874
  msgid "Brunei Darussalam Dollar"
2875
  msgstr ""
2876
 
2877
- #: profile-builder-2.0/admin/manage-fields.php:582
2878
  msgid "Cambodia Riel"
2879
  msgstr ""
2880
 
2881
- #: profile-builder-2.0/admin/manage-fields.php:583
2882
  msgid "Canada Dollar"
2883
  msgstr ""
2884
 
2885
- #: profile-builder-2.0/admin/manage-fields.php:584
2886
  msgid "Cayman Islands Dollar"
2887
  msgstr ""
2888
 
2889
- #: profile-builder-2.0/admin/manage-fields.php:585
2890
  msgid "Chile Peso"
2891
  msgstr ""
2892
 
2893
- #: profile-builder-2.0/admin/manage-fields.php:586
2894
  msgid "China Yuan Renminbi"
2895
  msgstr ""
2896
 
2897
- #: profile-builder-2.0/admin/manage-fields.php:587
2898
  msgid "Colombia Peso"
2899
  msgstr ""
2900
 
2901
- #: profile-builder-2.0/admin/manage-fields.php:588
2902
  msgid "Costa Rica Colon"
2903
  msgstr ""
2904
 
2905
- #: profile-builder-2.0/admin/manage-fields.php:589
2906
  msgid "Croatia Kuna"
2907
  msgstr ""
2908
 
2909
- #: profile-builder-2.0/admin/manage-fields.php:590
2910
  msgid "Cuba Peso"
2911
  msgstr ""
2912
 
2913
- #: profile-builder-2.0/admin/manage-fields.php:591
2914
  msgid "Czech Republic Koruna"
2915
  msgstr ""
2916
 
2917
- #: profile-builder-2.0/admin/manage-fields.php:592
2918
  msgid "Denmark Krone"
2919
  msgstr ""
2920
 
2921
- #: profile-builder-2.0/admin/manage-fields.php:593
2922
  msgid "Dominican Republic Peso"
2923
  msgstr ""
2924
 
2925
- #: profile-builder-2.0/admin/manage-fields.php:594
2926
  msgid "East Caribbean Dollar"
2927
  msgstr ""
2928
 
2929
- #: profile-builder-2.0/admin/manage-fields.php:595
2930
  msgid "Egypt Pound"
2931
  msgstr ""
2932
 
2933
- #: profile-builder-2.0/admin/manage-fields.php:596
2934
  msgid "El Salvador Colon"
2935
  msgstr ""
2936
 
2937
- #: profile-builder-2.0/admin/manage-fields.php:597
2938
  msgid "Estonia Kroon"
2939
  msgstr ""
2940
 
2941
- #: profile-builder-2.0/admin/manage-fields.php:598
2942
  msgid "Euro"
2943
  msgstr ""
2944
 
2945
- #: profile-builder-2.0/admin/manage-fields.php:599
2946
  msgid "Falkland Islands (Malvinas) Pound"
2947
  msgstr ""
2948
 
2949
- #: profile-builder-2.0/admin/manage-fields.php:600
2950
  msgid "Fiji Dollar"
2951
  msgstr ""
2952
 
2953
- #: profile-builder-2.0/admin/manage-fields.php:601
2954
  msgid "Ghana Cedis"
2955
  msgstr ""
2956
 
2957
- #: profile-builder-2.0/admin/manage-fields.php:602
2958
  msgid "Gibraltar Pound"
2959
  msgstr ""
2960
 
2961
- #: profile-builder-2.0/admin/manage-fields.php:603
2962
  msgid "Guatemala Quetzal"
2963
  msgstr ""
2964
 
2965
- #: profile-builder-2.0/admin/manage-fields.php:604
2966
  msgid "Guernsey Pound"
2967
  msgstr ""
2968
 
2969
- #: profile-builder-2.0/admin/manage-fields.php:605
2970
  msgid "Guyana Dollar"
2971
  msgstr ""
2972
 
2973
- #: profile-builder-2.0/admin/manage-fields.php:606
2974
  msgid "Honduras Lempira"
2975
  msgstr ""
2976
 
2977
- #: profile-builder-2.0/admin/manage-fields.php:607
2978
  msgid "Hong Kong Dollar"
2979
  msgstr ""
2980
 
2981
- #: profile-builder-2.0/admin/manage-fields.php:608
2982
  msgid "Hungary Forint"
2983
  msgstr ""
2984
 
2985
- #: profile-builder-2.0/admin/manage-fields.php:609
2986
  msgid "Iceland Krona"
2987
  msgstr ""
2988
 
2989
- #: profile-builder-2.0/admin/manage-fields.php:610
2990
  msgid "India Rupee"
2991
  msgstr ""
2992
 
2993
- #: profile-builder-2.0/admin/manage-fields.php:611
2994
  msgid "Indonesia Rupiah"
2995
  msgstr ""
2996
 
2997
- #: profile-builder-2.0/admin/manage-fields.php:612
2998
  msgid "Iran Rial"
2999
  msgstr ""
3000
 
3001
- #: profile-builder-2.0/admin/manage-fields.php:613
3002
  msgid "Isle of Man Pound"
3003
  msgstr ""
3004
 
3005
- #: profile-builder-2.0/admin/manage-fields.php:614
3006
  msgid "Israel Shekel"
3007
  msgstr ""
3008
 
3009
- #: profile-builder-2.0/admin/manage-fields.php:615
3010
  msgid "Jamaica Dollar"
3011
  msgstr ""
3012
 
3013
- #: profile-builder-2.0/admin/manage-fields.php:616
3014
  msgid "Japan Yen"
3015
  msgstr ""
3016
 
3017
- #: profile-builder-2.0/admin/manage-fields.php:617
3018
  msgid "Jersey Pound"
3019
  msgstr ""
3020
 
3021
- #: profile-builder-2.0/admin/manage-fields.php:618
3022
  msgid "Kazakhstan Tenge"
3023
  msgstr ""
3024
 
3025
- #: profile-builder-2.0/admin/manage-fields.php:619
3026
  msgid "Korea (North) Won"
3027
  msgstr ""
3028
 
3029
- #: profile-builder-2.0/admin/manage-fields.php:620
3030
  msgid "Korea (South) Won"
3031
  msgstr ""
3032
 
3033
- #: profile-builder-2.0/admin/manage-fields.php:621
3034
  msgid "Kyrgyzstan Som"
3035
  msgstr ""
3036
 
3037
- #: profile-builder-2.0/admin/manage-fields.php:622
3038
  msgid "Laos Kip"
3039
  msgstr ""
3040
 
3041
- #: profile-builder-2.0/admin/manage-fields.php:623
3042
  msgid "Latvia Lat"
3043
  msgstr ""
3044
 
3045
- #: profile-builder-2.0/admin/manage-fields.php:624
3046
  msgid "Lebanon Pound"
3047
  msgstr ""
3048
 
3049
- #: profile-builder-2.0/admin/manage-fields.php:625
3050
  msgid "Liberia Dollar"
3051
  msgstr ""
3052
 
3053
- #: profile-builder-2.0/admin/manage-fields.php:626
3054
  msgid "Lithuania Litas"
3055
  msgstr ""
3056
 
3057
- #: profile-builder-2.0/admin/manage-fields.php:627
3058
  msgid "Macedonia Denar"
3059
  msgstr ""
3060
 
3061
- #: profile-builder-2.0/admin/manage-fields.php:628
3062
  msgid "Malaysia Ringgit"
3063
  msgstr ""
3064
 
3065
- #: profile-builder-2.0/admin/manage-fields.php:629
3066
  msgid "Mauritius Rupee"
3067
  msgstr ""
3068
 
3069
- #: profile-builder-2.0/admin/manage-fields.php:630
3070
  msgid "Mexico Peso"
3071
  msgstr ""
3072
 
3073
- #: profile-builder-2.0/admin/manage-fields.php:631
3074
  msgid "Mongolia Tughrik"
3075
  msgstr ""
3076
 
3077
- #: profile-builder-2.0/admin/manage-fields.php:632
3078
  msgid "Mozambique Metical"
3079
  msgstr ""
3080
 
3081
- #: profile-builder-2.0/admin/manage-fields.php:633
3082
  msgid "Namibia Dollar"
3083
  msgstr ""
3084
 
3085
- #: profile-builder-2.0/admin/manage-fields.php:634
3086
  msgid "Nepal Rupee"
3087
  msgstr ""
3088
 
3089
- #: profile-builder-2.0/admin/manage-fields.php:635
3090
  msgid "Netherlands Antilles Guilder"
3091
  msgstr ""
3092
 
3093
- #: profile-builder-2.0/admin/manage-fields.php:636
3094
  msgid "New Zealand Dollar"
3095
  msgstr ""
3096
 
3097
- #: profile-builder-2.0/admin/manage-fields.php:637
3098
  msgid "Nicaragua Cordoba"
3099
  msgstr ""
3100
 
3101
- #: profile-builder-2.0/admin/manage-fields.php:638
3102
  msgid "Nigeria Naira"
3103
  msgstr ""
3104
 
3105
- #: profile-builder-2.0/admin/manage-fields.php:639
3106
  msgid "Norway Krone"
3107
  msgstr ""
3108
 
3109
- #: profile-builder-2.0/admin/manage-fields.php:640
3110
  msgid "Oman Rial"
3111
  msgstr ""
3112
 
3113
- #: profile-builder-2.0/admin/manage-fields.php:641
3114
  msgid "Pakistan Rupee"
3115
  msgstr ""
3116
 
3117
- #: profile-builder-2.0/admin/manage-fields.php:642
3118
  msgid "Panama Balboa"
3119
  msgstr ""
3120
 
3121
- #: profile-builder-2.0/admin/manage-fields.php:643
3122
  msgid "Paraguay Guarani"
3123
  msgstr ""
3124
 
3125
- #: profile-builder-2.0/admin/manage-fields.php:644
3126
  msgid "Peru Nuevo Sol"
3127
  msgstr ""
3128
 
3129
- #: profile-builder-2.0/admin/manage-fields.php:645
3130
  msgid "Philippines Peso"
3131
  msgstr ""
3132
 
3133
- #: profile-builder-2.0/admin/manage-fields.php:646
3134
  msgid "Poland Zloty"
3135
  msgstr ""
3136
 
3137
- #: profile-builder-2.0/admin/manage-fields.php:647
3138
  msgid "Qatar Riyal"
3139
  msgstr ""
3140
 
3141
- #: profile-builder-2.0/admin/manage-fields.php:648
3142
  msgid "Romania New Leu"
3143
  msgstr ""
3144
 
3145
- #: profile-builder-2.0/admin/manage-fields.php:649
3146
  msgid "Russia Ruble"
3147
  msgstr ""
3148
 
3149
- #: profile-builder-2.0/admin/manage-fields.php:650
3150
  msgid "Saint Helena Pound"
3151
  msgstr ""
3152
 
3153
- #: profile-builder-2.0/admin/manage-fields.php:651
3154
  msgid "Saudi Arabia Riyal"
3155
  msgstr ""
3156
 
3157
- #: profile-builder-2.0/admin/manage-fields.php:652
3158
  msgid "Serbia Dinar"
3159
  msgstr ""
3160
 
3161
- #: profile-builder-2.0/admin/manage-fields.php:653
3162
  msgid "Seychelles Rupee"
3163
  msgstr ""
3164
 
3165
- #: profile-builder-2.0/admin/manage-fields.php:654
3166
  msgid "Singapore Dollar"
3167
  msgstr ""
3168
 
3169
- #: profile-builder-2.0/admin/manage-fields.php:655
3170
  msgid "Solomon Islands Dollar"
3171
  msgstr ""
3172
 
3173
- #: profile-builder-2.0/admin/manage-fields.php:656
3174
  msgid "Somalia Shilling"
3175
  msgstr ""
3176
 
3177
- #: profile-builder-2.0/admin/manage-fields.php:657
3178
  msgid "South Africa Rand"
3179
  msgstr ""
3180
 
3181
- #: profile-builder-2.0/admin/manage-fields.php:658
3182
  msgid "Sri Lanka Rupee"
3183
  msgstr ""
3184
 
3185
- #: profile-builder-2.0/admin/manage-fields.php:659
3186
  msgid "Sweden Krona"
3187
  msgstr ""
3188
 
3189
- #: profile-builder-2.0/admin/manage-fields.php:660
3190
  msgid "Switzerland Franc"
3191
  msgstr ""
3192
 
3193
- #: profile-builder-2.0/admin/manage-fields.php:661
3194
  msgid "Suriname Dollar"
3195
  msgstr ""
3196
 
3197
- #: profile-builder-2.0/admin/manage-fields.php:662
3198
  msgid "Syria Pound"
3199
  msgstr ""
3200
 
3201
- #: profile-builder-2.0/admin/manage-fields.php:663
3202
  msgid "Taiwan New Dollar"
3203
  msgstr ""
3204
 
3205
- #: profile-builder-2.0/admin/manage-fields.php:664
3206
  msgid "Thailand Baht"
3207
  msgstr ""
3208
 
3209
- #: profile-builder-2.0/admin/manage-fields.php:665
3210
  msgid "Trinidad and Tobago Dollar"
3211
  msgstr ""
3212
 
3213
- #: profile-builder-2.0/admin/manage-fields.php:666
3214
- #: profile-builder-2.0/admin/manage-fields.php:667
3215
  msgid "Turkey Lira"
3216
  msgstr ""
3217
 
3218
- #: profile-builder-2.0/admin/manage-fields.php:668
3219
  msgid "Tuvalu Dollar"
3220
  msgstr ""
3221
 
3222
- #: profile-builder-2.0/admin/manage-fields.php:669
3223
  msgid "Ukraine Hryvna"
3224
  msgstr ""
3225
 
3226
- #: profile-builder-2.0/admin/manage-fields.php:670
3227
  msgid "United Kingdom Pound"
3228
  msgstr ""
3229
 
3230
- #: profile-builder-2.0/admin/manage-fields.php:671
3231
  msgid "Uganda Shilling"
3232
  msgstr ""
3233
 
3234
- #: profile-builder-2.0/admin/manage-fields.php:672
3235
  msgid "US Dollar"
3236
  msgstr ""
3237
 
3238
- #: profile-builder-2.0/admin/manage-fields.php:673
3239
  msgid "Uruguay Peso"
3240
  msgstr ""
3241
 
3242
- #: profile-builder-2.0/admin/manage-fields.php:674
3243
  msgid "Uzbekistan Som"
3244
  msgstr ""
3245
 
3246
- #: profile-builder-2.0/admin/manage-fields.php:675
3247
  msgid "Venezuela Bolivar"
3248
  msgstr ""
3249
 
3250
- #: profile-builder-2.0/admin/manage-fields.php:676
3251
  msgid "Viet Nam Dong"
3252
  msgstr ""
3253
 
3254
- #: profile-builder-2.0/admin/manage-fields.php:677
3255
  msgid "Yemen Rial"
3256
  msgstr ""
3257
 
3258
- #: profile-builder-2.0/admin/manage-fields.php:678
3259
  msgid "Zimbabwe Dollar"
3260
  msgstr ""
3261
 
3262
- #: profile-builder-2.0/admin/manage-fields.php:980
3263
- #: profile-builder-2.0/admin/manage-fields.php:1137
3264
  msgid "You must select a field\n"
3265
  msgstr ""
3266
 
3267
- #: profile-builder-2.0/admin/manage-fields.php:990
3268
  msgid ""
3269
  "Please choose a different field type as this one already exists in your form "
3270
  "(must be unique)\n"
3271
  msgstr ""
3272
 
3273
- #: profile-builder-2.0/admin/manage-fields.php:1001
3274
  msgid "The entered avatar size is not between 20 and 200\n"
3275
  msgstr ""
3276
 
3277
- #: profile-builder-2.0/admin/manage-fields.php:1004
3278
  msgid "The entered avatar size is not numerical\n"
3279
  msgstr ""
3280
 
3281
- #: profile-builder-2.0/admin/manage-fields.php:1012
3282
  msgid "The entered row number is not numerical\n"
3283
  msgstr ""
3284
 
3285
- #: profile-builder-2.0/admin/manage-fields.php:1015
3286
  msgid "You must enter a value for the row number\n"
3287
  msgstr ""
3288
 
3289
- #: profile-builder-2.0/admin/manage-fields.php:1023
3290
  msgid "You must enter the site key\n"
3291
  msgstr ""
3292
 
3293
- #: profile-builder-2.0/admin/manage-fields.php:1025
3294
  msgid "You must enter the secret key\n"
3295
  msgstr ""
3296
 
3297
- #: profile-builder-2.0/admin/manage-fields.php:1036
3298
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3299
  msgstr ""
3300
 
3301
- #: profile-builder-2.0/admin/manage-fields.php:1039
3302
  msgid "You must enter a value for the date-format\n"
3303
  msgstr ""
3304
 
3305
- #: profile-builder-2.0/admin/manage-fields.php:1055
3306
  msgid "The meta-name cannot be empty\n"
3307
  msgstr ""
3308
 
3309
- #: profile-builder-2.0/admin/manage-fields.php:1067
3310
- #: profile-builder-2.0/admin/manage-fields.php:1075
3311
- #: profile-builder-2.0/admin/manage-fields.php:1086
3312
  msgid "That meta-name is already in use\n"
3313
  msgstr ""
3314
 
3315
- #: profile-builder-2.0/admin/manage-fields.php:1097
3316
  msgid ""
3317
  "The meta-name can only contain lowercase letters, numbers, _ , - and no "
3318
  "spaces.\n"
3319
  msgstr ""
3320
 
3321
- #: profile-builder-2.0/admin/manage-fields.php:1117
3322
- #, php-format
3323
  msgid ""
3324
  "The following option(s) did not coincide with the ones in the options list: "
3325
  "%s\n"
3326
  msgstr ""
3327
 
3328
- #: profile-builder-2.0/admin/manage-fields.php:1121
3329
- #, php-format
3330
  msgid ""
3331
  "The following option did not coincide with the ones in the options list: %s\n"
3332
  msgstr ""
3333
 
3334
- #: profile-builder-2.0/admin/manage-fields.php:1128
3335
  msgid "Please select at least one user role\n"
3336
  msgstr ""
3337
 
3338
- #: profile-builder-2.0/admin/manage-fields.php:1144
3339
  msgid "That field is already added in this form\n"
3340
  msgstr ""
3341
 
3342
- #: profile-builder-2.0/admin/manage-fields.php:1193
3343
  msgid ""
3344
  "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
3345
  "required\">Required</pre>"
3346
  msgstr ""
3347
 
3348
- #: profile-builder-2.0/admin/manage-fields.php:1193
3349
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
3350
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
3351
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:108
3352
- #: profile-builder-2.0/features/functions.php:718
3353
- #: profile-builder-2.0/features/functions.php:725
3354
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
3355
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
3356
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
3357
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
3358
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
3359
  msgid "Edit"
3360
  msgstr ""
3361
 
3362
- #: profile-builder-2.0/admin/manage-fields.php:1193
3363
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
3364
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
3365
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
3366
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:224
3367
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
3368
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:217
3369
- #: profile-builder-2.0/features/functions.php:711
3370
- #: profile-builder-2.0/features/functions.php:725
3371
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
3372
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
3373
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
3374
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
 
 
 
3375
  msgid "Delete"
3376
  msgstr ""
3377
 
3378
- #: profile-builder-2.0/admin/manage-fields.php:1208
3379
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3380
  msgstr ""
3381
 
3382
- #: profile-builder-2.0/admin/manage-fields.php:1217
3383
  msgid ""
3384
  "If you're interested in displaying different fields in the registration and "
3385
  "edit profile forms, please use the Multiple Registration & Edit Profile "
3386
  "Forms Modules."
3387
  msgstr ""
3388
 
3389
- #: profile-builder-2.0/admin/manage-fields.php:1219
3390
  msgid ""
3391
  "With Profile Builder Pro v2 you can display different fields in the "
3392
  "registration and edit profile forms, using the Multiple Registration & Edit "
3393
  "Profile Forms module."
3394
  msgstr ""
3395
 
3396
- #: profile-builder-2.0/admin/manage-fields.php:1314
3397
  msgid "Search Location"
3398
  msgstr ""
3399
 
3400
- #: profile-builder-2.0/admin/pms-cross-promotion.php:10
3401
  msgid "Paid Accounts"
3402
  msgstr ""
3403
 
3404
- #: profile-builder-2.0/admin/pms-cross-promotion.php:33
3405
  msgid "Paid Member Subscriptions - a free WordPress plugin"
3406
  msgstr ""
3407
 
3408
- #: profile-builder-2.0/admin/pms-cross-promotion.php:37
3409
  msgid ""
3410
  "With the new Subscriptions Field in Profile Builder, your registration forms "
3411
  "will allow your users to sign up for paid accounts."
3412
  msgstr ""
3413
 
3414
- #: profile-builder-2.0/admin/pms-cross-promotion.php:40
3415
  msgid "Paid & Free Subscriptions"
3416
  msgstr ""
3417
 
3418
- #: profile-builder-2.0/admin/pms-cross-promotion.php:41
3419
  msgid "Restrict Content"
3420
  msgstr ""
3421
 
3422
- #: profile-builder-2.0/admin/pms-cross-promotion.php:42
3423
  msgid "Member Management"
3424
  msgstr ""
3425
 
3426
- #: profile-builder-2.0/admin/pms-cross-promotion.php:43
3427
  msgid "Email Templates"
3428
  msgstr ""
3429
 
3430
- #: profile-builder-2.0/admin/pms-cross-promotion.php:44
3431
  msgid "Account Management"
3432
  msgstr ""
3433
 
3434
- #: profile-builder-2.0/admin/pms-cross-promotion.php:45
3435
  msgid "Subscription Management"
3436
  msgstr ""
3437
 
3438
- #: profile-builder-2.0/admin/pms-cross-promotion.php:46
3439
  msgid "Payment Management"
3440
  msgstr ""
3441
 
3442
- #: profile-builder-2.0/admin/pms-cross-promotion.php:83
3443
  msgid "Plugin is Active"
3444
  msgstr ""
3445
 
3446
- #: profile-builder-2.0/admin/pms-cross-promotion.php:84
3447
  msgid "Plugin has been activated"
3448
  msgstr ""
3449
 
3450
- #: profile-builder-2.0/admin/pms-cross-promotion.php:91
3451
  msgid "Plugin has been deactivated."
3452
  msgstr ""
3453
 
3454
- #: profile-builder-2.0/admin/pms-cross-promotion.php:104
3455
  msgid ""
3456
  "Accept user payments, create subscription plans and restrict content on your "
3457
  "website."
3458
  msgstr ""
3459
 
3460
- #: profile-builder-2.0/admin/pms-cross-promotion.php:137
3461
- #: profile-builder-2.0/admin/pms-cross-promotion.php:216
3462
- msgid "Install Now"
3463
- msgstr ""
3464
-
3465
- #: profile-builder-2.0/admin/pms-cross-promotion.php:155
3466
  msgid "Step by Step Quick Setup"
3467
  msgstr ""
3468
 
3469
- #: profile-builder-2.0/admin/pms-cross-promotion.php:239
3470
- #, php-format
3471
  msgid ""
3472
  "Allow your users to have <strong>paid accounts with Profile Builder</"
3473
  "strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
3474
  msgstr ""
3475
 
3476
- #: profile-builder-2.0/admin/register-version.php:14
3477
  msgid "Register Your Version"
3478
  msgstr ""
3479
 
3480
- #: profile-builder-2.0/admin/register-version.php:14
3481
  msgid "Register Version"
3482
  msgstr ""
3483
 
3484
- #: profile-builder-2.0/admin/register-version.php:22
3485
  msgid "Profile Builder Register"
3486
  msgstr ""
3487
 
3488
- #: profile-builder-2.0/admin/register-version.php:69
3489
- #, php-format
3490
  msgid ""
3491
  "Now that you acquired a copy of %s, you should take the time and register it "
3492
  "with the serial number you received"
3493
  msgstr ""
3494
 
3495
- #: profile-builder-2.0/admin/register-version.php:70
3496
  msgid ""
3497
  "If you register this version of Profile Builder, you'll receive information "
3498
  "regarding upgrades, patches, and technical support."
3499
  msgstr ""
3500
 
3501
- #: profile-builder-2.0/admin/register-version.php:72
3502
  msgid " Serial Number:"
3503
  msgstr ""
3504
 
3505
- #: profile-builder-2.0/admin/register-version.php:77
3506
  msgid "The serial number was successfully validated!"
3507
  msgstr ""
3508
 
3509
- #: profile-builder-2.0/admin/register-version.php:79
3510
  msgid "The serial number entered couldn't be validated!"
3511
  msgstr ""
3512
 
3513
- #: profile-builder-2.0/admin/register-version.php:81
3514
  msgid "The serial number is about to expire soon!"
3515
  msgstr ""
3516
 
3517
- #: profile-builder-2.0/admin/register-version.php:81
3518
- #, php-format
3519
  msgid ""
3520
  " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3521
  msgstr ""
3522
 
3523
- #: profile-builder-2.0/admin/register-version.php:83
3524
  msgid "The serial number couldn't be validated because it expired!"
3525
  msgstr ""
3526
 
3527
- #: profile-builder-2.0/admin/register-version.php:83
3528
- #, php-format
3529
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3530
  msgstr ""
3531
 
3532
- #: profile-builder-2.0/admin/register-version.php:85
3533
  msgid ""
3534
  "The serial number couldn't be validated because process timed out. This is "
3535
  "possible due to the server being down. Please try again later!"
3536
  msgstr ""
3537
 
3538
- #: profile-builder-2.0/admin/register-version.php:87
3539
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3540
  msgstr ""
3541
 
3542
- #: profile-builder-2.0/admin/register-version.php:243
3543
- #, php-format
3544
  msgid ""
3545
  "<p>Your <strong>Profile Builder</strong> serial number is invalid or "
3546
  "missing. <br/>Please %1$sregister your copy%2$s to receive access to "
@@ -3548,8 +3254,7 @@ msgid ""
3548
  "p>"
3549
  msgstr ""
3550
 
3551
- #: profile-builder-2.0/admin/register-version.php:246
3552
- #, php-format
3553
  msgid ""
3554
  "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
3555
  "%1$sRenew Your Licence%2$s to continue receiving access to product "
@@ -3557,8 +3262,7 @@ msgid ""
3557
  "%4$s %5$sDismiss%6$s</p>"
3558
  msgstr ""
3559
 
3560
- #: profile-builder-2.0/admin/register-version.php:251
3561
- #, php-format
3562
  msgid ""
3563
  "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
3564
  "<br/>Please %1$sRenew Your Licence%2$s to continue receiving access to "
@@ -3566,468 +3270,644 @@ msgid ""
3566
  "40&#37; off %4$s %6$sDismiss%7$s</p>"
3567
  msgstr ""
3568
 
3569
- #: profile-builder-2.0/assets/lib/wck-api/fields/country select.php:14
3570
- #: profile-builder-2.0/assets/lib/wck-api/fields/cpt select.php:17
3571
- #: profile-builder-2.0/assets/lib/wck-api/fields/select.php:14
3572
- #: profile-builder-2.0/assets/lib/wck-api/fields/user select.php:15
3573
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:36
3574
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:60
3575
  msgid "...Choose"
3576
  msgstr ""
3577
 
3578
- #: profile-builder-2.0/assets/lib/wck-api/fields/nested repeater.php:8
3579
- #, php-format
3580
  msgid "You can add the information for the %s after you add a entry"
3581
  msgstr ""
3582
 
3583
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3584
- #: profile-builder-2.0/modules/class-mustache-templates/class-mustache-templates.php:253
 
 
 
 
 
 
 
 
 
 
3585
  msgid "Save"
3586
  msgstr ""
3587
 
3588
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:334
3589
  msgid "Add Entry"
3590
  msgstr ""
3591
 
3592
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:438
3593
- #: profile-builder-2.0/features/functions.php:725
3594
  msgid "Content"
3595
  msgstr ""
3596
 
3597
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:535
3598
  msgid "Edit this item"
3599
  msgstr ""
3600
 
3601
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:536
3602
  msgid "Delete this item"
3603
  msgstr ""
3604
 
3605
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:705
3606
  msgid "Please enter a value for the required field "
3607
  msgstr ""
3608
 
3609
- #: profile-builder-2.0/assets/lib/wck-api/wordpress-creation-kit.php:754
3610
  msgid "You are not allowed to do this."
3611
  msgstr ""
3612
 
3613
- #: profile-builder-2.0/assets/misc/plugin-compatibilities.php:237
3614
  msgid ""
3615
  "Your account has to be confirmed by an administrator before you can log in."
3616
  msgstr ""
3617
 
3618
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:14
3619
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:453
3620
  msgid "Admin Approval"
3621
  msgstr ""
3622
 
3623
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:28
3624
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:58
3625
  msgid "Do you want to"
3626
  msgstr ""
3627
 
3628
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:51
3629
  msgid "Your session has expired! Please refresh the page and try again"
3630
  msgstr ""
3631
 
3632
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:64
3633
  msgid "User successfully approved!"
3634
  msgstr ""
3635
 
3636
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:74
3637
  msgid "User successfully unapproved!"
3638
  msgstr ""
3639
 
3640
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:80
3641
  msgid "User successfully deleted!"
3642
  msgstr ""
3643
 
3644
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:85
3645
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:131
3646
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:132
3647
  msgid "You either don't have permission for that action or there was an error!"
3648
  msgstr ""
3649
 
3650
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:96
3651
  msgid "Your session has expired! Please refresh the page and try again."
3652
  msgstr ""
3653
 
3654
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:109
3655
  msgid "Users successfully approved!"
3656
  msgstr ""
3657
 
3658
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:119
3659
  msgid "Users successfully unapproved!"
3660
  msgstr ""
3661
 
3662
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:127
3663
  msgid "Users successfully deleted!"
3664
  msgstr ""
3665
 
3666
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:147
3667
- #, php-format
3668
  msgid "Your account on %1$s has been approved!"
3669
  msgstr ""
3670
 
3671
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:148
3672
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:151
3673
  msgid "approved"
3674
  msgstr ""
3675
 
3676
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:150
3677
- #, php-format
3678
  msgid "An administrator has just approved your account on %1$s (%2$s)."
3679
  msgstr ""
3680
 
3681
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:155
3682
- #, php-format
3683
  msgid "Your account on %1$s has been unapproved!"
3684
  msgstr ""
3685
 
3686
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:156
3687
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:159
3688
  msgid "unapproved"
3689
  msgstr ""
3690
 
3691
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:158
3692
- #, php-format
3693
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
3694
  msgstr ""
3695
 
3696
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:177
3697
  msgid ""
3698
  "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
3699
  "before you can log in."
3700
  msgstr ""
3701
 
3702
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:189
3703
  msgid ""
3704
  "Your account has to be confirmed by an administrator before you can use the "
3705
  "\"Password Recovery\" feature."
3706
  msgstr ""
3707
 
3708
- #: profile-builder-2.0/features/admin-approval/admin-approval.php:216
3709
  msgid "Your account has been successfully created!"
3710
  msgstr ""
3711
 
3712
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:113
3713
  msgid "delete this user?"
3714
  msgstr ""
3715
 
3716
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
3717
  msgid "unapprove this user?"
3718
  msgstr ""
3719
 
3720
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:116
3721
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:223
3722
  msgid "Unapprove"
3723
  msgstr ""
3724
 
3725
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
3726
  msgid "approve this user?"
3727
  msgstr ""
3728
 
3729
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:118
3730
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:222
3731
  msgid "Approve"
3732
  msgstr ""
3733
 
3734
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:167
3735
- #: profile-builder-2.0/modules/user-listing/userlisting.php:278
3736
- #: profile-builder-2.0/modules/user-listing/userlisting.php:742
3737
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2224
3738
  msgid "Firstname"
3739
  msgstr ""
3740
 
3741
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:168
3742
- #: profile-builder-2.0/modules/user-listing/userlisting.php:745
3743
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2225
3744
  msgid "Lastname"
3745
  msgstr ""
3746
 
3747
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:170
3748
- #: profile-builder-2.0/modules/user-listing/userlisting.php:149
3749
- #: profile-builder-2.0/modules/user-listing/userlisting.php:279
3750
- #: profile-builder-2.0/modules/user-listing/userlisting.php:772
3751
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2229
 
3752
  msgid "Role"
3753
  msgstr ""
3754
 
3755
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:171
3756
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:169
3757
  msgid "Registered"
3758
  msgstr ""
3759
 
3760
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:172
3761
  msgid "User-status"
3762
  msgstr ""
3763
 
3764
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:252
3765
  msgid "Do you want to bulk approve the selected users?"
3766
  msgstr ""
3767
 
3768
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:260
3769
  msgid "Do you want to bulk unapprove the selected users?"
3770
  msgstr ""
3771
 
3772
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:266
3773
  msgid "Do you want to bulk delete the selected users?"
3774
  msgstr ""
3775
 
3776
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:274
3777
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:278
3778
  msgid "Sorry, but you don't have permission to do that!"
3779
  msgstr ""
3780
 
3781
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:339
3782
  msgid "Approved"
3783
  msgstr ""
3784
 
3785
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:341
3786
  msgid "Unapproved"
3787
  msgstr ""
3788
 
3789
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:456
3790
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:454
3791
  msgid "All Users"
3792
  msgstr ""
3793
 
3794
- #: profile-builder-2.0/features/admin-approval/class-admin-approval.php:461
3795
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:460
3796
  msgid "Search Users"
3797
  msgstr ""
3798
 
3799
- #: profile-builder-2.0/features/class-list-table.php:184
3800
  msgid "No items found."
3801
  msgstr ""
3802
 
3803
- #: profile-builder-2.0/features/class-list-table.php:308
3804
  msgid "Bulk Actions"
3805
  msgstr ""
3806
 
3807
- #: profile-builder-2.0/features/class-list-table.php:318
3808
  msgid "Apply"
3809
  msgstr ""
3810
 
3811
- #: profile-builder-2.0/features/class-list-table.php:402
3812
  msgid "Show all dates"
3813
  msgstr ""
3814
 
3815
- #: profile-builder-2.0/features/class-list-table.php:415
3816
- #, php-format
3817
  msgid "%1$s %2$d"
3818
  msgstr ""
3819
 
3820
- #: profile-builder-2.0/features/class-list-table.php:431
3821
  msgid "List View"
3822
  msgstr ""
3823
 
3824
- #: profile-builder-2.0/features/class-list-table.php:432
3825
  msgid "Excerpt View"
3826
  msgstr ""
3827
 
3828
- #: profile-builder-2.0/features/class-list-table.php:458
3829
- #, php-format
3830
  msgid "%s pending"
3831
  msgstr ""
3832
 
3833
- #: profile-builder-2.0/features/class-list-table.php:526
3834
- #: profile-builder-2.0/features/class-list-table.php:942
3835
  msgid "1 item"
 
 
 
 
 
 
 
 
 
 
3836
  msgstr ""
3837
 
3838
- #: profile-builder-2.0/features/class-list-table.php:566
3839
- #, php-format
 
 
 
 
3840
  msgid "%1$s of %2$s"
3841
  msgstr ""
3842
 
3843
- #: profile-builder-2.0/features/class-list-table.php:713
 
 
 
 
 
 
 
 
3844
  msgid "Select All"
3845
  msgstr ""
3846
 
3847
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:78
3848
  msgid "Conditional Logic"
3849
  msgstr ""
3850
 
3851
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:79
3852
  msgid "Conditional Rules"
3853
  msgstr ""
3854
 
3855
- #: profile-builder-2.0/features/conditional-fields/conditional-fields.php:448
3856
  msgid "This field has conditional logic enabled."
3857
  msgstr ""
3858
 
3859
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3860
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:170
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3861
  msgid "User Meta"
3862
  msgstr ""
3863
 
3864
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:91
3865
  msgid "show"
3866
  msgstr ""
3867
 
3868
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:120
3869
  msgid "delete this user from the _signups table?"
3870
  msgstr ""
3871
 
3872
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
3873
  msgid "confirm this email yourself?"
3874
  msgstr ""
3875
 
3876
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:121
3877
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:218
3878
  msgid "Confirm Email"
3879
  msgstr ""
3880
 
3881
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
3882
  msgid "resend the activation link?"
3883
  msgstr ""
3884
 
3885
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:122
3886
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:219
3887
  msgid "Resend Activation Email"
3888
  msgstr ""
3889
 
3890
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:249
3891
- #, php-format
3892
  msgid "%s couldn't be deleted"
3893
  msgstr ""
3894
 
3895
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:253
3896
  msgid "All users have been successfully deleted"
3897
  msgstr ""
3898
 
3899
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:263
3900
  msgid "The selected users have been activated"
3901
  msgstr ""
3902
 
3903
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:274
3904
  msgid "The selected users have had their activation emails resent"
3905
  msgstr ""
3906
 
3907
- #: profile-builder-2.0/features/email-confirmation/class-email-confirmation.php:451
3908
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:47
3909
  msgid "Users with Unconfirmed Email Address"
3910
  msgstr ""
3911
 
3912
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:107
3913
  msgid "There was an error performing that action!"
3914
  msgstr ""
3915
 
3916
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:115
3917
  msgid "The selected user couldn't be deleted"
3918
  msgstr ""
3919
 
3920
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:126
3921
  msgid "Email notification resent to user"
3922
  msgstr ""
3923
 
3924
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:398
3925
- #, php-format
3926
  msgid "[%1$s] Activate %2$s"
3927
  msgstr ""
3928
 
3929
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:401
3930
- #, php-format
3931
  msgid ""
3932
  "To activate your user, please click the following link:<br><br>%s%s"
3933
  "%s<br><br>After you activate it you will receive yet *another email* with "
3934
  "your login."
3935
  msgstr ""
3936
 
3937
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:442
3938
- #: profile-builder-2.0/front-end/register.php:71
3939
  msgid "Could not create user!"
3940
  msgstr ""
3941
 
3942
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:445
3943
  msgid "That username is already activated!"
3944
  msgstr ""
3945
 
3946
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:468
3947
  msgid "There was an error while trying to activate the user"
3948
  msgstr ""
3949
 
3950
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:516
3951
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:73
3952
  msgid "A new subscriber has (been) registered!"
3953
  msgstr ""
3954
 
3955
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:519
3956
- #, php-format
3957
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
3958
  msgstr ""
3959
 
3960
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:570
3961
- #, php-format
3962
  msgid "[%1$s] Your new account information"
3963
  msgstr ""
3964
 
3965
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:574
3966
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:583
3967
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:487
3968
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:494
3969
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:508
3970
  msgid "Your selected password at signup"
3971
  msgstr ""
3972
 
3973
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:579
3974
- #, php-format
3975
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
3976
  msgstr ""
3977
 
3978
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:581
3979
- #, php-format
3980
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
3981
  msgstr ""
3982
 
3983
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:634
3984
  msgid ""
3985
  "The \"Admin Approval\" feature was activated at the time of registration, so "
3986
  "please remember that you need to approve this user before he/she can log in!"
3987
  msgstr ""
3988
 
3989
- #: profile-builder-2.0/features/email-confirmation/email-confirmation.php:642
3990
- #: profile-builder-2.0/front-end/register.php:125
3991
  msgid ""
3992
  "Before you can access your account, an administrator needs to approve it. "
3993
  "You will be notified via email."
3994
  msgstr ""
3995
 
3996
- #: profile-builder-2.0/features/functions.php:526
3997
  msgid "Strength indicator"
3998
  msgstr ""
3999
 
4000
- #: profile-builder-2.0/features/functions.php:552
4001
  msgid "Very Weak"
4002
  msgstr ""
4003
 
4004
- #: profile-builder-2.0/features/functions.php:566
4005
- #, php-format
4006
- msgid "Minimum length of %d characters"
 
 
 
4007
  msgstr ""
4008
 
4009
- #: profile-builder-2.0/features/functions.php:640
4010
  msgid "This field is required"
4011
  msgstr ""
4012
 
4013
- #: profile-builder-2.0/features/functions.php:678
4014
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:374
4015
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:379
4016
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
4017
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:458
4018
  msgid "Please enter a (valid) reCAPTCHA value"
4019
  msgstr ""
4020
 
4021
- #: profile-builder-2.0/features/functions.php:685
4022
  msgid "Incorrect phone number"
4023
  msgstr ""
4024
 
4025
- #: profile-builder-2.0/features/functions.php:704
4026
  msgid "Cancel"
4027
  msgstr ""
4028
 
4029
- #: profile-builder-2.0/features/functions.php:736
4030
- #, php-format
4031
  msgid ""
4032
  "To allow users to register for your website via Profile Builder, you first "
4033
  "must enable user registration. Go to %1$sNetwork Settings%2$s, and under "
@@ -4035,890 +3915,1102 @@ msgid ""
4035
  "%3$sDismiss%4$s"
4036
  msgstr ""
4037
 
4038
- #: profile-builder-2.0/features/functions.php:740
4039
- #, php-format
4040
  msgid ""
4041
  "To allow users to register for your website via Profile Builder, you first "
4042
  "must enable user registration. Go to %1$sSettings -> General%2$s tab, and "
4043
  "under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
4044
  msgstr ""
4045
 
4046
- #: profile-builder-2.0/features/functions.php:896
4047
  msgid "<br><br>Also, you will be able to visit your site at "
4048
  msgstr ""
4049
 
4050
- #: profile-builder-2.0/features/functions.php:909
4051
  msgid "<br><br>You can visit your site at "
4052
  msgstr ""
4053
 
4054
- #: profile-builder-2.0/features/functions.php:994
4055
  msgid "here"
4056
  msgstr ""
4057
 
4058
- #: profile-builder-2.0/features/functions.php:995
4059
- #, php-format
4060
  msgid ""
4061
  "You will soon be redirected automatically. If you see this page for more "
4062
  "than %1$d seconds, please click %2$s.%3$s"
4063
  msgstr ""
4064
 
4065
- #: profile-builder-2.0/features/login-widget/login-widget.php:10
4066
  msgid "This login widget lets you add a login form in the sidebar."
4067
  msgstr ""
4068
 
4069
- #: profile-builder-2.0/features/login-widget/login-widget.php:15
4070
  msgid "Profile Builder Login Widget"
4071
  msgstr ""
4072
 
4073
- #: profile-builder-2.0/features/login-widget/login-widget.php:63
4074
  msgid "Title:"
4075
  msgstr ""
4076
 
4077
- #: profile-builder-2.0/features/login-widget/login-widget.php:68
4078
  msgid "After login redirect URL (optional):"
4079
  msgstr ""
4080
 
4081
- #: profile-builder-2.0/features/login-widget/login-widget.php:73
4082
  msgid "Register page URL (optional):"
4083
  msgstr ""
4084
 
4085
- #: profile-builder-2.0/features/login-widget/login-widget.php:78
4086
  msgid "Password Recovery page URL (optional):"
4087
  msgstr ""
4088
 
4089
- #: profile-builder-2.0/features/roles-editor/roles-editor.php:300
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4090
  msgid "M j, Y @ G:i"
4091
  msgstr ""
4092
 
4093
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:91
4094
- #: profile-builder-2.0/features/upgrades/upgrades-functions.php:134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4095
  msgid "The usernames cannot be changed."
4096
  msgstr ""
4097
 
4098
- #: profile-builder-2.0/front-end/class-formbuilder.php:124
4099
  msgid ""
4100
  "The role of the created user set to the default role. Only an administrator "
4101
  "can register a user with the role assigned to this form."
4102
  msgstr ""
4103
 
4104
- #: profile-builder-2.0/front-end/class-formbuilder.php:136
4105
  msgid "Only an administrator can add new users."
4106
  msgstr ""
4107
 
4108
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
4109
  msgid "Users can register themselves or you can manually create users here."
4110
  msgstr ""
4111
 
4112
- #: profile-builder-2.0/front-end/class-formbuilder.php:146
4113
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
4114
  msgid "This message is only visible by administrators"
4115
  msgstr ""
4116
 
4117
- #: profile-builder-2.0/front-end/class-formbuilder.php:149
4118
  msgid ""
4119
  "Users cannot currently register themselves, but you can manually create "
4120
  "users here."
4121
  msgstr ""
4122
 
4123
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4124
- #, php-format
4125
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
4126
  msgstr ""
4127
 
4128
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4129
  msgid "Log out of this account."
4130
  msgstr ""
4131
 
4132
- #: profile-builder-2.0/front-end/class-formbuilder.php:169
4133
  msgid "Logout"
4134
  msgstr ""
4135
 
4136
- #: profile-builder-2.0/front-end/class-formbuilder.php:175
4137
  msgid "You must be logged in to edit your profile."
4138
  msgstr ""
4139
 
4140
- #: profile-builder-2.0/front-end/class-formbuilder.php:315
4141
- #: profile-builder-2.0/front-end/class-formbuilder.php:322
4142
- #, php-format
4143
  msgid "The account %1s has been successfully created!"
4144
  msgstr ""
4145
 
4146
- #: profile-builder-2.0/front-end/class-formbuilder.php:318
4147
- #: profile-builder-2.0/front-end/class-formbuilder.php:328
4148
- #, php-format
4149
  msgid ""
4150
  "Before you can access your account %1s, you need to confirm your email "
4151
  "address. Please check your inbox and click the activation link."
4152
  msgstr ""
4153
 
4154
- #: profile-builder-2.0/front-end/class-formbuilder.php:324
4155
- #, php-format
4156
  msgid ""
4157
  "Before you can access your account %1s, an administrator has to approve it. "
4158
  "You will be notified via email."
4159
  msgstr ""
4160
 
4161
- #: profile-builder-2.0/front-end/class-formbuilder.php:347
4162
  msgid "Your profile has been successfully updated!"
4163
  msgstr ""
4164
 
4165
- #: profile-builder-2.0/front-end/class-formbuilder.php:358
4166
  msgid "There was an error in the submitted form"
4167
  msgstr ""
4168
 
4169
- #: profile-builder-2.0/front-end/class-formbuilder.php:415
4170
  msgid "Add User"
4171
  msgstr ""
4172
 
4173
- #: profile-builder-2.0/front-end/class-formbuilder.php:481
 
 
 
 
4174
  msgid "Send these credentials via email."
4175
  msgstr ""
4176
 
4177
- #: profile-builder-2.0/front-end/class-formbuilder.php:659
4178
  msgid "User to edit:"
4179
  msgstr ""
4180
 
4181
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:63
 
 
 
 
4182
  msgid "Yes, I'd like to create a new site"
4183
  msgstr ""
4184
 
4185
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:70
4186
  msgid "Your site url will look like this:<br>"
4187
  msgstr ""
4188
 
4189
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:93
4190
  msgid "Site URL slug"
4191
  msgstr ""
4192
 
4193
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:116
4194
  msgid "Site Title"
4195
  msgstr ""
4196
 
4197
- #: profile-builder-2.0/front-end/default-fields/blog-details/blog-details.php:138
4198
  msgid ""
4199
  "Privacy: I would like my site to appear in search engines, and in public "
4200
  "listings around this network."
4201
  msgstr ""
4202
 
4203
- #: profile-builder-2.0/front-end/default-fields/email/email.php:51
 
 
 
 
4204
  msgid "You must enter a valid email address."
4205
  msgstr ""
4206
 
4207
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4208
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4209
  msgid "This email is already reserved to be used soon."
4210
  msgstr ""
4211
 
4212
- #: profile-builder-2.0/front-end/default-fields/email/email.php:60
4213
- #: profile-builder-2.0/front-end/default-fields/email/email.php:67
4214
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4215
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4216
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4217
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4218
  msgid "Please try a different one!"
4219
  msgstr ""
4220
 
4221
- #: profile-builder-2.0/front-end/default-fields/email/email.php:77
4222
- #: profile-builder-2.0/front-end/default-fields/email/email.php:95
4223
  msgid "This email is already in use."
4224
  msgstr ""
4225
 
4226
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:37
4227
- #: profile-builder-2.0/front-end/default-fields/password-repeat/password-repeat.php:41
4228
- msgid "The passwords do not match"
4229
- msgstr ""
4230
-
4231
- #: profile-builder-2.0/front-end/default-fields/password/password.php:46
4232
- #: profile-builder-2.0/front-end/recover.php:262
4233
- #, php-format
4234
  msgid "The password must have the minimum length of %s characters"
4235
  msgstr ""
4236
 
4237
- #: profile-builder-2.0/front-end/default-fields/password/password.php:50
4238
- #: profile-builder-2.0/front-end/recover.php:266
4239
- #, php-format
4240
  msgid "The password must have a minimum strength of %s"
4241
  msgstr ""
4242
 
4243
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:48
 
 
 
 
 
4244
  msgid "To use reCAPTCHA you must get an API key from"
4245
  msgstr ""
4246
 
4247
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:131
4248
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4249
  msgstr ""
4250
 
4251
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:192
4252
  msgid "To use reCAPTCHA you must get an API public key from:"
4253
  msgstr ""
4254
 
4255
- #: profile-builder-2.0/front-end/default-fields/recaptcha/recaptcha.php:421
4256
  msgid "Click the BACK button on your browser, and try again."
4257
  msgstr ""
4258
 
4259
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:72
4260
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:85
4261
  msgid "Only administrators can see this field on edit profile forms."
4262
  msgstr ""
4263
 
4264
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:81
4265
  msgid "As an administrator you cannot change your role."
4266
  msgstr ""
4267
 
4268
- #: profile-builder-2.0/front-end/default-fields/user-role/user-role.php:118
 
 
4269
  msgid "You cannot register this user role"
4270
  msgstr ""
4271
 
4272
- #: profile-builder-2.0/front-end/default-fields/username/username.php:49
4273
  msgid "This username already exists."
4274
  msgstr ""
4275
 
4276
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
4277
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
4278
  msgid "This username is invalid because it uses illegal characters."
4279
  msgstr ""
4280
 
4281
- #: profile-builder-2.0/front-end/default-fields/username/username.php:52
4282
- #: profile-builder-2.0/front-end/default-fields/username/username.php:60
4283
  msgid "Please enter a valid username."
4284
  msgstr ""
4285
 
4286
- #: profile-builder-2.0/front-end/default-fields/username/username.php:65
4287
  msgid "This username is already reserved to be used soon."
4288
  msgstr ""
4289
 
4290
- #: profile-builder-2.0/front-end/extra-fields/avatar/avatar.php:72
4291
- #: profile-builder-2.0/front-end/extra-fields/checkbox/checkbox.php:45
4292
- #: profile-builder-2.0/front-end/extra-fields/colorpicker/colorpicker.php:45
4293
- #: profile-builder-2.0/front-end/extra-fields/datepicker/datepicker.php:40
4294
- #: profile-builder-2.0/front-end/extra-fields/input-hidden/input-hidden.php:34
4295
- #: profile-builder-2.0/front-end/extra-fields/input/input.php:30
4296
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:51
4297
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:30
4298
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:39
4299
- #: profile-builder-2.0/front-end/extra-fields/radio/radio.php:44
4300
- #: profile-builder-2.0/front-end/extra-fields/select-cpt/select-cpt.php:52
4301
- #: profile-builder-2.0/front-end/extra-fields/select-multiple/select-multiple.php:46
4302
- #: profile-builder-2.0/front-end/extra-fields/select-timezone/select-timezone.php:49
4303
- #: profile-builder-2.0/front-end/extra-fields/select/select.php:51
4304
- #: profile-builder-2.0/front-end/extra-fields/textarea/textarea.php:30
4305
- #: profile-builder-2.0/front-end/extra-fields/upload/upload.php:70
4306
- #: profile-builder-2.0/front-end/extra-fields/wysiwyg/wysiwyg.php:33
4307
  msgid "required"
4308
  msgstr ""
4309
 
4310
- #: profile-builder-2.0/front-end/extra-fields/extra-fields.php:92
4311
- #: profile-builder-2.0/front-end/login.php:137
4312
- #: profile-builder-2.0/front-end/login.php:144
4313
- #: profile-builder-2.0/front-end/login.php:158
4314
- #: profile-builder-2.0/front-end/recover.php:17
4315
- #: profile-builder-2.0/front-end/recover.php:245
4316
  msgid "ERROR"
4317
  msgstr ""
4318
 
4319
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:46
4320
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:69
4321
  msgid "Please add the Google Maps API key for this field."
4322
  msgstr ""
4323
 
4324
- #: profile-builder-2.0/front-end/extra-fields/map/map.php:134
4325
  msgid "Something went wrong. Please try again."
4326
  msgstr ""
4327
 
4328
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:69
4329
  msgid "Please enter numbers only"
4330
  msgstr ""
4331
 
4332
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:73
4333
- #, php-format
4334
  msgid "Value must be a multiplier of %1$s"
4335
  msgstr ""
4336
 
4337
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:77
4338
- #, php-format
4339
  msgid "Value must be greater than or equal to %1$s"
4340
  msgstr ""
4341
 
4342
- #: profile-builder-2.0/front-end/extra-fields/number/number.php:81
4343
- #, php-format
4344
  msgid "Value must be less than or equal to %1$s"
4345
  msgstr ""
4346
 
4347
- #: profile-builder-2.0/front-end/extra-fields/phone/phone.php:22
4348
  msgid "Required phone number format: "
4349
  msgstr ""
4350
 
4351
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4352
  msgid "Bolivia, __( Plurinational State of"
4353
  msgstr ""
4354
 
4355
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4356
  msgid "Bonaire, __( Sint Eustatius and Saba"
4357
  msgstr ""
4358
 
4359
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4360
  msgid "Brunei Darussalam"
4361
  msgstr ""
4362
 
4363
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4364
  msgid "Cabo Verde"
4365
  msgstr ""
4366
 
4367
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4368
  msgid "Cocos (Keeling) Islands"
4369
  msgstr ""
4370
 
4371
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4372
  msgid "Congo"
4373
  msgstr ""
4374
 
4375
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4376
  msgid "Congo, __( the Democratic Republic of the"
4377
  msgstr ""
4378
 
4379
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4380
  msgid "Cote dIvoire"
4381
  msgstr ""
4382
 
4383
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4384
  msgid "Falkland Islands (Malvinas)"
4385
  msgstr ""
4386
 
4387
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4388
  msgid "Holy See (Vatican City State)"
4389
  msgstr ""
4390
 
4391
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4392
  msgid "Iran, __( Islamic Republic of"
4393
  msgstr ""
4394
 
4395
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4396
  msgid "Korea, __( Democratic Peoples Republic of"
4397
  msgstr ""
4398
 
4399
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4400
  msgid "Korea, __( Republic of"
4401
  msgstr ""
4402
 
4403
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4404
  msgid "Lao Peoples Democratic Republic"
4405
  msgstr ""
4406
 
4407
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4408
  msgid "Macedonia, __( the former Yugoslav Republic of"
4409
  msgstr ""
4410
 
4411
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4412
  msgid "Micronesia, __( Federated States of"
4413
  msgstr ""
4414
 
4415
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4416
  msgid "Moldova, __( Republic of"
4417
  msgstr ""
4418
 
4419
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4420
  msgid "Palestine, __( State of"
4421
  msgstr ""
4422
 
4423
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4424
  msgid "Russian Federation"
4425
  msgstr ""
4426
 
4427
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4428
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
4429
  msgstr ""
4430
 
4431
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4432
  msgid "Saint Martin (French part)"
4433
  msgstr ""
4434
 
4435
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4436
  msgid "Sint Maarten (Dutch part)"
4437
  msgstr ""
4438
 
4439
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4440
  msgid "Syrian Arab Republic"
4441
  msgstr ""
4442
 
4443
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4444
  msgid "Taiwan, __( Province of China"
4445
  msgstr ""
4446
 
4447
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4448
  msgid "Tanzania, __( United Republic of"
4449
  msgstr ""
4450
 
4451
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4452
  msgid "Timor-Leste"
4453
  msgstr ""
4454
 
4455
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4456
  msgid "Venezuela, __( Bolivarian Republic of"
4457
  msgstr ""
4458
 
4459
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4460
  msgid "Viet Nam"
4461
  msgstr ""
4462
 
4463
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4464
  msgid "Virgin Islands, __( British"
4465
  msgstr ""
4466
 
4467
- #: profile-builder-2.0/front-end/extra-fields/select-country/select-country.php:10
4468
  msgid "Virgin Islands, __( U.S."
4469
  msgstr ""
4470
 
4471
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:78
4472
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:87
 
 
 
 
4473
  msgid "Sorry, you cannot upload this file type for this field."
4474
  msgstr ""
4475
 
4476
- #: profile-builder-2.0/front-end/extra-fields/upload/upload_helper_functions.php:94
4477
  msgid "An error occurred, please try again later."
4478
  msgstr ""
4479
 
4480
- #: profile-builder-2.0/front-end/login.php:137
4481
  msgid "The password you entered is incorrect."
4482
  msgstr ""
4483
 
4484
- #: profile-builder-2.0/front-end/login.php:138
4485
- #: profile-builder-2.0/front-end/login.php:145
4486
  msgid "Password Lost and Found."
4487
  msgstr ""
4488
 
4489
- #: profile-builder-2.0/front-end/login.php:138
4490
- #: profile-builder-2.0/front-end/login.php:145
4491
  msgid "Lost your password"
4492
  msgstr ""
4493
 
4494
- #: profile-builder-2.0/front-end/login.php:144
4495
  msgid "Invalid username."
4496
  msgstr ""
4497
 
4498
- #: profile-builder-2.0/front-end/login.php:149
4499
- #: profile-builder-2.0/front-end/login.php:153
4500
  msgid "username"
4501
  msgstr ""
4502
 
4503
- #: profile-builder-2.0/front-end/login.php:149
4504
  msgid "email"
4505
  msgstr ""
4506
 
4507
- #: profile-builder-2.0/front-end/login.php:153
4508
  msgid "username or email"
4509
  msgstr ""
4510
 
4511
- #: profile-builder-2.0/front-end/login.php:158
4512
  msgid "Both fields are empty."
4513
  msgstr ""
4514
 
4515
- #: profile-builder-2.0/front-end/login.php:222
4516
  msgid "Username or Email"
4517
  msgstr ""
4518
 
4519
- #: profile-builder-2.0/front-end/login.php:256
4520
  msgid "Lost your password?"
4521
  msgstr ""
4522
 
4523
- #: profile-builder-2.0/front-end/login.php:295
4524
- #: profile-builder-2.0/front-end/logout.php:25
4525
  msgid "Log out of this account"
4526
  msgstr ""
4527
 
4528
- #: profile-builder-2.0/front-end/login.php:295
4529
  msgid "Log out"
4530
  msgstr ""
4531
 
4532
- #: profile-builder-2.0/front-end/login.php:296
4533
- #, php-format
4534
  msgid "You are currently logged in as %1$s. %2$s"
4535
  msgstr ""
4536
 
4537
- #: profile-builder-2.0/front-end/logout.php:15
4538
- #, php-format
4539
  msgid "You are currently logged in as %s. "
4540
  msgstr ""
4541
 
4542
- #: profile-builder-2.0/front-end/logout.php:15
4543
  msgid "Log out &raquo;"
4544
  msgstr ""
4545
 
4546
- #: profile-builder-2.0/front-end/recover.php:17
4547
  msgid ""
4548
  "Your account has to be confirmed by an administrator before you can use the "
4549
  "\"Password Reset\" feature."
4550
  msgstr ""
4551
 
4552
- #: profile-builder-2.0/front-end/recover.php:94
4553
  msgid "Reset Password"
4554
  msgstr ""
4555
 
4556
- #: profile-builder-2.0/front-end/recover.php:117
4557
  msgid "Please enter your email address."
4558
  msgstr ""
4559
 
4560
- #: profile-builder-2.0/front-end/recover.php:121
4561
  msgid "Please enter your username or email address."
4562
  msgstr ""
4563
 
4564
- #: profile-builder-2.0/front-end/recover.php:122
4565
  msgid "Username or E-mail"
4566
  msgstr ""
4567
 
4568
- #: profile-builder-2.0/front-end/recover.php:125
4569
  msgid "You will receive a link to create a new password via email."
4570
  msgstr ""
4571
 
4572
- #: profile-builder-2.0/front-end/recover.php:138
4573
  msgid "Get New Password"
4574
  msgstr ""
4575
 
4576
- #: profile-builder-2.0/front-end/recover.php:159
4577
  msgid ""
4578
  "You are already logged in. You can change your password on the edit profile "
4579
  "form."
4580
  msgstr ""
4581
 
4582
- #: profile-builder-2.0/front-end/recover.php:185
4583
  msgid "The username entered wasn't found in the database!"
4584
  msgstr ""
4585
 
4586
- #: profile-builder-2.0/front-end/recover.php:185
4587
  msgid "Please check that you entered the correct username."
4588
  msgstr ""
4589
 
4590
- #: profile-builder-2.0/front-end/recover.php:200
4591
  msgid "Check your e-mail for the confirmation link."
4592
  msgstr ""
4593
 
4594
- #: profile-builder-2.0/front-end/recover.php:207
4595
  msgid "The email address entered wasn't found in the database!"
4596
  msgstr ""
4597
 
4598
- #: profile-builder-2.0/front-end/recover.php:207
4599
  msgid "Please check that you entered the correct email address."
4600
  msgstr ""
4601
 
4602
- #: profile-builder-2.0/front-end/recover.php:235
4603
- #, php-format
4604
  msgid ""
4605
  "Someone requested that the password be reset for the following account: <b>"
4606
  "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
4607
  "happen.<br/>To reset your password, visit the following link:%2$s"
4608
  msgstr ""
4609
 
4610
- #: profile-builder-2.0/front-end/recover.php:238
4611
- #, php-format
4612
  msgid "Password Reset from \"%1$s\""
4613
  msgstr ""
4614
 
4615
- #: profile-builder-2.0/front-end/recover.php:245
4616
- #, php-format
4617
  msgid "There was an error while trying to send the activation link to %1$s!"
4618
  msgstr ""
4619
 
4620
- #: profile-builder-2.0/front-end/recover.php:273
4621
  msgid "Your password has been successfully changed!"
4622
  msgstr ""
4623
 
4624
- #: profile-builder-2.0/front-end/recover.php:292
4625
- #, php-format
4626
- msgid "You have successfully reset your password to: %1$s"
4627
  msgstr ""
4628
 
4629
- #: profile-builder-2.0/front-end/recover.php:295
4630
- #: profile-builder-2.0/front-end/recover.php:306
4631
- #, php-format
4632
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4633
  msgstr ""
4634
 
4635
- #: profile-builder-2.0/front-end/recover.php:303
4636
- #, php-format
4637
  msgid ""
4638
  "%1$s has requested a password change via the password reset feature.<br/>His/"
4639
  "her new password is:%2$s"
4640
  msgstr ""
4641
 
4642
- #: profile-builder-2.0/front-end/recover.php:320
4643
  msgid "The entered passwords don't match!"
4644
  msgstr ""
4645
 
4646
- #: profile-builder-2.0/front-end/recover.php:375
4647
  msgid "ERROR:"
4648
  msgstr ""
4649
 
4650
- #: profile-builder-2.0/front-end/recover.php:375
4651
  msgid "Invalid key!"
4652
  msgstr ""
4653
 
4654
- #: profile-builder-2.0/front-end/register.php:56
4655
  msgid "Invalid activation key!"
4656
  msgstr ""
4657
 
4658
- #: profile-builder-2.0/front-end/register.php:60
4659
  msgid "This username is now active!"
4660
  msgstr ""
4661
 
4662
- #: profile-builder-2.0/front-end/register.php:74
4663
  msgid "This username is already activated!"
4664
  msgstr ""
4665
 
4666
- #: profile-builder-2.0/front-end/register.php:124
4667
  msgid "Your email was successfully confirmed."
4668
  msgstr ""
4669
 
4670
- #: profile-builder-2.0/front-end/register.php:153
4671
  msgid "There was an error while trying to activate the user."
4672
  msgstr ""
4673
 
4674
- #: profile-builder-2.0/index.php:34
4675
- msgid ""
4676
- " is also activated. You need to deactivate it before activating this version "
4677
- "of the plugin."
4678
- msgstr ""
4679
-
4680
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:45
4681
  msgid "After Login"
4682
  msgstr ""
4683
 
4684
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:46
4685
  msgid "After Logout"
4686
  msgstr ""
4687
 
4688
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:47
4689
  msgid "After Registration"
4690
  msgstr ""
4691
 
4692
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:48
4693
  msgid "After Edit Profile"
4694
  msgstr ""
4695
 
4696
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:49
4697
  msgid "After Successful Email Confirmation"
4698
  msgstr ""
4699
 
4700
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:50
4701
  msgid "After Successful Password Reset"
4702
  msgstr ""
4703
 
4704
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:51
4705
  msgid "Dashboard (redirect users from accessing the dashboard)"
4706
  msgstr ""
4707
 
4708
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:55
4709
  msgid "User ID"
4710
  msgstr ""
4711
 
4712
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:61
4713
  msgid "User ID or Username"
4714
  msgstr ""
4715
 
4716
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
4717
  msgid "User ID / Username"
4718
  msgstr ""
4719
 
4720
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:62
4721
  msgid "Please select and enter the ID or username of your user."
4722
  msgstr ""
4723
 
4724
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:63
4725
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:93
4726
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:112
4727
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:131
4728
  msgid "Redirect Type"
4729
  msgstr ""
4730
 
4731
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
4732
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
4733
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
4734
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
4735
- msgid "Redirect URL"
4736
- msgstr ""
4737
-
4738
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:64
4739
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:94
4740
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:113
4741
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:138
4742
  msgid ""
4743
  "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, "
4744
  "{{user_id}}, {{user_nicename}}, {{http_referer}}"
4745
  msgstr ""
4746
 
4747
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:71
4748
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:241
4749
  msgid "Individual User Redirects"
4750
  msgstr ""
4751
 
4752
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:84
4753
  msgid "... Choose"
4754
  msgstr ""
4755
 
4756
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
4757
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:31
4758
  msgid "User Role"
4759
  msgstr ""
4760
 
4761
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:92
4762
  msgid "Select a user role."
4763
  msgstr ""
4764
 
4765
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:101
4766
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:242
4767
  msgid "User Role based Redirects"
4768
  msgstr ""
4769
 
4770
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:120
4771
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:243
4772
  msgid "Global Redirects"
4773
  msgstr ""
4774
 
4775
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:133
4776
  msgid "Login ( wp_login.php )"
4777
  msgstr ""
4778
 
4779
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:134
4780
  msgid "Register ( wp-login.php?action=register )"
4781
  msgstr ""
4782
 
4783
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:135
4784
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
4785
  msgstr ""
4786
 
4787
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:136
4788
  msgid "Author Archive ( http://sitename.com/author/admin )"
4789
  msgstr ""
4790
 
4791
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:145
4792
  msgid "Redirect Default WordPress Forms and Pages"
4793
  msgstr ""
4794
 
4795
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:157
4796
  msgid "How does this work?"
4797
  msgstr ""
4798
 
4799
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:179
4800
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
4801
  msgstr ""
4802
 
4803
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:193
4804
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
4805
  msgstr ""
4806
 
4807
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:207
4808
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:221
4809
  msgid "<pre>Redirect</pre><pre>URL</pre>"
4810
  msgstr ""
4811
 
4812
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:236
4813
  msgid ""
4814
  "These redirects happen after a successful action, like registration or after "
4815
  "a successful login."
4816
  msgstr ""
4817
 
4818
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:238
4819
  msgid "Which redirect happens depends on the following priority:"
4820
  msgstr ""
4821
 
4822
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:240
4823
  msgid "Multiple Registration and Edit Profile form settings Redirects"
4824
  msgstr ""
4825
 
4826
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:244
4827
  msgid ""
4828
  "Individual redirects defined in shortcodes; <strong><em>redirect_priority="
4829
  "\"top\"</em></strong> parameter can be added in any shortcode, then that "
4830
  "shortcode redirect will have priority over all other redirects."
4831
  msgstr ""
4832
 
4833
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:247
4834
  msgid "Redirect Default WordPress forms and pages"
4835
  msgstr ""
4836
 
4837
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:248
4838
  msgid ""
4839
  "With these you can redirect various WordPress forms and pages to pages "
4840
  "created with profile builder."
4841
  msgstr ""
4842
 
4843
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:250
4844
  msgid "Available tags for dynamic URLs"
4845
  msgstr ""
4846
 
4847
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:251
4848
  msgid ""
4849
  "You use the following tags in your URLs to redirect users to various pages."
4850
  msgstr ""
4851
 
4852
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:253
4853
  msgid "generates a url of the current website homepage."
4854
  msgstr ""
4855
 
4856
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:254
4857
  msgid ""
4858
  "in WordPress the <a target='_blank' href='https://codex.wordpress.org/"
4859
  "Function_Reference/site_url'>site url</a> can be different then the home url"
4860
  msgstr ""
4861
 
4862
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:255
4863
  msgid "the ID of the user"
4864
  msgstr ""
4865
 
4866
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:256
4867
  msgid ""
4868
  "the URL sanitized version of the username, the user nicename can be safely "
4869
  "used in URLs since it can't contain special characters or spaces."
4870
  msgstr ""
4871
 
4872
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:257
4873
  msgid "the URL of the previously visited page"
4874
  msgstr ""
4875
 
4876
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:340
4877
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:346
4878
- #: profile-builder-2.0/modules/custom-redirects/custom_redirects_admin.php:352
4879
  msgid "You can't add duplicate redirects!"
4880
  msgstr ""
4881
 
4882
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:11
4883
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:12
4884
- #: profile-builder-2.0/modules/modules.php:96
4885
  msgid "Admin Email Customizer"
4886
  msgstr ""
4887
 
4888
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4889
  msgid ""
4890
  "These settings are also replicated in the \"User Email Customizer\" settings-"
4891
  "page upon save."
4892
  msgstr ""
4893
 
4894
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:38
4895
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
4896
  msgid "Valid tags {{reply_to}} and {{site_name}}"
4897
  msgstr ""
4898
 
4899
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:41
4900
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:41
4901
  msgid "From (name)"
4902
  msgstr ""
4903
 
4904
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:49
4905
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:49
4906
  msgid "From (reply-to email)"
4907
  msgstr ""
4908
 
4909
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:54
4910
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:54
4911
  msgid ""
4912
  "Must be a valid email address or the tag {{reply_to}} which defaults to the "
4913
  "administrator email"
4914
  msgstr ""
4915
 
4916
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:57
4917
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:57
4918
  msgid "Common Settings"
4919
  msgstr ""
4920
 
4921
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:60
4922
  msgid ""
4923
  "\n"
4924
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -4926,25 +5018,25 @@ msgid ""
4926
  "<p>E-mail:{{user_email}}</p>\n"
4927
  msgstr ""
4928
 
4929
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:69
4930
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:99
4931
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:126
4932
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:71
4933
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:99
4934
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:128
4935
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:155
4936
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:183
4937
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:214
4938
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:241
4939
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:274
4940
  msgid "Email Subject"
4941
  msgstr ""
4942
 
4943
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:84
4944
  msgid "Default Registration & Registration with Email Confirmation"
4945
  msgstr ""
4946
 
4947
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:87
4948
  msgid ""
4949
  "\n"
4950
  "<p>New subscriber on {{site_name}}.</p>\n"
@@ -4955,12 +5047,12 @@ msgid ""
4955
  "in!</p>\n"
4956
  msgstr ""
4957
 
4958
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:114
4959
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:143
4960
  msgid "Registration with Admin Approval"
4961
  msgstr ""
4962
 
4963
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:117
4964
  msgid ""
4965
  "\n"
4966
  "<p>{{username}} has requested a password change via the password reset "
@@ -4968,93 +5060,97 @@ msgid ""
4968
  "<p>His/her new password is: {{password}}</p>\n"
4969
  msgstr ""
4970
 
4971
- #: profile-builder-2.0/modules/email-customizer/admin-email-customizer.php:141
4972
  msgid "Admin Notification for User Password Reset"
4973
  msgstr ""
4974
 
4975
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:7
4976
  msgid "Available Tags"
4977
  msgstr ""
4978
 
4979
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:11
4980
- #: profile-builder-2.0/modules/user-listing/userlisting.php:186
4981
  msgid "User Fields Tags"
4982
  msgstr ""
4983
 
4984
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:21
4985
  msgid "Site Url"
4986
  msgstr ""
4987
 
4988
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:22
4989
  msgid "Site Name"
4990
  msgstr ""
4991
 
4992
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:25
4993
- #: profile-builder-2.0/modules/user-listing/userlisting.php:158
4994
  msgid "User Id"
4995
  msgstr ""
4996
 
4997
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:33
 
 
 
 
4998
  msgid "Reply To"
4999
  msgstr ""
5000
 
5001
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:36
5002
- #: profile-builder-2.0/modules/user-listing/userlisting.php:118
5003
  msgid "Blog URL"
5004
  msgstr ""
5005
 
5006
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:40
5007
  msgid "Activation Key"
5008
  msgstr ""
5009
 
5010
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:41
5011
  msgid "Activation Url"
5012
  msgstr ""
5013
 
5014
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:42
5015
  msgid "Activation Link"
5016
  msgstr ""
5017
 
5018
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:46
5019
  msgid "Reset Key"
5020
  msgstr ""
5021
 
5022
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:47
5023
  msgid "Reset Url"
5024
  msgstr ""
5025
 
5026
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:48
5027
  msgid "Reset Link"
5028
  msgstr ""
5029
 
5030
- #: profile-builder-2.0/modules/email-customizer/email-customizer.php:479
5031
  msgid "The users selected password at signup"
5032
  msgstr ""
5033
 
5034
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:11
5035
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:12
5036
- #: profile-builder-2.0/modules/modules.php:103
5037
  msgid "User Email Customizer"
5038
  msgstr ""
5039
 
5040
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:38
5041
  msgid ""
5042
  "These settings are also replicated in the \"Admin Email Customizer\" "
5043
  "settings-page upon save."
5044
  msgstr ""
5045
 
5046
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:64
5047
  msgid ""
5048
  "\n"
5049
  "<h3>Welcome to {{site_name}}!</h3>\n"
5050
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5051
  msgstr ""
5052
 
5053
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:85
5054
  msgid "Default Registration"
5055
  msgstr ""
5056
 
5057
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:91
5058
  msgid ""
5059
  "\n"
5060
  "<p>To activate your user, please click the following link:<br/>\n"
@@ -5063,15 +5159,15 @@ msgid ""
5063
  "</p>\n"
5064
  msgstr ""
5065
 
5066
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:103
5067
  msgid "[{{site_name}}] Activate {{username}}"
5068
  msgstr ""
5069
 
5070
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:114
5071
  msgid "Registration with Email Confirmation"
5072
  msgstr ""
5073
 
5074
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:120
5075
  msgid ""
5076
  "\n"
5077
  "<h3>Welcome to {{site_name}}!</h3>\n"
@@ -5080,11 +5176,11 @@ msgid ""
5080
  "You will be notified via email.</p>\n"
5081
  msgstr ""
5082
 
5083
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:132
5084
  msgid "A new account has been created for you on {{site_name}}"
5085
  msgstr ""
5086
 
5087
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:148
5088
  msgid ""
5089
  "\n"
5090
  "<h3>Good News!</h3>\n"
@@ -5092,15 +5188,15 @@ msgid ""
5092
  "{{site_name}}.</p>\n"
5093
  msgstr ""
5094
 
5095
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:159
5096
  msgid "Your account on {{site_name}} has been approved!"
5097
  msgstr ""
5098
 
5099
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:170
5100
  msgid "User Approval Notification"
5101
  msgstr ""
5102
 
5103
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:175
5104
  msgid ""
5105
  "\n"
5106
  "<h3>Hello,</h3>\n"
@@ -5108,15 +5204,15 @@ msgid ""
5108
  "{{username}} on {{site_name}}.</p>\n"
5109
  msgstr ""
5110
 
5111
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:187
5112
  msgid "Your account on {{site_name}} has been unapproved!"
5113
  msgstr ""
5114
 
5115
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:198
5116
  msgid "Unapproved User Notification"
5117
  msgstr ""
5118
 
5119
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:204
5120
  msgid ""
5121
  "\n"
5122
  "<p>Someone requested that the password be reset for the following account: "
@@ -5128,278 +5224,255 @@ msgid ""
5128
  "{{{reset_link}}}</p>\n"
5129
  msgstr ""
5130
 
5131
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:218
5132
  msgid "[{{site_name}}] Password Reset"
5133
  msgstr ""
5134
 
5135
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:229
5136
  msgid "Password Reset Email"
5137
  msgstr ""
5138
 
5139
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:235
5140
  msgid ""
5141
  "\n"
5142
- "<p>You have successfully reset your password to: {{password}}</p>\n"
5143
  msgstr ""
5144
 
5145
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:245
5146
  msgid "[{{site_name}}] Password Reset Successfully"
5147
  msgstr ""
5148
 
5149
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:256
5150
  msgid "Password Reset Success Email"
5151
  msgstr ""
5152
 
5153
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:278
5154
  msgid "[{{site_name}}] Notice of Email Change"
5155
  msgstr ""
5156
 
5157
- #: profile-builder-2.0/modules/email-customizer/user-email-customizer.php:289
5158
  msgid "Changed Email Address Notification"
5159
  msgstr ""
5160
 
5161
- #: profile-builder-2.0/modules/modules.php:11
5162
- #: profile-builder-2.0/modules/modules.php:58
5163
  msgid "Modules"
5164
  msgstr ""
5165
 
5166
- #: profile-builder-2.0/modules/modules.php:59
5167
  msgid ""
5168
  "Here you can activate / deactivate available modules for Profile Builder."
5169
  msgstr ""
5170
 
5171
- #: profile-builder-2.0/modules/modules.php:69
5172
  msgid "Name/Description"
5173
  msgstr ""
5174
 
5175
- #: profile-builder-2.0/modules/modules.php:70
5176
  msgid "Status"
5177
  msgstr ""
5178
 
5179
- #: profile-builder-2.0/modules/modules.php:77
5180
- #: profile-builder-2.0/modules/modules.php:84
5181
- #: profile-builder-2.0/modules/modules.php:91
5182
- #: profile-builder-2.0/modules/modules.php:98
5183
- #: profile-builder-2.0/modules/modules.php:105
5184
- #: profile-builder-2.0/modules/modules.php:112
5185
- #: profile-builder-2.0/modules/modules.php:119
5186
  msgid "Active"
5187
  msgstr ""
5188
 
5189
- #: profile-builder-2.0/modules/modules.php:78
5190
- #: profile-builder-2.0/modules/modules.php:85
5191
- #: profile-builder-2.0/modules/modules.php:92
5192
- #: profile-builder-2.0/modules/modules.php:99
5193
- #: profile-builder-2.0/modules/modules.php:106
5194
- #: profile-builder-2.0/modules/modules.php:113
5195
- #: profile-builder-2.0/modules/modules.php:120
5196
  msgid "Inactive"
5197
  msgstr ""
5198
 
5199
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:11
5200
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:12
5201
  msgid "Edit-profile Form"
5202
  msgstr ""
5203
 
5204
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:13
5205
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:13
5206
- #: profile-builder-2.0/modules/user-listing/userlisting.php:13
5207
  msgid "Add New"
5208
  msgstr ""
5209
 
5210
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:14
5211
  msgid "Add new Edit-profile Form"
5212
  msgstr ""
5213
 
5214
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:15
5215
  msgid "Edit the Edit-profile Forms"
5216
  msgstr ""
5217
 
5218
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:16
5219
  msgid "New Edit-profile Form"
5220
  msgstr ""
5221
 
5222
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:17
5223
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:23
5224
  msgid "Edit-profile Forms"
5225
  msgstr ""
5226
 
5227
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:18
5228
  msgid "View the Edit-profile Form"
5229
  msgstr ""
5230
 
5231
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:19
5232
  msgid "Search the Edit-profile Forms"
5233
  msgstr ""
5234
 
5235
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:20
5236
  msgid "No Edit-profile Form found"
5237
  msgstr ""
5238
 
5239
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:21
5240
  msgid "No Edit-profile Forms found in trash"
5241
  msgstr ""
5242
 
5243
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:135
5244
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:138
5245
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2115
5246
  msgid "Shortcode"
5247
  msgstr ""
5248
 
5249
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:155
5250
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:159
5251
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2136
5252
  msgid "(no title)"
5253
  msgstr ""
5254
 
5255
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:175
5256
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:178
5257
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2156
5258
  msgid "The shortcode will be available after you publish this form."
5259
  msgstr ""
5260
 
5261
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:177
5262
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:180
5263
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2158
5264
  msgid "Use this shortcode on the page you want the form to be displayed:"
5265
  msgstr ""
5266
 
5267
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:181
5268
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:184
5269
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2162
5270
  msgid ""
5271
  "<span style=\"color:red;\">Note:</span> changing the form title also changes "
5272
  "the shortcode!"
5273
  msgstr ""
5274
 
5275
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:187
5276
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:190
5277
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2195
5278
  msgid "Form Shortcode"
5279
  msgstr ""
5280
 
5281
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5282
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5283
- msgid "Redirect"
5284
- msgstr ""
5285
-
5286
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:206
5287
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:230
5288
  msgid "Whether to redirect the user to a specific page or not"
5289
  msgstr ""
5290
 
5291
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5292
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5293
  msgid "Display Messages"
5294
  msgstr ""
5295
 
5296
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:207
5297
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:231
5298
  msgid "Allowed time to display any success messages (in seconds)"
5299
  msgstr ""
5300
 
5301
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5302
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5303
  msgid "URL"
5304
  msgstr ""
5305
 
5306
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:208
5307
  msgid ""
5308
  "Specify the URL of the page users will be redirected once they updated their "
5309
  "profile using this form<br/>Use the following format: http://www.mysite.com"
5310
  msgstr ""
5311
 
5312
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:215
5313
  msgid "After Profile Update..."
5314
  msgstr ""
5315
 
5316
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:241
5317
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:262
5318
  msgid "Add New Field to the List"
5319
  msgstr ""
5320
 
5321
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:245
5322
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:266
5323
- msgid "Choose one of the supported fields you manage <a href=\""
5324
- msgstr ""
5325
-
5326
- #: profile-builder-2.0/modules/multiple-forms/edit-profile-forms.php:274
5327
  msgid "This form is empty."
5328
  msgstr ""
5329
 
5330
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:222
5331
  msgid "You need to specify the title of the form before creating it"
5332
  msgstr ""
5333
 
5334
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5335
  msgid "<pre>Title (Type)</pre>"
5336
  msgstr ""
5337
 
5338
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5339
  msgid "Delete all items"
5340
  msgstr ""
5341
 
5342
- #: profile-builder-2.0/modules/multiple-forms/multiple-forms.php:406
5343
  msgid "Delete all"
5344
  msgstr ""
5345
 
5346
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:11
5347
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:12
5348
  msgid "Registration Form"
5349
  msgstr ""
5350
 
5351
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:14
5352
  msgid "Add new Registration Form"
5353
  msgstr ""
5354
 
5355
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:15
5356
  msgid "Edit the Registration Forms"
5357
  msgstr ""
5358
 
5359
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:16
5360
  msgid "New Registration Form"
5361
  msgstr ""
5362
 
5363
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:17
5364
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:23
5365
  msgid "Registration Forms"
5366
  msgstr ""
5367
 
5368
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:18
5369
  msgid "View the Registration Form"
5370
  msgstr ""
5371
 
5372
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:19
5373
  msgid "Search the Registration Forms"
5374
  msgstr ""
5375
 
5376
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:20
5377
  msgid "No Registration Form found"
5378
  msgstr ""
5379
 
5380
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:21
5381
  msgid "No Registration Forms found in trash"
5382
  msgstr ""
5383
 
5384
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:219
5385
- msgid "Default Role"
5386
- msgstr ""
5387
-
5388
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5389
  msgid "Set Role"
5390
  msgstr ""
5391
 
5392
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:228
5393
  msgid ""
5394
  "Choose what role the user will have after (s)he registered<br/>If not "
5395
  "specified, defaults to the role set in the WordPress settings"
5396
  msgstr ""
5397
 
5398
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5399
  msgid "Automatically Log In"
5400
  msgstr ""
5401
 
5402
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:229
5403
  msgid ""
5404
  "Whether to automatically log in the newly registered user or not<br/>Only "
5405
  "works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
@@ -5407,495 +5480,514 @@ msgid ""
5407
  "automatic login not work"
5408
  msgstr ""
5409
 
5410
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:232
5411
  msgid ""
5412
  "Specify the URL of the page users will be redirected once registered using "
5413
  "this form<br/>Use the following format: http://www.mysite.com"
5414
  msgstr ""
5415
 
5416
- #: profile-builder-2.0/modules/multiple-forms/register-forms.php:238
5417
  msgid "After Registration..."
5418
  msgstr ""
5419
 
5420
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
5421
  msgid "Limit"
5422
  msgstr ""
5423
 
5424
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:190
5425
  msgid ""
5426
  "Enable limit to the number of fields to be generated by users in front end "
5427
  "forms "
5428
  msgstr ""
5429
 
5430
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
5431
  msgid "General Limit"
5432
  msgstr ""
5433
 
5434
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:191
5435
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
5436
  msgstr ""
5437
 
5438
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
5439
  msgid "Limit reached message"
5440
  msgstr ""
5441
 
5442
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
5443
  msgid "The maximum number of fields has been reached."
5444
  msgstr ""
5445
 
5446
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:192
5447
  msgid ""
5448
  "The popup message to display when the limit of repeater groups is reached."
5449
  msgstr ""
5450
 
5451
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
5452
  msgid "Limit per Role"
5453
  msgstr ""
5454
 
5455
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:193
5456
  msgid "Leave 0 for unlimited."
5457
  msgstr ""
5458
 
5459
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
5460
  msgid "Repeated field group"
5461
  msgstr ""
5462
 
5463
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:194
5464
  msgid "Manage field or group of fields that will be repeatable."
5465
  msgstr ""
5466
 
5467
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:259
5468
  msgid "Edit field group"
5469
  msgstr ""
5470
 
5471
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:260
5472
  msgid "Repeatable fields saved!"
5473
  msgstr ""
5474
 
5475
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:277
5476
- #: profile-builder-2.0/modules/repeater-field/admin/repeater-manage-fields.php:326
5477
  msgid "Please enter a unique field title.\n"
5478
  msgstr ""
5479
 
5480
- #: profile-builder-2.0/modules/repeater-field/repeater-field.php:267
5481
  msgid "Are you sure you want to delete this?"
5482
  msgstr ""
5483
 
5484
- #: profile-builder-2.0/modules/user-listing/userlisting.php:14
5485
  msgid "Add new User Listing"
5486
  msgstr ""
5487
 
5488
- #: profile-builder-2.0/modules/user-listing/userlisting.php:15
5489
  msgid "Edit the User Listing"
5490
  msgstr ""
5491
 
5492
- #: profile-builder-2.0/modules/user-listing/userlisting.php:16
5493
  msgid "New User Listing"
5494
  msgstr ""
5495
 
5496
- #: profile-builder-2.0/modules/user-listing/userlisting.php:18
5497
  msgid "View the User Listing"
5498
  msgstr ""
5499
 
5500
- #: profile-builder-2.0/modules/user-listing/userlisting.php:19
5501
  msgid "Search the User Listing"
5502
  msgstr ""
5503
 
5504
- #: profile-builder-2.0/modules/user-listing/userlisting.php:20
5505
  msgid "No User Listing found"
5506
  msgstr ""
5507
 
5508
- #: profile-builder-2.0/modules/user-listing/userlisting.php:21
5509
  msgid "No User Listing found in trash"
5510
  msgstr ""
5511
 
5512
- #: profile-builder-2.0/modules/user-listing/userlisting.php:105
5513
  msgid "Display name as"
5514
  msgstr ""
5515
 
5516
- #: profile-builder-2.0/modules/user-listing/userlisting.php:150
5517
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2223
5518
  msgid "Registration Date"
5519
  msgstr ""
5520
 
5521
- #: profile-builder-2.0/modules/user-listing/userlisting.php:151
5522
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2228
5523
  msgid "Number of Posts"
5524
  msgstr ""
5525
 
5526
- #: profile-builder-2.0/modules/user-listing/userlisting.php:155
5527
  msgid "More Info"
5528
  msgstr ""
5529
 
5530
- #: profile-builder-2.0/modules/user-listing/userlisting.php:156
5531
  msgid "More Info Url"
5532
  msgstr ""
5533
 
5534
- #: profile-builder-2.0/modules/user-listing/userlisting.php:157
5535
  msgid "Avatar or Gravatar"
5536
  msgstr ""
5537
 
5538
- #: profile-builder-2.0/modules/user-listing/userlisting.php:159
5539
  msgid "User Nicename"
5540
  msgstr ""
5541
 
5542
- #: profile-builder-2.0/modules/user-listing/userlisting.php:192
5543
  msgid "Sort Tags"
5544
  msgstr ""
5545
 
5546
- #: profile-builder-2.0/modules/user-listing/userlisting.php:196
5547
- #: profile-builder-2.0/modules/user-listing/userlisting.php:227
5548
  msgid "Extra Functions"
5549
  msgstr ""
5550
 
5551
- #: profile-builder-2.0/modules/user-listing/userlisting.php:199
5552
  msgid "Pagination"
5553
  msgstr ""
5554
 
5555
- #: profile-builder-2.0/modules/user-listing/userlisting.php:200
5556
  msgid "Search all Fields"
5557
  msgstr ""
5558
 
5559
- #: profile-builder-2.0/modules/user-listing/userlisting.php:201
5560
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2308
5561
  msgid "Faceted Menus"
5562
  msgstr ""
5563
 
5564
- #: profile-builder-2.0/modules/user-listing/userlisting.php:202
5565
  msgid "User Count"
5566
  msgstr ""
5567
 
5568
- #: profile-builder-2.0/modules/user-listing/userlisting.php:229
5569
  msgid "Go Back Link"
5570
  msgstr ""
5571
 
5572
- #: profile-builder-2.0/modules/user-listing/userlisting.php:247
5573
  msgid "All-userlisting Template"
5574
  msgstr ""
5575
 
5576
- #: profile-builder-2.0/modules/user-listing/userlisting.php:250
5577
  msgid "Single-userlisting Template"
5578
  msgstr ""
5579
 
5580
- #: profile-builder-2.0/modules/user-listing/userlisting.php:276
5581
  msgid "Avatar"
5582
  msgstr ""
5583
 
5584
- #: profile-builder-2.0/modules/user-listing/userlisting.php:280
5585
- #: profile-builder-2.0/modules/user-listing/userlisting.php:757
5586
- msgid "Posts"
5587
- msgstr ""
5588
-
5589
- #: profile-builder-2.0/modules/user-listing/userlisting.php:281
5590
- #: profile-builder-2.0/modules/user-listing/userlisting.php:739
5591
  msgid "Sign-up Date"
5592
  msgstr ""
5593
 
5594
- #: profile-builder-2.0/modules/user-listing/userlisting.php:282
5595
  msgid "More"
5596
  msgstr ""
5597
 
5598
- #: profile-builder-2.0/modules/user-listing/userlisting.php:376
5599
  msgid "You do not have permission to view this user list."
5600
  msgstr ""
5601
 
5602
- #: profile-builder-2.0/modules/user-listing/userlisting.php:389
5603
  msgid "You do not have the required user role to view this user list."
5604
  msgstr ""
5605
 
5606
- #: profile-builder-2.0/modules/user-listing/userlisting.php:413
5607
  msgid "User not found"
5608
  msgstr ""
5609
 
5610
- #: profile-builder-2.0/modules/user-listing/userlisting.php:733
5611
  msgid "First/Lastname"
5612
  msgstr ""
5613
 
5614
- #: profile-builder-2.0/modules/user-listing/userlisting.php:748
5615
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2226
5616
  msgid "Display Name"
5617
  msgstr ""
5618
 
5619
- #: profile-builder-2.0/modules/user-listing/userlisting.php:760
5620
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2233
5621
  msgid "Aim"
5622
  msgstr ""
5623
 
5624
- #: profile-builder-2.0/modules/user-listing/userlisting.php:763
5625
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2234
5626
  msgid "Yim"
5627
  msgstr ""
5628
 
5629
- #: profile-builder-2.0/modules/user-listing/userlisting.php:766
5630
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2235
5631
  msgid "Jabber"
5632
  msgstr ""
5633
 
5634
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1038
5635
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1485
5636
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1953
5637
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2426
5638
  msgid "Search Users by All Fields"
5639
  msgstr ""
5640
 
5641
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5642
  msgid "Click here to see more information about this user"
5643
  msgstr ""
5644
 
5645
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1290
5646
  msgid "More..."
5647
  msgstr ""
5648
 
5649
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1293
5650
  msgid "Click here to see more information about this user."
5651
  msgstr ""
5652
 
5653
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1320
5654
  msgid "View Map"
5655
  msgstr ""
5656
 
5657
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5658
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1442
5659
  msgid "Click here to go back"
5660
  msgstr ""
5661
 
5662
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1439
5663
  msgid "Back"
5664
  msgstr ""
5665
 
5666
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1472
5667
  msgid "&laquo;&laquo; First"
5668
  msgstr ""
5669
 
5670
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1473
5671
  msgid "&laquo; Prev"
5672
  msgstr ""
5673
 
5674
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1474
5675
  msgid "Next &raquo; "
5676
  msgstr ""
5677
 
5678
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1475
5679
  msgid "Last &raquo;&raquo;"
5680
  msgstr ""
5681
 
5682
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1504
5683
  msgid "You don't have any pagination settings on this userlisting!"
5684
  msgstr ""
5685
 
5686
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1553
5687
  msgid "Show All"
5688
  msgstr ""
5689
 
5690
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1621
5691
  msgid "Choose..."
5692
  msgstr ""
5693
 
5694
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1710
5695
  msgid "No options available"
5696
  msgstr ""
5697
 
5698
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1861
5699
  msgid "Remove All Filters"
5700
  msgstr ""
5701
 
5702
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1970
5703
  msgid "Search"
5704
  msgstr ""
5705
 
5706
- #: profile-builder-2.0/modules/user-listing/userlisting.php:1971
5707
  msgid "Clear Results"
5708
  msgstr ""
5709
 
5710
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2165
5711
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2169
5712
  msgid "Extra shortcode parameters"
5713
  msgstr ""
5714
 
5715
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2167
5716
  msgid "View all extra shortcode parameters"
5717
  msgstr ""
5718
 
5719
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2172
5720
  msgid ""
5721
  "displays users having a certain meta-value within a certain (extra) meta-"
5722
  "field"
5723
  msgstr ""
5724
 
5725
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2173
5726
  msgid "Example:"
5727
  msgstr ""
5728
 
5729
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2175
5730
  msgid ""
5731
  "Remember though, that the field-value combination must exist in the database."
5732
  msgstr ""
5733
 
5734
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2181
5735
  msgid "displays only the users that you specified the user_id for"
5736
  msgstr ""
5737
 
5738
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2187
5739
  msgid "displays all users except the ones you specified the user_id for"
5740
  msgstr ""
5741
 
5742
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2250
5743
  msgid "Random (very slow on large databases > 10K user)"
5744
  msgstr ""
5745
 
5746
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2253
5747
  msgid "Ascending"
5748
  msgstr ""
5749
 
5750
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2254
5751
  msgid "Descending"
5752
  msgstr ""
5753
 
5754
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5755
  msgid "Roles to Display"
5756
  msgstr ""
5757
 
5758
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2262
5759
  msgid ""
5760
  "Restrict the userlisting to these selected roles only<br/>If not specified, "
5761
  "defaults to all existing roles"
5762
  msgstr ""
5763
 
5764
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5765
  msgid "Number of Users/Page"
5766
  msgstr ""
5767
 
5768
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2263
5769
  msgid ""
5770
  "Set the number of users to be displayed on every paginated part of the all-"
5771
  "userlisting"
5772
  msgstr ""
5773
 
5774
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5775
  msgid "Default Sorting Criteria"
5776
  msgstr ""
5777
 
5778
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2264
5779
  msgid ""
5780
  "Set the default sorting criteria<br/>This can temporarily be changed for "
5781
  "each new session"
5782
  msgstr ""
5783
 
5784
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5785
  msgid "Default Sorting Order"
5786
  msgstr ""
5787
 
5788
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2265
5789
  msgid ""
5790
  "Set the default sorting order<br/>This can temporarily be changed for each "
5791
  "new session"
5792
  msgstr ""
5793
 
5794
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5795
  msgid "Avatar Size (All-userlisting)"
5796
  msgstr ""
5797
 
5798
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2266
5799
  msgid "Set the avatar size on the all-userlisting only"
5800
  msgstr ""
5801
 
5802
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5803
  msgid "Avatar Size (Single-userlisting)"
5804
  msgstr ""
5805
 
5806
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2267
5807
  msgid "Set the avatar size on the single-userlisting only"
5808
  msgstr ""
5809
 
5810
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5811
  msgid "Visible only to logged in users?"
5812
  msgstr ""
5813
 
5814
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2268
5815
  msgid "The userlisting will only be visible only to the logged in users"
5816
  msgstr ""
5817
 
5818
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5819
  msgid "Visible to following Roles"
5820
  msgstr ""
5821
 
5822
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2269
5823
  msgid "The userlisting will only be visible to the following roles"
5824
  msgstr ""
5825
 
5826
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2275
5827
  msgid "Userlisting Settings"
5828
  msgstr ""
5829
 
5830
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
5831
  msgid "Label"
5832
  msgstr ""
5833
 
5834
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2298
5835
  msgid "Choose the facet name that appears on the frontend"
5836
  msgstr ""
5837
 
5838
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
5839
  msgid "Facet Type"
5840
  msgstr ""
5841
 
5842
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2299
5843
  msgid "Choose the facet menu type"
5844
  msgstr ""
5845
 
5846
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
5847
  msgid "Facet Meta"
5848
  msgstr ""
5849
 
5850
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2300
5851
  msgid "Choose the meta field for the facet menu"
5852
  msgstr ""
5853
 
5854
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
5855
  msgid "Behaviour"
5856
  msgstr ""
5857
 
5858
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
5859
  msgid "Narrow the results"
5860
  msgstr ""
5861
 
5862
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
5863
  msgid "Expand the results"
5864
  msgstr ""
5865
 
5866
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2301
5867
  msgid "Choose how multiple selections affect the results"
5868
  msgstr ""
5869
 
5870
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
5871
  msgid "Visible choices"
5872
  msgstr ""
5873
 
5874
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2302
5875
  msgid "Show a toggle link after this many choices. Leave blank for all"
5876
  msgstr ""
5877
 
5878
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
5879
  msgid "Search Fields"
5880
  msgstr ""
5881
 
5882
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2325
5883
  msgid "Choose the fields in which the Search Field will look in"
5884
  msgstr ""
5885
 
5886
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2330
5887
  msgid "Search Settings"
5888
  msgstr ""
5889
 
5890
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5891
  msgid ""
5892
  "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5893
  msgstr ""
5894
 
5895
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2402
5896
  msgid "You can find it in the Profile Builder menu."
5897
  msgstr ""
5898
 
5899
- #: profile-builder-2.0/modules/user-listing/userlisting.php:2565
5900
  msgid "No results found!"
5901
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2017 Profile Builder Pro
2
+ # This file is distributed under the same license as the Profile Builder Pro package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Profile Builder Pro 2.7.1\n"
6
+ "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/profile-builder-2.0\n"
7
+ "POT-Creation-Date: 2017-12-05 12:23:24+00:00\n"
 
 
 
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
14
 
15
+ #: admin/add-ons.php:10 admin/add-ons.php:193
16
+ msgid "Add-Ons"
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  msgstr ""
18
 
19
+ #: admin/add-ons.php:41
20
+ msgid "Recommended Plugins"
 
 
21
  msgstr ""
22
 
23
+ #: admin/add-ons.php:72 admin/add-ons.php:143 admin/pms-cross-promotion.php:102
24
+ msgid "Free"
25
  msgstr ""
26
 
27
+ #: admin/add-ons.php:74
28
  msgid ""
29
+ "Translate your Profile Builder forms with a WordPress translation plugin "
30
+ "that anyone can use. It offers a simpler way to translate WordPress sites, "
31
+ "with full support for WooCommerce and site builders."
 
 
 
 
 
 
 
 
 
32
  msgstr ""
33
 
34
+ #: admin/add-ons.php:75 admin/add-ons.php:146 admin/pms-cross-promotion.php:105
35
+ msgid "More Details"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
  msgstr ""
37
 
38
+ #: admin/add-ons.php:84 admin/add-ons.php:155 admin/add-ons.php:195
39
+ #: admin/add-ons.php:284 admin/pms-cross-promotion.php:78
40
+ #: admin/pms-cross-promotion.php:114 admin/pms-cross-promotion.php:193
41
+ msgid "Activate"
42
  msgstr ""
43
 
44
+ #: admin/add-ons.php:88 admin/add-ons.php:159 admin/add-ons.php:207
45
+ #: admin/add-ons.php:288 admin/pms-cross-promotion.php:90
46
+ #: admin/pms-cross-promotion.php:118 admin/pms-cross-promotion.php:197
47
+ msgid "Deactivate"
48
  msgstr ""
49
 
50
+ #: admin/add-ons.php:93 admin/add-ons.php:164 admin/pms-cross-promotion.php:88
51
+ #: admin/pms-cross-promotion.php:123 admin/pms-cross-promotion.php:202
52
+ msgid "Plugin is <strong>inactive</strong>"
53
  msgstr ""
54
 
55
+ #: admin/add-ons.php:95 admin/add-ons.php:166 admin/pms-cross-promotion.php:87
56
+ #: admin/pms-cross-promotion.php:125 admin/pms-cross-promotion.php:204
57
+ msgid "Plugin is <strong>active</strong>"
58
  msgstr ""
59
 
60
+ #: admin/add-ons.php:101 admin/add-ons.php:172
61
+ #: admin/pms-cross-promotion.php:137 admin/pms-cross-promotion.php:216
62
+ msgid "Install Now"
 
63
  msgstr ""
64
 
65
+ #: admin/add-ons.php:104 admin/add-ons.php:175 admin/add-ons.php:308
66
+ #: admin/pms-cross-promotion.php:141 admin/pms-cross-promotion.php:220
67
+ msgid "Compatible with your version of Profile Builder."
68
  msgstr ""
69
 
70
+ #: admin/add-ons.php:109 admin/add-ons.php:180
71
+ #: admin/pms-cross-promotion.php:146
72
  msgid ""
73
+ "Could not install plugin. Retry or <a href=\"%s\" target=\"_blank\">install "
74
+ "manually</a>."
 
 
 
 
 
 
 
 
 
75
  msgstr ""
76
 
77
+ #: admin/add-ons.php:145
78
  msgid ""
79
+ "Accept user payments, create subscription plans and restrict content on your "
80
+ "membership site."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  msgstr ""
82
 
83
+ #: admin/add-ons.php:197 admin/pms-cross-promotion.php:80
 
84
  msgid "Downloading and installing..."
85
  msgstr ""
86
 
87
+ #: admin/add-ons.php:198 admin/pms-cross-promotion.php:81
 
88
  msgid "Installation complete"
89
  msgstr ""
90
 
91
+ #: admin/add-ons.php:200
92
  msgid "Add-On is Active"
93
  msgstr ""
94
 
95
+ #: admin/add-ons.php:201
96
  msgid "Add-On has been activated"
97
  msgstr ""
98
 
99
+ #: admin/add-ons.php:202 admin/pms-cross-promotion.php:85
 
100
  msgid "Retry Install"
101
  msgstr ""
102
 
103
+ #: admin/add-ons.php:204 admin/add-ons.php:295
 
104
  msgid "Add-On is <strong>active</strong>"
105
  msgstr ""
106
 
107
+ #: admin/add-ons.php:205 admin/add-ons.php:293
 
108
  msgid "Add-On is <strong>inactive</strong>"
109
  msgstr ""
110
 
111
+ #: admin/add-ons.php:208
 
 
 
 
 
 
 
 
 
112
  msgid "Add-On has been deactivated."
113
  msgstr ""
114
 
115
+ #: admin/add-ons.php:216
116
  msgid ""
117
  "Something went wrong, we could not connect to the server. Please try again "
118
  "later."
119
  msgstr ""
120
 
121
+ #: admin/add-ons.php:260
122
  msgid "Available in Hobbyist and Pro Versions"
123
  msgstr ""
124
 
125
+ #: admin/add-ons.php:262
126
  msgid "Available in All Versions"
127
  msgstr ""
128
 
129
+ #: admin/add-ons.php:303
130
  msgid "Learn More"
131
  msgstr ""
132
 
133
+ #: admin/add-ons.php:303 admin/pms-cross-promotion.php:134
134
+ #: admin/pms-cross-promotion.php:213
 
 
135
  msgid "Download Now"
136
  msgstr ""
137
 
138
+ #: admin/add-ons.php:317
 
 
 
 
 
 
 
139
  msgid "Upgrade Profile Builder"
140
  msgstr ""
141
 
142
+ #: admin/add-ons.php:318
143
  msgid "Not compatible with Profile Builder"
144
  msgstr ""
145
 
146
+ #: admin/add-ons.php:325 front-end/class-formbuilder.php:418
 
147
  msgid "Update"
148
  msgstr ""
149
 
150
+ #: admin/add-ons.php:326
151
  msgid "Not compatible with your version of Profile Builder."
152
  msgstr ""
153
 
154
+ #: admin/add-ons.php:327
155
  msgid "Minimum required Profile Builder version:"
156
  msgstr ""
157
 
158
+ #: admin/add-ons.php:332
 
159
  msgid ""
160
  "Could not install add-on. Retry or <a href=\"%s\" target=\"_blank\">install "
161
  "manually</a>."
162
  msgstr ""
163
 
164
+ #: admin/admin-bar.php:10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
165
  msgid "Show/Hide the Admin Bar on the Front-End"
166
  msgstr ""
167
 
168
+ #: admin/admin-bar.php:10 admin/admin-bar.php:47
 
169
  msgid "Admin Bar Settings"
170
  msgstr ""
171
 
172
+ #: admin/admin-bar.php:48
173
  msgid ""
174
  "Choose which user roles view the admin bar in the front-end of the website."
175
  msgstr ""
176
 
177
+ #: admin/admin-bar.php:57
178
  msgid "User-Role"
179
  msgstr ""
180
 
181
+ #: admin/admin-bar.php:58
182
  msgid "Visibility"
183
  msgstr ""
184
 
185
+ #: admin/admin-bar.php:73 modules/multiple-forms/edit-profile-forms.php:206
186
+ #: modules/multiple-forms/register-forms.php:230
 
187
  msgid "Default"
188
  msgstr ""
189
 
190
+ #: admin/admin-bar.php:74
191
  msgid "Show"
192
  msgstr ""
193
 
194
+ #: admin/admin-bar.php:75 modules/user-listing/userlisting.php:1599
 
195
  msgid "Hide"
196
  msgstr ""
197
 
198
+ #: admin/admin-bar.php:86 admin/general-settings.php:243
199
+ #: admin/register-version.php:95 features/functions.php:714
200
+ #: modules/modules.php:127
201
+ msgid "Save Changes"
202
+ msgstr ""
203
+
204
+ #: admin/admin-functions.php:37
205
  msgid ""
206
  "Login is set to be done using the E-mail. This field will NOT appear in the "
207
  "front-end! ( you can change these settings under the \"%s\" tab )"
208
  msgstr ""
209
 
210
+ #: admin/admin-functions.php:37 admin/general-settings.php:10
211
+ #: admin/general-settings.php:35
 
212
  msgid "General Settings"
213
  msgstr ""
214
 
215
+ #: admin/admin-functions.php:41
216
  msgid "Display name publicly as - only appears on the Edit Profile page!"
217
  msgstr ""
218
 
219
+ #: admin/admin-functions.php:44
220
  msgid "Blog Details - only appears on the Registration page!"
221
  msgstr ""
222
 
223
+ #: admin/admin-functions.php:132
 
224
  msgid ""
225
  "<strong>ERROR</strong>: The password must have the minimum length of %s "
226
  "characters"
227
  msgstr ""
228
 
229
+ #: admin/admin-functions.php:137 admin/general-settings.php:229
 
230
  msgid "Very weak"
231
  msgstr ""
232
 
233
+ #: admin/admin-functions.php:137 admin/general-settings.php:230
234
+ #: features/functions.php:555 features/functions.php:579
 
235
  msgid "Weak"
236
  msgstr ""
237
 
238
+ #: admin/admin-functions.php:137 admin/general-settings.php:231
239
+ #: features/functions.php:555 features/functions.php:579
 
240
  msgid "Medium"
241
  msgstr ""
242
 
243
+ #: admin/admin-functions.php:137 admin/general-settings.php:232
244
+ #: features/functions.php:555 features/functions.php:579
 
245
  msgid "Strong"
246
  msgstr ""
247
 
248
+ #: admin/admin-functions.php:148
 
249
  msgid "<strong>ERROR</strong>: The password must have a minimum strength of %s"
250
  msgstr ""
251
 
252
+ #: admin/admin-functions.php:187
253
  msgid "Add Field"
254
  msgstr ""
255
 
256
+ #: admin/admin-functions.php:189
257
+ #: features/content-restriction/content-restriction.php:117
258
+ #: modules/class-mustache-templates/class-mustache-templates.php:390
259
  msgid "Save Settings"
260
  msgstr ""
261
 
262
+ #: admin/admin-functions.php:200
 
263
  msgid ""
264
  "If you enjoy using <strong> %1$s </strong> please <a href=\"%2$s\" target="
265
  "\"_blank\">rate us on WordPress.org</a>. More happy users means more "
266
  "features, less bugs and better support for everyone. "
267
  msgstr ""
268
 
269
+ #: admin/basic-info.php:10
270
  msgid "Basic Information"
271
  msgstr ""
272
 
273
+ #: admin/basic-info.php:29
 
274
  msgid "Version %s"
275
  msgstr ""
276
 
277
+ #: admin/basic-info.php:31
 
 
 
 
278
  msgid ""
279
  "The best way to add front-end registration, edit profile and login forms."
280
  msgstr ""
281
 
282
+ #: admin/basic-info.php:33
283
  msgid "For Modern User Interaction"
284
  msgstr ""
285
 
286
+ #: admin/basic-info.php:36 features/login-widget/login-widget.php:59
287
+ msgid "Login"
288
+ msgstr ""
289
+
290
+ #: admin/basic-info.php:37
291
  msgid "Friction-less login using %s shortcode or a widget."
292
  msgstr ""
293
 
294
+ #: admin/basic-info.php:40
295
  msgid "Registration"
296
  msgstr ""
297
 
298
+ #: admin/basic-info.php:41
 
299
  msgid "Beautiful registration forms fully customizable using the %s shortcode."
300
  msgstr ""
301
 
302
+ #: admin/basic-info.php:44
303
  msgid "Edit Profile"
304
  msgstr ""
305
 
306
+ #: admin/basic-info.php:45
 
307
  msgid "Straight forward edit profile forms using %s shortcode."
308
  msgstr ""
309
 
310
+ #: admin/basic-info.php:51
311
  msgid "Extra Features"
312
  msgstr ""
313
 
314
+ #: admin/basic-info.php:52
315
  msgid ""
316
  "Features that give you more control over your users, increased security and "
317
  "help you fight user registration spam."
318
  msgstr ""
319
 
320
+ #: admin/basic-info.php:53
321
  msgid "Enable extra features"
322
  msgstr ""
323
 
324
+ #: admin/basic-info.php:57
325
  msgid "Recover Password"
326
  msgstr ""
327
 
328
+ #: admin/basic-info.php:58
 
329
  msgid "Allow users to recover their password in the front-end using the %s."
330
  msgstr ""
331
 
332
+ #: admin/basic-info.php:61
333
  msgid "Admin Approval (*)"
334
  msgstr ""
335
 
336
+ #: admin/basic-info.php:62
337
  msgid ""
338
  "You decide who is a user on your website. Get notified via email or approve "
339
  "multiple users at once from the WordPress UI."
340
  msgstr ""
341
 
342
+ #: admin/basic-info.php:65
343
  msgid "Email Confirmation"
344
  msgstr ""
345
 
346
+ #: admin/basic-info.php:66
347
  msgid ""
348
  "Make sure users sign up with genuine emails. On registration users will "
349
  "receive a notification to confirm their email address."
350
  msgstr ""
351
 
352
+ #: admin/basic-info.php:69
353
+ #: features/content-restriction/content-restriction.php:17
354
+ #: features/content-restriction/content-restriction.php:44
355
+ msgid "Content Restriction"
356
+ msgstr ""
357
+
358
+ #: admin/basic-info.php:70
359
+ msgid ""
360
+ "Restrict users from accessing certain pages, posts or custom post types "
361
+ "based on user role or logged-in status."
362
+ msgstr ""
363
+
364
+ #: admin/basic-info.php:73
365
  msgid "Minimum Password Length and Strength Meter"
366
  msgstr ""
367
 
368
+ #: admin/basic-info.php:74
369
  msgid ""
370
  "Eliminate weak passwords altogether by setting a minimum password length and "
371
  "enforcing a certain password strength."
372
  msgstr ""
373
 
374
+ #: admin/basic-info.php:77
375
  msgid "Login with Email or Username"
376
  msgstr ""
377
 
378
+ #: admin/basic-info.php:78
379
  msgid ""
380
  "Allow users to log in with their email or username when accessing your site."
381
  msgstr ""
382
 
383
+ #: admin/basic-info.php:91
384
  msgid "Customize Your Forms The Way You Want (*)"
385
  msgstr ""
386
 
387
+ #: admin/basic-info.php:92
388
  msgid ""
389
  "With Extra Profile Fields you can create the exact registration form your "
390
  "project needs."
391
  msgstr ""
392
 
393
+ #: admin/basic-info.php:94
394
  msgid "Extra Profile Fields are available in Hobbyist or PRO versions"
395
  msgstr ""
396
 
397
+ #: admin/basic-info.php:96
398
  msgid "Get started with extra fields"
399
  msgstr ""
400
 
401
+ #: admin/basic-info.php:99
402
  msgid "Avatar Upload"
403
  msgstr ""
404
 
405
+ #: admin/basic-info.php:100
406
  msgid "Generic Uploads"
407
  msgstr ""
408
 
409
+ #: admin/basic-info.php:101
410
  msgid "Agree To Terms Checkbox"
411
  msgstr ""
412
 
413
+ #: admin/basic-info.php:102
414
  msgid "Datepicker"
415
  msgstr ""
416
 
417
+ #: admin/basic-info.php:103
418
  msgid "Timepicker"
419
  msgstr ""
420
 
421
+ #: admin/basic-info.php:104
422
  msgid "Colorpicker"
423
  msgstr ""
424
 
425
+ #: admin/basic-info.php:105
426
  msgid "reCAPTCHA"
427
  msgstr ""
428
 
429
+ #: admin/basic-info.php:106
430
  msgid "Country Select"
431
  msgstr ""
432
 
433
+ #: admin/basic-info.php:107
434
  msgid "Currency Select"
435
  msgstr ""
436
 
437
+ #: admin/basic-info.php:108
438
  msgid "Timezone Select"
439
  msgstr ""
440
 
441
+ #: admin/basic-info.php:112
442
  msgid "Input / Hidden Input"
443
  msgstr ""
444
 
445
+ #: admin/basic-info.php:113
446
  msgid "Number"
447
  msgstr ""
448
 
449
+ #: admin/basic-info.php:114
450
  msgid "Checkbox"
451
  msgstr ""
452
 
453
+ #: admin/basic-info.php:115
454
  msgid "Select"
455
  msgstr ""
456
 
457
+ #: admin/basic-info.php:116
458
  msgid "Radio Buttons"
459
  msgstr ""
460
 
461
+ #: admin/basic-info.php:117
462
  msgid "Textarea"
463
  msgstr ""
464
 
465
+ #: admin/basic-info.php:118
466
  msgid "Validation"
467
  msgstr ""
468
 
469
+ #: admin/basic-info.php:119
470
  msgid "Map"
471
  msgstr ""
472
 
473
+ #: admin/basic-info.php:120
474
  msgid "HTML"
475
  msgstr ""
476
 
477
+ #: admin/basic-info.php:129
478
  msgid "Powerful Modules (**)"
479
  msgstr ""
480
 
481
+ #: admin/basic-info.php:130
482
  msgid ""
483
  "Everything you will need to manage your users is probably already available "
484
  "using the Pro Modules."
485
  msgstr ""
486
 
487
+ #: admin/basic-info.php:132
488
  msgid "Enable your modules"
489
  msgstr ""
490
 
491
+ #: admin/basic-info.php:135
492
  msgid "Find out more about PRO Modules"
493
  msgstr ""
494
 
495
+ #: admin/basic-info.php:140 modules/modules.php:89
496
+ #: modules/user-listing/userlisting.php:11
497
+ #: modules/user-listing/userlisting.php:12
498
+ #: modules/user-listing/userlisting.php:17
499
+ #: modules/user-listing/userlisting.php:23
 
500
  msgid "User Listing"
501
  msgstr ""
502
 
503
+ #: admin/basic-info.php:142
504
  msgid ""
505
  "Easy to edit templates for listing your website users as well as creating "
506
  "single user pages. Shortcode based, offering many options to customize your "
507
  "listings."
508
  msgstr ""
509
 
510
+ #: admin/basic-info.php:144
 
511
  msgid ""
512
  "To create a page containing the users registered to this current site/blog, "
513
  "insert the following shortcode in a page of your chosing: %s."
514
  msgstr ""
515
 
516
+ #: admin/basic-info.php:148
517
  msgid "Email Customizer"
518
  msgstr ""
519
 
520
+ #: admin/basic-info.php:149
521
  msgid ""
522
  "Personalize all emails sent to your users or admins. On registration, email "
523
  "confirmation, admin approval / un-approval."
524
  msgstr ""
525
 
526
+ #: admin/basic-info.php:152
527
+ #: modules/custom-redirects/custom_redirects_admin.php:32
528
+ #: modules/custom-redirects/custom_redirects_admin.php:33
529
+ #: modules/modules.php:110
530
  msgid "Custom Redirects"
531
  msgstr ""
532
 
533
+ #: admin/basic-info.php:153
534
  msgid ""
535
  "Keep your users out of the WordPress dashboard, redirect them to the front-"
536
  "page after login or registration, everything is just a few clicks away."
537
  msgstr ""
538
 
539
+ #: admin/basic-info.php:158 modules/modules.php:75
 
540
  msgid "Multiple Registration Forms"
541
  msgstr ""
542
 
543
+ #: admin/basic-info.php:159
544
  msgid ""
545
  "Set up multiple registration forms with different fields for certain user "
546
  "roles. Capture different information from different types of users."
547
  msgstr ""
548
 
549
+ #: admin/basic-info.php:162 modules/modules.php:82
 
550
  msgid "Multiple Edit-profile Forms"
551
  msgstr ""
552
 
553
+ #: admin/basic-info.php:163
554
  msgid ""
555
  "Allow different user roles to edit their specific information. Set up "
556
  "multiple edit-profile forms with different fields for certain user roles."
557
  msgstr ""
558
 
559
+ #: admin/basic-info.php:166 modules/modules.php:117
 
560
  msgid "Repeater Fields"
561
  msgstr ""
562
 
563
+ #: admin/basic-info.php:167
564
  msgid ""
565
  "Set up a repeating group of fields on register and edit profile forms. Limit "
566
  "the number of repeated groups for each user role."
567
  msgstr ""
568
 
569
+ #: admin/basic-info.php:203
 
570
  msgid " * only available in the %1$sHobbyist and Pro versions%2$s."
571
  msgstr ""
572
 
573
+ #: admin/basic-info.php:204
 
574
  msgid "** only available in the %1$sPro version%2$s."
575
  msgstr ""
576
 
577
+ #: admin/general-settings.php:39
578
  msgid "Load Profile Builder's own CSS file in the front-end:"
579
  msgstr ""
580
 
581
+ #: admin/general-settings.php:42 admin/general-settings.php:55
582
+ #: admin/general-settings.php:104 admin/general-settings.php:151
583
+ #: admin/general-settings.php:170
584
+ #: modules/multiple-forms/edit-profile-forms.php:206
585
+ #: modules/multiple-forms/register-forms.php:229
586
+ #: modules/multiple-forms/register-forms.php:230
587
+ #: modules/user-listing/userlisting.php:2313
 
588
  msgid "Yes"
589
  msgstr ""
590
 
591
+ #: admin/general-settings.php:44
 
592
  msgid "You can find the default file here: %1$s"
593
  msgstr ""
594
 
595
+ #: admin/general-settings.php:51
596
  msgid "\"Email Confirmation\" Activated:"
597
  msgstr ""
598
 
599
+ #: admin/general-settings.php:56 admin/general-settings.php:105
600
+ #: admin/general-settings.php:150 admin/general-settings.php:169
601
+ #: modules/multiple-forms/edit-profile-forms.php:206
602
+ #: modules/multiple-forms/register-forms.php:229
603
+ #: modules/multiple-forms/register-forms.php:230
 
604
  msgid "No"
605
  msgstr ""
606
 
607
+ #: admin/general-settings.php:59
608
  msgid ""
609
  "This works with front-end forms only. Recommended to redirect WP default "
610
  "registration to a Profile Builder one using \"Custom Redirects\" module."
611
  msgstr ""
612
 
613
+ #: admin/general-settings.php:61
 
614
  msgid ""
615
  "You can find a list of unconfirmed email addresses %1$sUsers > All Users > "
616
  "Email Confirmation%2$s."
617
  msgstr ""
618
 
619
+ #: admin/general-settings.php:69
620
  msgid "\"Email Confirmation\" Landing Page:"
621
  msgstr ""
622
 
623
+ #: admin/general-settings.php:74
624
  msgid "Existing Pages"
625
  msgstr ""
626
 
627
+ #: admin/general-settings.php:89
628
  msgid ""
629
  "Specify the page where the users will be directed when confirming the email "
630
  "account. This page can differ from the register page(s) and can be changed "
632
  "for the user."
633
  msgstr ""
634
 
635
+ #: admin/general-settings.php:100
636
  msgid "\"Admin Approval\" Activated:"
637
  msgstr ""
638
 
639
+ #: admin/general-settings.php:108
 
640
  msgid ""
641
  "You can find a list of users at %1$sUsers > All Users > Admin Approval%2$s."
642
  msgstr ""
643
 
644
+ #: admin/general-settings.php:115
645
  msgid "\"Admin Approval\" on User Role:"
646
  msgstr ""
647
 
648
+ #: admin/general-settings.php:134
649
  msgid "Select on what user roles to activate Admin Approval."
650
  msgstr ""
651
 
652
+ #: admin/general-settings.php:146
653
  msgid "\"Roles Editor\" Activated:"
654
  msgstr ""
655
 
656
+ #: admin/general-settings.php:154
 
657
  msgid "You can add / edit user roles at %1$sUsers > Roles Editor%2$s."
658
  msgstr ""
659
 
660
+ #: admin/general-settings.php:165
661
+ msgid "\"Content Restriction\" Activated:"
662
+ msgstr ""
663
+
664
+ #: admin/general-settings.php:173
665
+ msgid ""
666
+ "Set your settings at %1$sProfile Builder > Content Restriction%2$s and use "
667
+ "each page / post / custom post type individual meta-box to restrict content."
668
+ msgstr ""
669
+
670
+ #: admin/general-settings.php:184
671
  msgid "\"Admin Approval\" Feature:"
672
  msgstr ""
673
 
674
+ #: admin/general-settings.php:187
 
675
  msgid ""
676
  "You decide who is a user on your website. Get notified via email or approve "
677
  "multiple users at once from the WordPress UI. Enable Admin Approval by "
678
  "upgrading to %1$sHobbyist or PRO versions%2$s."
679
  msgstr ""
680
 
681
+ #: admin/general-settings.php:194
682
  msgid "Allow Users to Log in With:"
683
  msgstr ""
684
 
685
+ #: admin/general-settings.php:198
686
  msgid "Username and Email"
687
  msgstr ""
688
 
689
+ #: admin/general-settings.php:199 admin/manage-fields.php:201
690
+ #: features/admin-approval/class-admin-approval.php:166
691
+ #: features/email-confirmation/class-email-confirmation.php:167
692
+ #: front-end/login.php:88 front-end/login.php:102 front-end/login.php:231
693
+ #: modules/custom-redirects/custom_redirects_admin.php:56
694
+ #: modules/email-customizer/email-customizer.php:28
695
+ #: modules/user-listing/userlisting.php:111
696
+ #: modules/user-listing/userlisting.php:303
697
+ #: modules/user-listing/userlisting.php:774
698
+ #: modules/user-listing/userlisting.php:2264
 
 
 
699
  msgid "Username"
700
  msgstr ""
701
 
702
+ #: admin/general-settings.php:200 front-end/login.php:228
703
+ #: modules/email-customizer/email-customizer.php:29
704
+ #: modules/user-listing/userlisting.php:780
705
+ #: modules/user-listing/userlisting.php:2265
 
706
  msgid "Email"
707
  msgstr ""
708
 
709
+ #: admin/general-settings.php:203
710
  msgid "\"Username and Email\" - users can Log In with both Username and Email."
711
  msgstr ""
712
 
713
+ #: admin/general-settings.php:204
714
  msgid "\"Username\" - users can Log In only with Username."
715
  msgstr ""
716
 
717
+ #: admin/general-settings.php:205
718
  msgid "\"Email\" - users can Log In only with Email."
719
  msgstr ""
720
 
721
+ #: admin/general-settings.php:212
722
  msgid "Minimum Password Length:"
723
  msgstr ""
724
 
725
+ #: admin/general-settings.php:217
726
  msgid ""
727
  "Enter the minimum characters the password should have. Leave empty for no "
728
  "minimum limit"
729
  msgstr ""
730
 
731
+ #: admin/general-settings.php:224
732
  msgid "Minimum Password Strength:"
733
  msgstr ""
734
 
735
+ #: admin/general-settings.php:228
736
  msgid "Disabled"
737
  msgstr ""
738
 
739
+ #: admin/manage-fields.php:12
740
  msgid "Manage Fields"
741
  msgstr ""
742
 
743
+ #: admin/manage-fields.php:13
744
  msgid "Manage Default and Extra Fields"
745
  msgstr ""
746
 
747
+ #: admin/manage-fields.php:82
748
  msgid "Choose one of the supported field types"
749
  msgstr ""
750
 
751
+ #: admin/manage-fields.php:84
 
752
  msgid ""
753
  ". Extra Field Types are available in <a href=\"%s\">Hobbyist or PRO "
754
  "versions</a>."
755
  msgstr ""
756
 
757
+ #: admin/manage-fields.php:118
758
  msgid "Field Title"
759
  msgstr ""
760
 
761
+ #: admin/manage-fields.php:118
762
  msgid "Title of the field"
763
  msgstr ""
764
 
765
+ #: admin/manage-fields.php:119
766
+ #: modules/multiple-forms/edit-profile-forms.php:245
767
+ #: modules/multiple-forms/register-forms.php:266
768
  msgid "Field"
769
  msgstr ""
770
 
771
+ #: admin/manage-fields.php:120
772
  msgid "Meta-name"
773
  msgstr ""
774
 
775
+ #: admin/manage-fields.php:120
776
  msgid ""
777
  "Use this in conjunction with WordPress functions to display the value in the "
778
  "page of your choosing<br/>Auto-completed but in some cases editable (in "
780
  "very big user-count"
781
  msgstr ""
782
 
783
+ #: admin/manage-fields.php:121
784
+ #: modules/custom-redirects/custom_redirects_admin.php:65
785
+ #: modules/custom-redirects/custom_redirects_admin.php:95
786
+ #: modules/custom-redirects/custom_redirects_admin.php:114
787
+ #: modules/custom-redirects/custom_redirects_admin.php:139
788
+ #: modules/multiple-forms/edit-profile-forms.php:246
789
+ #: modules/multiple-forms/register-forms.php:267
790
  msgid "ID"
791
  msgstr ""
792
 
793
+ #: admin/manage-fields.php:121
794
+ #: modules/multiple-forms/edit-profile-forms.php:246
795
+ #: modules/multiple-forms/register-forms.php:267
796
  msgid ""
797
  "A unique, auto-generated ID for this particular field<br/>You can use this "
798
  "in conjuction with filters to target this element if needed<br/>Can't be "
799
  "edited"
800
  msgstr ""
801
 
802
+ #: admin/manage-fields.php:122
803
  msgid "Description"
804
  msgstr ""
805
 
806
+ #: admin/manage-fields.php:122
807
  msgid ""
808
  "Enter a (detailed) description of the option for end users to read<br/"
809
  ">Optional"
810
  msgstr ""
811
 
812
+ #: admin/manage-fields.php:123
813
  msgid "Row Count"
814
  msgstr ""
815
 
816
+ #: admin/manage-fields.php:123
817
  msgid ""
818
  "Specify the number of rows for a 'Textarea' field<br/>If not specified, "
819
  "defaults to 5"
820
  msgstr ""
821
 
822
+ #: admin/manage-fields.php:124
823
  msgid "Allowed Image Extensions"
824
  msgstr ""
825
 
826
+ #: admin/manage-fields.php:124
827
  msgid ""
828
  "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
829
  "ext2,.ext3<br/>If not specified, defaults to: .jpg,.jpeg,.gif,.png (.*)"
830
  msgstr ""
831
 
832
+ #: admin/manage-fields.php:125
833
  msgid "Allowed Upload Extensions"
834
  msgstr ""
835
 
836
+ #: admin/manage-fields.php:125
837
  msgid ""
838
  "Specify the extension(s) you want to limit to upload<br/>Example: .ext1,."
839
  "ext2,.ext3<br/>If not specified, defaults to all WordPress allowed file "
840
  "extensions (.*)"
841
  msgstr ""
842
 
843
+ #: admin/manage-fields.php:126
844
  msgid "Avatar Size"
845
  msgstr ""
846
 
847
+ #: admin/manage-fields.php:126
848
  msgid ""
849
  "Enter a value (between 20 and 200) for the size of the 'Avatar'<br/>If not "
850
  "specified, defaults to 100"
851
  msgstr ""
852
 
853
+ #: admin/manage-fields.php:127
854
  msgid "Date-format"
855
  msgstr ""
856
 
857
+ #: admin/manage-fields.php:127
858
  msgid ""
859
  "Specify the format of the date when using Datepicker<br/>Valid options: mm/"
860
  "dd/yy, mm/yy/dd, dd/yy/mm, dd/mm/yy, yy/dd/mm, yy/mm/dd, mm-dd-yy, yy-mm-dd, "
862
  "defaults to mm/dd/yy"
863
  msgstr ""
864
 
865
+ #: admin/manage-fields.php:128
866
  msgid "Terms of Agreement"
867
  msgstr ""
868
 
869
+ #: admin/manage-fields.php:128
870
  msgid ""
871
  "Enter a detailed description of the temrs of agreement for the user to read."
872
  "<br/>Links can be inserted by using standard HTML syntax: &lt;a href="
873
  "\"custom_url\"&gt;custom_text&lt;/a&gt;"
874
  msgstr ""
875
 
876
+ #: admin/manage-fields.php:129
877
  msgid "Options"
878
  msgstr ""
879
 
880
+ #: admin/manage-fields.php:129
881
  msgid ""
882
  "Enter a comma separated list of values<br/>This can be anything, as it is "
883
  "hidden from the user, but should not contain special characters or "
884
  "apostrophes"
885
  msgstr ""
886
 
887
+ #: admin/manage-fields.php:130
888
  msgid "Labels"
889
  msgstr ""
890
 
891
+ #: admin/manage-fields.php:130
892
  msgid "Enter a comma separated list of labels<br/>Visible for the user"
893
  msgstr ""
894
 
895
+ #: admin/manage-fields.php:131
896
  msgid "Site Key"
897
  msgstr ""
898
 
899
+ #: admin/manage-fields.php:131
900
  msgid ""
901
  "The site key from Google, <a href=\"http://www.google.com/recaptcha\" target="
902
  "\"_blank\">www.google.com/recaptcha</a>"
903
  msgstr ""
904
 
905
+ #: admin/manage-fields.php:132
906
  msgid "Secret Key"
907
  msgstr ""
908
 
909
+ #: admin/manage-fields.php:132
910
  msgid ""
911
  "The secret key from Google, <a href=\"http://www.google.com/recaptcha\" "
912
  "target=\"_blank\">www.google.com/recaptcha</a>"
913
  msgstr ""
914
 
915
+ #: admin/manage-fields.php:133
916
  msgid "Display on PB forms"
917
  msgstr ""
918
 
919
+ #: admin/manage-fields.php:133
920
  msgid "PB Login"
921
  msgstr ""
922
 
923
+ #: admin/manage-fields.php:133
924
  msgid "PB Register"
925
  msgstr ""
926
 
927
+ #: admin/manage-fields.php:133
928
  msgid "PB Recover Password"
929
  msgstr ""
930
 
931
+ #: admin/manage-fields.php:133
932
  msgid "Select on which Profile Builder forms to display reCAPTCHA"
933
  msgstr ""
934
 
935
+ #: admin/manage-fields.php:134
936
  msgid "Display on default WP forms"
937
  msgstr ""
938
 
939
+ #: admin/manage-fields.php:134
940
  msgid "Default WP Login"
941
  msgstr ""
942
 
943
+ #: admin/manage-fields.php:134
944
  msgid "Default WP Register"
945
  msgstr ""
946
 
947
+ #: admin/manage-fields.php:134
948
  msgid "Default WP Recover Password"
949
  msgstr ""
950
 
951
+ #: admin/manage-fields.php:134
952
  msgid "Select on which default WP forms to display reCAPTCHA"
953
  msgstr ""
954
 
955
+ #: admin/manage-fields.php:135
956
  msgid "User Roles"
957
  msgstr ""
958
 
959
+ #: admin/manage-fields.php:135
960
  msgid ""
961
  "Select which user roles to show to the user ( drag and drop to re-order )"
962
  msgstr ""
963
 
964
+ #: admin/manage-fields.php:136
965
  msgid "User Roles Order"
966
  msgstr ""
967
 
968
+ #: admin/manage-fields.php:136
969
  msgid "Save the user role order from the user roles checkboxes"
970
  msgstr ""
971
 
972
+ #: admin/manage-fields.php:137
973
  msgid "Default Value"
974
  msgstr ""
975
 
976
+ #: admin/manage-fields.php:137
977
  msgid "Default value of the field"
978
  msgstr ""
979
 
980
+ #: admin/manage-fields.php:138 admin/manage-fields.php:140
981
+ #: admin/manage-fields.php:141 admin/manage-fields.php:142
 
 
982
  msgid "Default Option"
983
  msgstr ""
984
 
985
+ #: admin/manage-fields.php:138
986
  msgid "Specify the option which should be selected by default"
987
  msgstr ""
988
 
989
+ #: admin/manage-fields.php:139
990
  msgid "Default Option(s)"
991
  msgstr ""
992
 
993
+ #: admin/manage-fields.php:139
994
  msgid ""
995
  "Specify the option which should be checked by default<br/>If there are "
996
  "multiple values, separate them with a ',' (comma)"
997
  msgstr ""
998
 
999
+ #: admin/manage-fields.php:140 admin/manage-fields.php:141
1000
+ #: admin/manage-fields.php:142
 
1001
  msgid "Default option of the field"
1002
  msgstr ""
1003
 
1004
+ #: admin/manage-fields.php:143
1005
  msgid "Show Currency Symbol"
1006
  msgstr ""
1007
 
1008
+ #: admin/manage-fields.php:143
1009
  msgid ""
1010
  "Whether the currency symbol should be displayed after the currency name in "
1011
  "the select option."
1012
  msgstr ""
1013
 
1014
+ #: admin/manage-fields.php:144
1015
  msgid "Show Post Type"
1016
  msgstr ""
1017
 
1018
+ #: admin/manage-fields.php:144
1019
  msgid "Posts from what post type will be displayed in the select."
1020
  msgstr ""
1021
 
1022
+ #: admin/manage-fields.php:145
1023
  msgid "Allowable Values"
1024
  msgstr ""
1025
 
1026
+ #: admin/manage-fields.php:145
1027
  msgid ""
1028
  "Enter a comma separated list of possible values. Upon registration if the "
1029
  "value provided by the user does not match one of these values, the user will "
1030
  "not be registered."
1031
  msgstr ""
1032
 
1033
+ #: admin/manage-fields.php:146
1034
  msgid "Error Message"
1035
  msgstr ""
1036
 
1037
+ #: admin/manage-fields.php:146
1038
  msgid "Set a custom error message that will be displayed to the user."
1039
  msgstr ""
1040
 
1041
+ #: admin/manage-fields.php:147
1042
  msgid "Time Format"
1043
  msgstr ""
1044
 
1045
+ #: admin/manage-fields.php:147
1046
  msgid "Specify the time format."
1047
  msgstr ""
1048
 
1049
+ #: admin/manage-fields.php:148
1050
  msgid "Google Maps API Key"
1051
  msgstr ""
1052
 
1053
+ #: admin/manage-fields.php:148
1054
  msgid ""
1055
  "Enter your Google Maps API key ( <a href=\"https://console.developers.google."
1056
  "com/flows/enableapi?apiid=maps_backend\" target=\"_blank\">Get your API key</"
1058
  "first map displayed will be used."
1059
  msgstr ""
1060
 
1061
+ #: admin/manage-fields.php:149
1062
  msgid "Default Latitude"
1063
  msgstr ""
1064
 
1065
+ #: admin/manage-fields.php:149
1066
  msgid ""
1067
  "The latitude at which the map should be displayed when no pins are attached."
1068
  msgstr ""
1069
 
1070
+ #: admin/manage-fields.php:150
1071
  msgid "Default Longitude"
1072
  msgstr ""
1073
 
1074
+ #: admin/manage-fields.php:150
1075
  msgid ""
1076
  "The longitude at which the map should be displayed when no pins are attached."
1077
  msgstr ""
1078
 
1079
+ #: admin/manage-fields.php:151
1080
  msgid "Default Zoom Level"
1081
  msgstr ""
1082
 
1083
+ #: admin/manage-fields.php:151
1084
  msgid "Add a number from 0 to 19. The higher the number the higher the zoom."
1085
  msgstr ""
1086
 
1087
+ #: admin/manage-fields.php:152
1088
  msgid "Map Height"
1089
  msgstr ""
1090
 
1091
+ #: admin/manage-fields.php:152
1092
  msgid "The height of the map."
1093
  msgstr ""
1094
 
1095
+ #: admin/manage-fields.php:153
1096
  msgid "Default Content"
1097
  msgstr ""
1098
 
1099
+ #: admin/manage-fields.php:153
1100
  msgid "Default value of the textarea"
1101
  msgstr ""
1102
 
1103
+ #: admin/manage-fields.php:154
1104
  msgid "HTML Content"
1105
  msgstr ""
1106
 
1107
+ #: admin/manage-fields.php:154
1108
  msgid "Add your HTML (or text) content"
1109
  msgstr ""
1110
 
1111
+ #: admin/manage-fields.php:155
1112
  msgid "Phone Format"
1113
  msgstr ""
1114
 
1115
+ #: admin/manage-fields.php:155
1116
  msgid ""
1117
  "You can use: # for numbers, parentheses ( ), - sign, + sign, dot . and "
1118
  "spaces."
1119
  msgstr ""
1120
 
1121
+ #: admin/manage-fields.php:155
1122
  msgid "Eg. (###) ###-####"
1123
  msgstr ""
1124
 
1125
+ #: admin/manage-fields.php:155
1126
  msgid "Empty field won't check for correct phone number."
1127
  msgstr ""
1128
 
1129
+ #: admin/manage-fields.php:156
1130
  msgid "Heading Tag"
1131
  msgstr ""
1132
 
1133
+ #: admin/manage-fields.php:156
1134
  msgid "Change heading field size on front-end forms"
1135
  msgstr ""
1136
 
1137
+ #: admin/manage-fields.php:157
1138
  msgid "Min Number Value"
1139
  msgstr ""
1140
 
1141
+ #: admin/manage-fields.php:157
1142
  msgid "Min allowed number value (0 to allow only positive numbers)"
1143
  msgstr ""
1144
 
1145
+ #: admin/manage-fields.php:157
1146
  msgid "Leave it empty for no min value"
1147
  msgstr ""
1148
 
1149
+ #: admin/manage-fields.php:158
1150
  msgid "Max Number Value"
1151
  msgstr ""
1152
 
1153
+ #: admin/manage-fields.php:158
1154
  msgid "Max allowed number value (0 to allow only negative numbers)"
1155
  msgstr ""
1156
 
1157
+ #: admin/manage-fields.php:158
1158
  msgid "Leave it empty for no max value"
1159
  msgstr ""
1160
 
1161
+ #: admin/manage-fields.php:159
1162
  msgid "Number Step Value"
1163
  msgstr ""
1164
 
1165
+ #: admin/manage-fields.php:159
1166
  msgid ""
1167
  "Step value 1 to allow only integers, 0.1 to allow integers and numbers with "
1168
  "1 decimal"
1169
  msgstr ""
1170
 
1171
+ #: admin/manage-fields.php:159
1172
  msgid "To allow multiple decimals use for eg. 0.01 (for 2 deciamls) and so on"
1173
  msgstr ""
1174
 
1175
+ #: admin/manage-fields.php:159
1176
  msgid ""
1177
  "You can also use step value to specify the legal number intervals (eg. step "
1178
  "value 2 will allow only -4, -2, 0, 2 and so on)"
1179
  msgstr ""
1180
 
1181
+ #: admin/manage-fields.php:159
1182
  msgid "Leave it empty for no restriction"
1183
  msgstr ""
1184
 
1185
+ #: admin/manage-fields.php:160
1186
+ msgid "Required"
1187
+ msgstr ""
1188
+
1189
+ #: admin/manage-fields.php:160
1190
  msgid "Whether the field is required or not"
1191
  msgstr ""
1192
 
1193
+ #: admin/manage-fields.php:161
1194
  msgid "Overwrite Existing"
1195
  msgstr ""
1196
 
1197
+ #: admin/manage-fields.php:161
1198
  msgid ""
1199
  "Selecting 'Yes' will add the field to the list, but will overwrite any other "
1200
  "field in the database that has the same meta-name<br/>Use this at your own "
1201
  "risk"
1202
  msgstr ""
1203
 
1204
+ #: admin/manage-fields.php:167
1205
  msgid "Field Properties"
1206
  msgstr ""
1207
 
1208
+ #: admin/manage-fields.php:181
1209
  msgid "Registration & Edit Profile"
1210
  msgstr ""
1211
 
1212
+ #: admin/manage-fields.php:200
1213
  msgid "Name"
1214
  msgstr ""
1215
 
1216
+ #: admin/manage-fields.php:201
1217
  msgid "Usernames cannot be changed."
1218
  msgstr ""
1219
 
1220
+ #: admin/manage-fields.php:202
1221
+ msgid "First Name"
1222
+ msgstr ""
1223
+
1224
+ #: admin/manage-fields.php:203
1225
+ msgid "Last Name"
1226
+ msgstr ""
1227
+
1228
+ #: admin/manage-fields.php:204 modules/user-listing/userlisting.php:813
1229
+ #: modules/user-listing/userlisting.php:2272
1230
  msgid "Nickname"
1231
  msgstr ""
1232
 
1233
+ #: admin/manage-fields.php:205
1234
  msgid "Display name publicly as"
1235
  msgstr ""
1236
 
1237
+ #: admin/manage-fields.php:206
1238
  msgid "Contact Info"
1239
  msgstr ""
1240
 
1241
+ #: admin/manage-fields.php:207
1242
+ #: features/admin-approval/class-admin-approval.php:169
1243
+ #: features/email-confirmation/class-email-confirmation.php:168
1244
+ #: front-end/recover.php:119 modules/user-listing/userlisting.php:117
 
1245
  msgid "E-mail"
1246
  msgstr ""
1247
 
1248
+ #: admin/manage-fields.php:208 modules/email-customizer/email-customizer.php:33
1249
+ #: modules/user-listing/userlisting.php:120
1250
+ #: modules/user-listing/userlisting.php:795
1251
+ #: modules/user-listing/userlisting.php:2266
 
1252
  msgid "Website"
1253
  msgstr ""
1254
 
1255
+ #: admin/manage-fields.php:212
1256
  msgid "AIM"
1257
  msgstr ""
1258
 
1259
+ #: admin/manage-fields.php:213
1260
  msgid "Yahoo IM"
1261
  msgstr ""
1262
 
1263
+ #: admin/manage-fields.php:214
1264
  msgid "Jabber / Google Talk"
1265
  msgstr ""
1266
 
1267
+ #: admin/manage-fields.php:217
1268
  msgid "About Yourself"
1269
  msgstr ""
1270
 
1271
+ #: admin/manage-fields.php:218 modules/user-listing/userlisting.php:123
1272
+ #: modules/user-listing/userlisting.php:798
1273
+ #: modules/user-listing/userlisting.php:2267
 
1274
  msgid "Biographical Info"
1275
  msgstr ""
1276
 
1277
+ #: admin/manage-fields.php:218
1278
  msgid ""
1279
  "Share a little biographical information to fill out your profile. This may "
1280
  "be shown publicly."
1281
  msgstr ""
1282
 
1283
+ #: admin/manage-fields.php:219 front-end/recover.php:73
1284
+ #: modules/email-customizer/email-customizer.php:30
 
1285
  msgid "Password"
1286
  msgstr ""
1287
 
1288
+ #: admin/manage-fields.php:219
1289
  msgid "Type your password."
1290
  msgstr ""
1291
 
1292
+ #: admin/manage-fields.php:220 front-end/recover.php:74
 
1293
  msgid "Repeat Password"
1294
  msgstr ""
1295
 
1296
+ #: admin/manage-fields.php:220
1297
  msgid "Type your password again. "
1298
  msgstr ""
1299
 
1300
+ #: admin/manage-fields.php:222
1301
  msgid "Blog Details"
1302
  msgstr ""
1303
 
1304
+ #: admin/manage-fields.php:282
1305
+ #: front-end/extra-fields/select-country/select-country.php:10
1306
  msgid "Afghanistan"
1307
  msgstr ""
1308
 
1309
+ #: admin/manage-fields.php:283
1310
+ #: front-end/extra-fields/select-country/select-country.php:10
1311
  msgid "Aland Islands"
1312
  msgstr ""
1313
 
1314
+ #: admin/manage-fields.php:284
1315
+ #: front-end/extra-fields/select-country/select-country.php:10
1316
  msgid "Albania"
1317
  msgstr ""
1318
 
1319
+ #: admin/manage-fields.php:285
1320
+ #: front-end/extra-fields/select-country/select-country.php:10
1321
  msgid "Algeria"
1322
  msgstr ""
1323
 
1324
+ #: admin/manage-fields.php:286
1325
+ #: front-end/extra-fields/select-country/select-country.php:10
1326
  msgid "American Samoa"
1327
  msgstr ""
1328
 
1329
+ #: admin/manage-fields.php:287
1330
+ #: front-end/extra-fields/select-country/select-country.php:10
1331
  msgid "Andorra"
1332
  msgstr ""
1333
 
1334
+ #: admin/manage-fields.php:288
1335
+ #: front-end/extra-fields/select-country/select-country.php:10
1336
  msgid "Angola"
1337
  msgstr ""
1338
 
1339
+ #: admin/manage-fields.php:289
1340
+ #: front-end/extra-fields/select-country/select-country.php:10
1341
  msgid "Anguilla"
1342
  msgstr ""
1343
 
1344
+ #: admin/manage-fields.php:290
1345
+ #: front-end/extra-fields/select-country/select-country.php:10
1346
  msgid "Antarctica"
1347
  msgstr ""
1348
 
1349
+ #: admin/manage-fields.php:291
1350
+ #: front-end/extra-fields/select-country/select-country.php:10
1351
  msgid "Antigua and Barbuda"
1352
  msgstr ""
1353
 
1354
+ #: admin/manage-fields.php:292
1355
+ #: front-end/extra-fields/select-country/select-country.php:10
1356
  msgid "Argentina"
1357
  msgstr ""
1358
 
1359
+ #: admin/manage-fields.php:293
1360
+ #: front-end/extra-fields/select-country/select-country.php:10
1361
  msgid "Armenia"
1362
  msgstr ""
1363
 
1364
+ #: admin/manage-fields.php:294
1365
+ #: front-end/extra-fields/select-country/select-country.php:10
1366
  msgid "Aruba"
1367
  msgstr ""
1368
 
1369
+ #: admin/manage-fields.php:295
1370
+ #: front-end/extra-fields/select-country/select-country.php:10
1371
  msgid "Australia"
1372
  msgstr ""
1373
 
1374
+ #: admin/manage-fields.php:296
1375
+ #: front-end/extra-fields/select-country/select-country.php:10
1376
  msgid "Austria"
1377
  msgstr ""
1378
 
1379
+ #: admin/manage-fields.php:297
1380
+ #: front-end/extra-fields/select-country/select-country.php:10
1381
  msgid "Azerbaijan"
1382
  msgstr ""
1383
 
1384
+ #: admin/manage-fields.php:298
1385
+ #: front-end/extra-fields/select-country/select-country.php:10
1386
  msgid "Bahamas"
1387
  msgstr ""
1388
 
1389
+ #: admin/manage-fields.php:299
1390
+ #: front-end/extra-fields/select-country/select-country.php:10
1391
  msgid "Bahrain"
1392
  msgstr ""
1393
 
1394
+ #: admin/manage-fields.php:300
1395
+ #: front-end/extra-fields/select-country/select-country.php:10
1396
  msgid "Bangladesh"
1397
  msgstr ""
1398
 
1399
+ #: admin/manage-fields.php:301
1400
+ #: front-end/extra-fields/select-country/select-country.php:10
1401
  msgid "Barbados"
1402
  msgstr ""
1403
 
1404
+ #: admin/manage-fields.php:302
1405
+ #: front-end/extra-fields/select-country/select-country.php:10
1406
  msgid "Belarus"
1407
  msgstr ""
1408
 
1409
+ #: admin/manage-fields.php:303
1410
+ #: front-end/extra-fields/select-country/select-country.php:10
1411
  msgid "Belgium"
1412
  msgstr ""
1413
 
1414
+ #: admin/manage-fields.php:304
1415
+ #: front-end/extra-fields/select-country/select-country.php:10
1416
  msgid "Belize"
1417
  msgstr ""
1418
 
1419
+ #: admin/manage-fields.php:305
1420
+ #: front-end/extra-fields/select-country/select-country.php:10
1421
  msgid "Benin"
1422
  msgstr ""
1423
 
1424
+ #: admin/manage-fields.php:306
1425
+ #: front-end/extra-fields/select-country/select-country.php:10
1426
  msgid "Bermuda"
1427
  msgstr ""
1428
 
1429
+ #: admin/manage-fields.php:307
1430
+ #: front-end/extra-fields/select-country/select-country.php:10
1431
  msgid "Bhutan"
1432
  msgstr ""
1433
 
1434
+ #: admin/manage-fields.php:308
1435
  msgid "Bolivia"
1436
  msgstr ""
1437
 
1438
+ #: admin/manage-fields.php:309
1439
  msgid "Bonaire, Saint Eustatius and Saba"
1440
  msgstr ""
1441
 
1442
+ #: admin/manage-fields.php:310
1443
+ #: front-end/extra-fields/select-country/select-country.php:10
1444
  msgid "Bosnia and Herzegovina"
1445
  msgstr ""
1446
 
1447
+ #: admin/manage-fields.php:311
1448
+ #: front-end/extra-fields/select-country/select-country.php:10
1449
  msgid "Botswana"
1450
  msgstr ""
1451
 
1452
+ #: admin/manage-fields.php:312
1453
+ #: front-end/extra-fields/select-country/select-country.php:10
1454
  msgid "Bouvet Island"
1455
  msgstr ""
1456
 
1457
+ #: admin/manage-fields.php:313
1458
+ #: front-end/extra-fields/select-country/select-country.php:10
1459
  msgid "Brazil"
1460
  msgstr ""
1461
 
1462
+ #: admin/manage-fields.php:314
1463
+ #: front-end/extra-fields/select-country/select-country.php:10
1464
  msgid "British Indian Ocean Territory"
1465
  msgstr ""
1466
 
1467
+ #: admin/manage-fields.php:315
1468
  msgid "British Virgin Islands"
1469
  msgstr ""
1470
 
1471
+ #: admin/manage-fields.php:316
1472
  msgid "Brunei"
1473
  msgstr ""
1474
 
1475
+ #: admin/manage-fields.php:317
1476
+ #: front-end/extra-fields/select-country/select-country.php:10
1477
  msgid "Bulgaria"
1478
  msgstr ""
1479
 
1480
+ #: admin/manage-fields.php:318
1481
+ #: front-end/extra-fields/select-country/select-country.php:10
1482
  msgid "Burkina Faso"
1483
  msgstr ""
1484
 
1485
+ #: admin/manage-fields.php:319
1486
+ #: front-end/extra-fields/select-country/select-country.php:10
1487
  msgid "Burundi"
1488
  msgstr ""
1489
 
1490
+ #: admin/manage-fields.php:320
1491
+ #: front-end/extra-fields/select-country/select-country.php:10
1492
  msgid "Cambodia"
1493
  msgstr ""
1494
 
1495
+ #: admin/manage-fields.php:321
1496
+ #: front-end/extra-fields/select-country/select-country.php:10
1497
  msgid "Cameroon"
1498
  msgstr ""
1499
 
1500
+ #: admin/manage-fields.php:322
1501
+ #: front-end/extra-fields/select-country/select-country.php:10
1502
  msgid "Canada"
1503
  msgstr ""
1504
 
1505
+ #: admin/manage-fields.php:323
1506
  msgid "Cape Verde"
1507
  msgstr ""
1508
 
1509
+ #: admin/manage-fields.php:324
1510
+ #: front-end/extra-fields/select-country/select-country.php:10
1511
  msgid "Cayman Islands"
1512
  msgstr ""
1513
 
1514
+ #: admin/manage-fields.php:325
1515
+ #: front-end/extra-fields/select-country/select-country.php:10
1516
  msgid "Central African Republic"
1517
  msgstr ""
1518
 
1519
+ #: admin/manage-fields.php:326
1520
+ #: front-end/extra-fields/select-country/select-country.php:10
1521
  msgid "Chad"
1522
  msgstr ""
1523
 
1524
+ #: admin/manage-fields.php:327
1525
+ #: front-end/extra-fields/select-country/select-country.php:10
1526
  msgid "Chile"
1527
  msgstr ""
1528
 
1529
+ #: admin/manage-fields.php:328
1530
+ #: front-end/extra-fields/select-country/select-country.php:10
1531
  msgid "China"
1532
  msgstr ""
1533
 
1534
+ #: admin/manage-fields.php:329
1535
+ #: front-end/extra-fields/select-country/select-country.php:10
1536
  msgid "Christmas Island"
1537
  msgstr ""
1538
 
1539
+ #: admin/manage-fields.php:330
1540
  msgid "Cocos Islands"
1541
  msgstr ""
1542
 
1543
+ #: admin/manage-fields.php:331
1544
+ #: front-end/extra-fields/select-country/select-country.php:10
1545
  msgid "Colombia"
1546
  msgstr ""
1547
 
1548
+ #: admin/manage-fields.php:332
1549
+ #: front-end/extra-fields/select-country/select-country.php:10
1550
  msgid "Comoros"
1551
  msgstr ""
1552
 
1553
+ #: admin/manage-fields.php:333
1554
+ #: front-end/extra-fields/select-country/select-country.php:10
1555
  msgid "Cook Islands"
1556
  msgstr ""
1557
 
1558
+ #: admin/manage-fields.php:334
1559
+ #: front-end/extra-fields/select-country/select-country.php:10
1560
  msgid "Costa Rica"
1561
  msgstr ""
1562
 
1563
+ #: admin/manage-fields.php:335
1564
+ #: front-end/extra-fields/select-country/select-country.php:10
1565
  msgid "Croatia"
1566
  msgstr ""
1567
 
1568
+ #: admin/manage-fields.php:336
1569
+ #: front-end/extra-fields/select-country/select-country.php:10
1570
  msgid "Cuba"
1571
  msgstr ""
1572
 
1573
+ #: admin/manage-fields.php:337
1574
+ #: front-end/extra-fields/select-country/select-country.php:10
1575
  msgid "Curacao"
1576
  msgstr ""
1577
 
1578
+ #: admin/manage-fields.php:338
1579
+ #: front-end/extra-fields/select-country/select-country.php:10
1580
  msgid "Cyprus"
1581
  msgstr ""
1582
 
1583
+ #: admin/manage-fields.php:339
1584
+ #: front-end/extra-fields/select-country/select-country.php:10
1585
  msgid "Czech Republic"
1586
  msgstr ""
1587
 
1588
+ #: admin/manage-fields.php:340
1589
  msgid "Democratic Republic of the Congo"
1590
  msgstr ""
1591
 
1592
+ #: admin/manage-fields.php:341
1593
+ #: front-end/extra-fields/select-country/select-country.php:10
1594
  msgid "Denmark"
1595
  msgstr ""
1596
 
1597
+ #: admin/manage-fields.php:342
1598
+ #: front-end/extra-fields/select-country/select-country.php:10
1599
  msgid "Djibouti"
1600
  msgstr ""
1601
 
1602
+ #: admin/manage-fields.php:343
1603
+ #: front-end/extra-fields/select-country/select-country.php:10
1604
  msgid "Dominica"
1605
  msgstr ""
1606
 
1607
+ #: admin/manage-fields.php:344
1608
+ #: front-end/extra-fields/select-country/select-country.php:10
1609
  msgid "Dominican Republic"
1610
  msgstr ""
1611
 
1612
+ #: admin/manage-fields.php:345
1613
  msgid "East Timor"
1614
  msgstr ""
1615
 
1616
+ #: admin/manage-fields.php:346
1617
+ #: front-end/extra-fields/select-country/select-country.php:10
1618
  msgid "Ecuador"
1619
  msgstr ""
1620
 
1621
+ #: admin/manage-fields.php:347
1622
+ #: front-end/extra-fields/select-country/select-country.php:10
1623
  msgid "Egypt"
1624
  msgstr ""
1625
 
1626
+ #: admin/manage-fields.php:348
1627
+ #: front-end/extra-fields/select-country/select-country.php:10
1628
  msgid "El Salvador"
1629
  msgstr ""
1630
 
1631
+ #: admin/manage-fields.php:349
1632
+ #: front-end/extra-fields/select-country/select-country.php:10
1633
  msgid "Equatorial Guinea"
1634
  msgstr ""
1635
 
1636
+ #: admin/manage-fields.php:350
1637
+ #: front-end/extra-fields/select-country/select-country.php:10
1638
  msgid "Eritrea"
1639
  msgstr ""
1640
 
1641
+ #: admin/manage-fields.php:351
1642
+ #: front-end/extra-fields/select-country/select-country.php:10
1643
  msgid "Estonia"
1644
  msgstr ""
1645
 
1646
+ #: admin/manage-fields.php:352
1647
+ #: front-end/extra-fields/select-country/select-country.php:10
1648
  msgid "Ethiopia"
1649
  msgstr ""
1650
 
1651
+ #: admin/manage-fields.php:353
1652
  msgid "Falkland Islands"
1653
  msgstr ""
1654
 
1655
+ #: admin/manage-fields.php:354
1656
+ #: front-end/extra-fields/select-country/select-country.php:10
1657
  msgid "Faroe Islands"
1658
  msgstr ""
1659
 
1660
+ #: admin/manage-fields.php:355
1661
+ #: front-end/extra-fields/select-country/select-country.php:10
1662
  msgid "Fiji"
1663
  msgstr ""
1664
 
1665
+ #: admin/manage-fields.php:356
1666
+ #: front-end/extra-fields/select-country/select-country.php:10
1667
  msgid "Finland"
1668
  msgstr ""
1669
 
1670
+ #: admin/manage-fields.php:357
1671
+ #: front-end/extra-fields/select-country/select-country.php:10
1672
  msgid "France"
1673
  msgstr ""
1674
 
1675
+ #: admin/manage-fields.php:358
1676
+ #: front-end/extra-fields/select-country/select-country.php:10
1677
  msgid "French Guiana"
1678
  msgstr ""
1679
 
1680
+ #: admin/manage-fields.php:359
1681
+ #: front-end/extra-fields/select-country/select-country.php:10
1682
  msgid "French Polynesia"
1683
  msgstr ""
1684
 
1685
+ #: admin/manage-fields.php:360
1686
+ #: front-end/extra-fields/select-country/select-country.php:10
1687
  msgid "French Southern Territories"
1688
  msgstr ""
1689
 
1690
+ #: admin/manage-fields.php:361
1691
+ #: front-end/extra-fields/select-country/select-country.php:10
1692
  msgid "Gabon"
1693
  msgstr ""
1694
 
1695
+ #: admin/manage-fields.php:362
1696
+ #: front-end/extra-fields/select-country/select-country.php:10
1697
  msgid "Gambia"
1698
  msgstr ""
1699
 
1700
+ #: admin/manage-fields.php:363
1701
+ #: front-end/extra-fields/select-country/select-country.php:10
1702
  msgid "Georgia"
1703
  msgstr ""
1704
 
1705
+ #: admin/manage-fields.php:364
1706
+ #: front-end/extra-fields/select-country/select-country.php:10
1707
  msgid "Germany"
1708
  msgstr ""
1709
 
1710
+ #: admin/manage-fields.php:365
1711
+ #: front-end/extra-fields/select-country/select-country.php:10
1712
  msgid "Ghana"
1713
  msgstr ""
1714
 
1715
+ #: admin/manage-fields.php:366
1716
+ #: front-end/extra-fields/select-country/select-country.php:10
1717
  msgid "Gibraltar"
1718
  msgstr ""
1719
 
1720
+ #: admin/manage-fields.php:367
1721
+ #: front-end/extra-fields/select-country/select-country.php:10
1722
  msgid "Greece"
1723
  msgstr ""
1724
 
1725
+ #: admin/manage-fields.php:368
1726
+ #: front-end/extra-fields/select-country/select-country.php:10
1727
  msgid "Greenland"
1728
  msgstr ""
1729
 
1730
+ #: admin/manage-fields.php:369
1731
+ #: front-end/extra-fields/select-country/select-country.php:10
1732
  msgid "Grenada"
1733
  msgstr ""
1734
 
1735
+ #: admin/manage-fields.php:370
1736
+ #: front-end/extra-fields/select-country/select-country.php:10
1737
  msgid "Guadeloupe"
1738
  msgstr ""
1739
 
1740
+ #: admin/manage-fields.php:371
1741
+ #: front-end/extra-fields/select-country/select-country.php:10
1742
  msgid "Guam"
1743
  msgstr ""
1744
 
1745
+ #: admin/manage-fields.php:372
1746
+ #: front-end/extra-fields/select-country/select-country.php:10
1747
  msgid "Guatemala"
1748
  msgstr ""
1749
 
1750
+ #: admin/manage-fields.php:373
1751
+ #: front-end/extra-fields/select-country/select-country.php:10
1752
  msgid "Guernsey"
1753
  msgstr ""
1754
 
1755
+ #: admin/manage-fields.php:374
1756
+ #: front-end/extra-fields/select-country/select-country.php:10
1757
  msgid "Guinea"
1758
  msgstr ""
1759
 
1760
+ #: admin/manage-fields.php:375
1761
+ #: front-end/extra-fields/select-country/select-country.php:10
1762
  msgid "Guinea-Bissau"
1763
  msgstr ""
1764
 
1765
+ #: admin/manage-fields.php:376
1766
+ #: front-end/extra-fields/select-country/select-country.php:10
1767
  msgid "Guyana"
1768
  msgstr ""
1769
 
1770
+ #: admin/manage-fields.php:377
1771
+ #: front-end/extra-fields/select-country/select-country.php:10
1772
  msgid "Haiti"
1773
  msgstr ""
1774
 
1775
+ #: admin/manage-fields.php:378
1776
+ #: front-end/extra-fields/select-country/select-country.php:10
1777
  msgid "Heard Island and McDonald Islands"
1778
  msgstr ""
1779
 
1780
+ #: admin/manage-fields.php:379
1781
+ #: front-end/extra-fields/select-country/select-country.php:10
1782
  msgid "Honduras"
1783
  msgstr ""
1784
 
1785
+ #: admin/manage-fields.php:380
1786
+ #: front-end/extra-fields/select-country/select-country.php:10
1787
  msgid "Hong Kong"
1788
  msgstr ""
1789
 
1790
+ #: admin/manage-fields.php:381
1791
+ #: front-end/extra-fields/select-country/select-country.php:10
1792
  msgid "Hungary"
1793
  msgstr ""
1794
 
1795
+ #: admin/manage-fields.php:382
1796
+ #: front-end/extra-fields/select-country/select-country.php:10
1797
  msgid "Iceland"
1798
  msgstr ""
1799
 
1800
+ #: admin/manage-fields.php:383
1801
+ #: front-end/extra-fields/select-country/select-country.php:10
1802
  msgid "India"
1803
  msgstr ""
1804
 
1805
+ #: admin/manage-fields.php:384
1806
+ #: front-end/extra-fields/select-country/select-country.php:10
1807
  msgid "Indonesia"
1808
  msgstr ""
1809
 
1810
+ #: admin/manage-fields.php:385
1811
  msgid "Iran"
1812
  msgstr ""
1813
 
1814
+ #: admin/manage-fields.php:386
1815
+ #: front-end/extra-fields/select-country/select-country.php:10
1816
  msgid "Iraq"
1817
  msgstr ""
1818
 
1819
+ #: admin/manage-fields.php:387
1820
+ #: front-end/extra-fields/select-country/select-country.php:10
1821
  msgid "Ireland"
1822
  msgstr ""
1823
 
1824
+ #: admin/manage-fields.php:388
1825
+ #: front-end/extra-fields/select-country/select-country.php:10
1826
  msgid "Isle of Man"
1827
  msgstr ""
1828
 
1829
+ #: admin/manage-fields.php:389
1830
+ #: front-end/extra-fields/select-country/select-country.php:10
1831
  msgid "Israel"
1832
  msgstr ""
1833
 
1834
+ #: admin/manage-fields.php:390
1835
+ #: front-end/extra-fields/select-country/select-country.php:10
1836
  msgid "Italy"
1837
  msgstr ""
1838
 
1839
+ #: admin/manage-fields.php:391
1840
  msgid "Ivory Coast"
1841
  msgstr ""
1842
 
1843
+ #: admin/manage-fields.php:392
1844
+ #: front-end/extra-fields/select-country/select-country.php:10
1845
  msgid "Jamaica"
1846
  msgstr ""
1847
 
1848
+ #: admin/manage-fields.php:393
1849
+ #: front-end/extra-fields/select-country/select-country.php:10
1850
  msgid "Japan"
1851
  msgstr ""
1852
 
1853
+ #: admin/manage-fields.php:394
1854
+ #: front-end/extra-fields/select-country/select-country.php:10
1855
  msgid "Jersey"
1856
  msgstr ""
1857
 
1858
+ #: admin/manage-fields.php:395
1859
+ #: front-end/extra-fields/select-country/select-country.php:10
1860
  msgid "Jordan"
1861
  msgstr ""
1862
 
1863
+ #: admin/manage-fields.php:396
1864
+ #: front-end/extra-fields/select-country/select-country.php:10
1865
  msgid "Kazakhstan"
1866
  msgstr ""
1867
 
1868
+ #: admin/manage-fields.php:397
1869
+ #: front-end/extra-fields/select-country/select-country.php:10
1870
  msgid "Kenya"
1871
  msgstr ""
1872
 
1873
+ #: admin/manage-fields.php:398
1874
+ #: front-end/extra-fields/select-country/select-country.php:10
1875
  msgid "Kiribati"
1876
  msgstr ""
1877
 
1878
+ #: admin/manage-fields.php:399
1879
  msgid "Kosovo"
1880
  msgstr ""
1881
 
1882
+ #: admin/manage-fields.php:400
1883
+ #: front-end/extra-fields/select-country/select-country.php:10
1884
  msgid "Kuwait"
1885
  msgstr ""
1886
 
1887
+ #: admin/manage-fields.php:401
1888
+ #: front-end/extra-fields/select-country/select-country.php:10
1889
  msgid "Kyrgyzstan"
1890
  msgstr ""
1891
 
1892
+ #: admin/manage-fields.php:402
1893
  msgid "Laos"
1894
  msgstr ""
1895
 
1896
+ #: admin/manage-fields.php:403
1897
+ #: front-end/extra-fields/select-country/select-country.php:10
1898
  msgid "Latvia"
1899
  msgstr ""
1900
 
1901
+ #: admin/manage-fields.php:404
1902
+ #: front-end/extra-fields/select-country/select-country.php:10
1903
  msgid "Lebanon"
1904
  msgstr ""
1905
 
1906
+ #: admin/manage-fields.php:405
1907
+ #: front-end/extra-fields/select-country/select-country.php:10
1908
  msgid "Lesotho"
1909
  msgstr ""
1910
 
1911
+ #: admin/manage-fields.php:406
1912
+ #: front-end/extra-fields/select-country/select-country.php:10
1913
  msgid "Liberia"
1914
  msgstr ""
1915
 
1916
+ #: admin/manage-fields.php:407
1917
+ #: front-end/extra-fields/select-country/select-country.php:10
1918
  msgid "Libya"
1919
  msgstr ""
1920
 
1921
+ #: admin/manage-fields.php:408
1922
+ #: front-end/extra-fields/select-country/select-country.php:10
1923
  msgid "Liechtenstein"
1924
  msgstr ""
1925
 
1926
+ #: admin/manage-fields.php:409
1927
+ #: front-end/extra-fields/select-country/select-country.php:10
1928
  msgid "Lithuania"
1929
  msgstr ""
1930
 
1931
+ #: admin/manage-fields.php:410
1932
+ #: front-end/extra-fields/select-country/select-country.php:10
1933
  msgid "Luxembourg"
1934
  msgstr ""
1935
 
1936
+ #: admin/manage-fields.php:411
1937
+ #: front-end/extra-fields/select-country/select-country.php:10
1938
  msgid "Macao"
1939
  msgstr ""
1940
 
1941
+ #: admin/manage-fields.php:412
1942
  msgid "Macedonia"
1943
  msgstr ""
1944
 
1945
+ #: admin/manage-fields.php:413
1946
+ #: front-end/extra-fields/select-country/select-country.php:10
1947
  msgid "Madagascar"
1948
  msgstr ""
1949
 
1950
+ #: admin/manage-fields.php:414
1951
+ #: front-end/extra-fields/select-country/select-country.php:10
1952
  msgid "Malawi"
1953
  msgstr ""
1954
 
1955
+ #: admin/manage-fields.php:415
1956
+ #: front-end/extra-fields/select-country/select-country.php:10
1957
  msgid "Malaysia"
1958
  msgstr ""
1959
 
1960
+ #: admin/manage-fields.php:416
1961
+ #: front-end/extra-fields/select-country/select-country.php:10
1962
  msgid "Maldives"
1963
  msgstr ""
1964
 
1965
+ #: admin/manage-fields.php:417
1966
+ #: front-end/extra-fields/select-country/select-country.php:10
1967
  msgid "Mali"
1968
  msgstr ""
1969
 
1970
+ #: admin/manage-fields.php:418
1971
+ #: front-end/extra-fields/select-country/select-country.php:10
1972
  msgid "Malta"
1973
  msgstr ""
1974
 
1975
+ #: admin/manage-fields.php:419
1976
+ #: front-end/extra-fields/select-country/select-country.php:10
1977
  msgid "Marshall Islands"
1978
  msgstr ""
1979
 
1980
+ #: admin/manage-fields.php:420
1981
+ #: front-end/extra-fields/select-country/select-country.php:10
1982
  msgid "Martinique"
1983
  msgstr ""
1984
 
1985
+ #: admin/manage-fields.php:421
1986
+ #: front-end/extra-fields/select-country/select-country.php:10
1987
  msgid "Mauritania"
1988
  msgstr ""
1989
 
1990
+ #: admin/manage-fields.php:422
1991
+ #: front-end/extra-fields/select-country/select-country.php:10
1992
  msgid "Mauritius"
1993
  msgstr ""
1994
 
1995
+ #: admin/manage-fields.php:423
1996
+ #: front-end/extra-fields/select-country/select-country.php:10
1997
  msgid "Mayotte"
1998
  msgstr ""
1999
 
2000
+ #: admin/manage-fields.php:424
2001
+ #: front-end/extra-fields/select-country/select-country.php:10
2002
  msgid "Mexico"
2003
  msgstr ""
2004
 
2005
+ #: admin/manage-fields.php:425
2006
  msgid "Micronesia"
2007
  msgstr ""
2008
 
2009
+ #: admin/manage-fields.php:426
2010
  msgid "Moldova"
2011
  msgstr ""
2012
 
2013
+ #: admin/manage-fields.php:427
2014
+ #: front-end/extra-fields/select-country/select-country.php:10
2015
  msgid "Monaco"
2016
  msgstr ""
2017
 
2018
+ #: admin/manage-fields.php:428
2019
+ #: front-end/extra-fields/select-country/select-country.php:10
2020
  msgid "Mongolia"
2021
  msgstr ""
2022
 
2023
+ #: admin/manage-fields.php:429
2024
+ #: front-end/extra-fields/select-country/select-country.php:10
2025
  msgid "Montenegro"
2026
  msgstr ""
2027
 
2028
+ #: admin/manage-fields.php:430
2029
+ #: front-end/extra-fields/select-country/select-country.php:10
2030
  msgid "Montserrat"
2031
  msgstr ""
2032
 
2033
+ #: admin/manage-fields.php:431
2034
+ #: front-end/extra-fields/select-country/select-country.php:10
2035
  msgid "Morocco"
2036
  msgstr ""
2037
 
2038
+ #: admin/manage-fields.php:432
2039
+ #: front-end/extra-fields/select-country/select-country.php:10
2040
  msgid "Mozambique"
2041
  msgstr ""
2042
 
2043
+ #: admin/manage-fields.php:433
2044
+ #: front-end/extra-fields/select-country/select-country.php:10
2045
  msgid "Myanmar"
2046
  msgstr ""
2047
 
2048
+ #: admin/manage-fields.php:434
2049
+ #: front-end/extra-fields/select-country/select-country.php:10
2050
  msgid "Namibia"
2051
  msgstr ""
2052
 
2053
+ #: admin/manage-fields.php:435
2054
+ #: front-end/extra-fields/select-country/select-country.php:10
2055
  msgid "Nauru"
2056
  msgstr ""
2057
 
2058
+ #: admin/manage-fields.php:436
2059
+ #: front-end/extra-fields/select-country/select-country.php:10
2060
  msgid "Nepal"
2061
  msgstr ""
2062
 
2063
+ #: admin/manage-fields.php:437
2064
+ #: front-end/extra-fields/select-country/select-country.php:10
2065
  msgid "Netherlands"
2066
  msgstr ""
2067
 
2068
+ #: admin/manage-fields.php:438
2069
+ #: front-end/extra-fields/select-country/select-country.php:10
2070
  msgid "New Caledonia"
2071
  msgstr ""
2072
 
2073
+ #: admin/manage-fields.php:439
2074
+ #: front-end/extra-fields/select-country/select-country.php:10
2075
  msgid "New Zealand"
2076
  msgstr ""
2077
 
2078
+ #: admin/manage-fields.php:440
2079
+ #: front-end/extra-fields/select-country/select-country.php:10
2080
  msgid "Nicaragua"
2081
  msgstr ""
2082
 
2083
+ #: admin/manage-fields.php:441
2084
+ #: front-end/extra-fields/select-country/select-country.php:10
2085
  msgid "Niger"
2086
  msgstr ""
2087
 
2088
+ #: admin/manage-fields.php:442
2089
+ #: front-end/extra-fields/select-country/select-country.php:10
2090
  msgid "Nigeria"
2091
  msgstr ""
2092
 
2093
+ #: admin/manage-fields.php:443
2094
+ #: front-end/extra-fields/select-country/select-country.php:10
2095
  msgid "Niue"
2096
  msgstr ""
2097
 
2098
+ #: admin/manage-fields.php:444
2099
+ #: front-end/extra-fields/select-country/select-country.php:10
2100
  msgid "Norfolk Island"
2101
  msgstr ""
2102
 
2103
+ #: admin/manage-fields.php:445
2104
  msgid "North Korea"
2105
  msgstr ""
2106
 
2107
+ #: admin/manage-fields.php:446
2108
+ #: front-end/extra-fields/select-country/select-country.php:10
2109
  msgid "Northern Mariana Islands"
2110
  msgstr ""
2111
 
2112
+ #: admin/manage-fields.php:447
2113
+ #: front-end/extra-fields/select-country/select-country.php:10
2114
  msgid "Norway"
2115
  msgstr ""
2116
 
2117
+ #: admin/manage-fields.php:448
2118
+ #: front-end/extra-fields/select-country/select-country.php:10
2119
  msgid "Oman"
2120
  msgstr ""
2121
 
2122
+ #: admin/manage-fields.php:449
2123
+ #: front-end/extra-fields/select-country/select-country.php:10
2124
  msgid "Pakistan"
2125
  msgstr ""
2126
 
2127
+ #: admin/manage-fields.php:450
2128
+ #: front-end/extra-fields/select-country/select-country.php:10
2129
  msgid "Palau"
2130
  msgstr ""
2131
 
2132
+ #: admin/manage-fields.php:451
2133
  msgid "Palestinian Territory"
2134
  msgstr ""
2135
 
2136
+ #: admin/manage-fields.php:452
2137
+ #: front-end/extra-fields/select-country/select-country.php:10
2138
  msgid "Panama"
2139
  msgstr ""
2140
 
2141
+ #: admin/manage-fields.php:453
2142
+ #: front-end/extra-fields/select-country/select-country.php:10
2143
  msgid "Papua New Guinea"
2144
  msgstr ""
2145
 
2146
+ #: admin/manage-fields.php:454
2147
+ #: front-end/extra-fields/select-country/select-country.php:10
2148
  msgid "Paraguay"
2149
  msgstr ""
2150
 
2151
+ #: admin/manage-fields.php:455
2152
+ #: front-end/extra-fields/select-country/select-country.php:10
2153
  msgid "Peru"
2154
  msgstr ""
2155
 
2156
+ #: admin/manage-fields.php:456
2157
+ #: front-end/extra-fields/select-country/select-country.php:10
2158
  msgid "Philippines"
2159
  msgstr ""
2160
 
2161
+ #: admin/manage-fields.php:457
2162
+ #: front-end/extra-fields/select-country/select-country.php:10
2163
  msgid "Pitcairn"
2164
  msgstr ""
2165
 
2166
+ #: admin/manage-fields.php:458
2167
+ #: front-end/extra-fields/select-country/select-country.php:10
2168
  msgid "Poland"
2169
  msgstr ""
2170
 
2171
+ #: admin/manage-fields.php:459
2172
+ #: front-end/extra-fields/select-country/select-country.php:10
2173
  msgid "Portugal"
2174
  msgstr ""
2175
 
2176
+ #: admin/manage-fields.php:460
2177
+ #: front-end/extra-fields/select-country/select-country.php:10
2178
  msgid "Puerto Rico"
2179
  msgstr ""
2180
 
2181
+ #: admin/manage-fields.php:461
2182
+ #: front-end/extra-fields/select-country/select-country.php:10
2183
  msgid "Qatar"
2184
  msgstr ""
2185
 
2186
+ #: admin/manage-fields.php:462
2187
  msgid "Republic of the Congo"
2188
  msgstr ""
2189
 
2190
+ #: admin/manage-fields.php:463
2191
+ #: front-end/extra-fields/select-country/select-country.php:10
2192
  msgid "Reunion"
2193
  msgstr ""
2194
 
2195
+ #: admin/manage-fields.php:464
2196
+ #: front-end/extra-fields/select-country/select-country.php:10
2197
  msgid "Romania"
2198
  msgstr ""
2199
 
2200
+ #: admin/manage-fields.php:465
2201
  msgid "Russia"
2202
  msgstr ""
2203
 
2204
+ #: admin/manage-fields.php:466
2205
+ #: front-end/extra-fields/select-country/select-country.php:10
2206
  msgid "Rwanda"
2207
  msgstr ""
2208
 
2209
+ #: admin/manage-fields.php:467
2210
+ #: front-end/extra-fields/select-country/select-country.php:10
2211
  msgid "Saint Barthelemy"
2212
  msgstr ""
2213
 
2214
+ #: admin/manage-fields.php:468
2215
  msgid "Saint Helena"
2216
  msgstr ""
2217
 
2218
+ #: admin/manage-fields.php:469
2219
+ #: front-end/extra-fields/select-country/select-country.php:10
2220
  msgid "Saint Kitts and Nevis"
2221
  msgstr ""
2222
 
2223
+ #: admin/manage-fields.php:470
2224
+ #: front-end/extra-fields/select-country/select-country.php:10
2225
  msgid "Saint Lucia"
2226
  msgstr ""
2227
 
2228
+ #: admin/manage-fields.php:471
2229
  msgid "Saint Martin"
2230
  msgstr ""
2231
 
2232
+ #: admin/manage-fields.php:472
2233
+ #: front-end/extra-fields/select-country/select-country.php:10
2234
  msgid "Saint Pierre and Miquelon"
2235
  msgstr ""
2236
 
2237
+ #: admin/manage-fields.php:473
2238
+ #: front-end/extra-fields/select-country/select-country.php:10
2239
  msgid "Saint Vincent and the Grenadines"
2240
  msgstr ""
2241
 
2242
+ #: admin/manage-fields.php:474
2243
+ #: front-end/extra-fields/select-country/select-country.php:10
2244
  msgid "Samoa"
2245
  msgstr ""
2246
 
2247
+ #: admin/manage-fields.php:475
2248
+ #: front-end/extra-fields/select-country/select-country.php:10
2249
  msgid "San Marino"
2250
  msgstr ""
2251
 
2252
+ #: admin/manage-fields.php:476
2253
+ #: front-end/extra-fields/select-country/select-country.php:10
2254
  msgid "Sao Tome and Principe"
2255
  msgstr ""
2256
 
2257
+ #: admin/manage-fields.php:477
2258
+ #: front-end/extra-fields/select-country/select-country.php:10
2259
  msgid "Saudi Arabia"
2260
  msgstr ""
2261
 
2262
+ #: admin/manage-fields.php:478
2263
+ #: front-end/extra-fields/select-country/select-country.php:10
2264
  msgid "Senegal"
2265
  msgstr ""
2266
 
2267
+ #: admin/manage-fields.php:479
2268
+ #: front-end/extra-fields/select-country/select-country.php:10
2269
  msgid "Serbia"
2270
  msgstr ""
2271
 
2272
+ #: admin/manage-fields.php:480
2273
+ #: front-end/extra-fields/select-country/select-country.php:10
2274
  msgid "Seychelles"
2275
  msgstr ""
2276
 
2277
+ #: admin/manage-fields.php:481
2278
+ #: front-end/extra-fields/select-country/select-country.php:10
2279
  msgid "Sierra Leone"
2280
  msgstr ""
2281
 
2282
+ #: admin/manage-fields.php:482
2283
+ #: front-end/extra-fields/select-country/select-country.php:10
2284
  msgid "Singapore"
2285
  msgstr ""
2286
 
2287
+ #: admin/manage-fields.php:483
2288
  msgid "Sint Maarten"
2289
  msgstr ""
2290
 
2291
+ #: admin/manage-fields.php:484
2292
+ #: front-end/extra-fields/select-country/select-country.php:10
2293
  msgid "Slovakia"
2294
  msgstr ""
2295
 
2296
+ #: admin/manage-fields.php:485
2297
+ #: front-end/extra-fields/select-country/select-country.php:10
2298
  msgid "Slovenia"
2299
  msgstr ""
2300
 
2301
+ #: admin/manage-fields.php:486
2302
+ #: front-end/extra-fields/select-country/select-country.php:10
2303
  msgid "Solomon Islands"
2304
  msgstr ""
2305
 
2306
+ #: admin/manage-fields.php:487
2307
+ #: front-end/extra-fields/select-country/select-country.php:10
2308
  msgid "Somalia"
2309
  msgstr ""
2310
 
2311
+ #: admin/manage-fields.php:488
2312
+ #: front-end/extra-fields/select-country/select-country.php:10
2313
  msgid "South Africa"
2314
  msgstr ""
2315
 
2316
+ #: admin/manage-fields.php:489
2317
+ #: front-end/extra-fields/select-country/select-country.php:10
2318
  msgid "South Georgia and the South Sandwich Islands"
2319
  msgstr ""
2320
 
2321
+ #: admin/manage-fields.php:490
2322
  msgid "South Korea"
2323
  msgstr ""
2324
 
2325
+ #: admin/manage-fields.php:491
2326
+ #: front-end/extra-fields/select-country/select-country.php:10
2327
  msgid "South Sudan"
2328
  msgstr ""
2329
 
2330
+ #: admin/manage-fields.php:492
2331
+ #: front-end/extra-fields/select-country/select-country.php:10
2332
  msgid "Spain"
2333
  msgstr ""
2334
 
2335
+ #: admin/manage-fields.php:493
2336
+ #: front-end/extra-fields/select-country/select-country.php:10
2337
  msgid "Sri Lanka"
2338
  msgstr ""
2339
 
2340
+ #: admin/manage-fields.php:494
2341
+ #: front-end/extra-fields/select-country/select-country.php:10
2342
  msgid "Sudan"
2343
  msgstr ""
2344
 
2345
+ #: admin/manage-fields.php:495
2346
+ #: front-end/extra-fields/select-country/select-country.php:10
2347
  msgid "Suriname"
2348
  msgstr ""
2349
 
2350
+ #: admin/manage-fields.php:496
2351
+ #: front-end/extra-fields/select-country/select-country.php:10
2352
  msgid "Svalbard and Jan Mayen"
2353
  msgstr ""
2354
 
2355
+ #: admin/manage-fields.php:497
2356
+ #: front-end/extra-fields/select-country/select-country.php:10
2357
  msgid "Swaziland"
2358
  msgstr ""
2359
 
2360
+ #: admin/manage-fields.php:498
2361
+ #: front-end/extra-fields/select-country/select-country.php:10
2362
  msgid "Sweden"
2363
  msgstr ""
2364
 
2365
+ #: admin/manage-fields.php:499
2366
+ #: front-end/extra-fields/select-country/select-country.php:10
2367
  msgid "Switzerland"
2368
  msgstr ""
2369
 
2370
+ #: admin/manage-fields.php:500
2371
  msgid "Syria"
2372
  msgstr ""
2373
 
2374
+ #: admin/manage-fields.php:501
2375
  msgid "Taiwan"
2376
  msgstr ""
2377
 
2378
+ #: admin/manage-fields.php:502
2379
+ #: front-end/extra-fields/select-country/select-country.php:10
2380
  msgid "Tajikistan"
2381
  msgstr ""
2382
 
2383
+ #: admin/manage-fields.php:503
2384
  msgid "Tanzania"
2385
  msgstr ""
2386
 
2387
+ #: admin/manage-fields.php:504
2388
+ #: front-end/extra-fields/select-country/select-country.php:10
2389
  msgid "Thailand"
2390
  msgstr ""
2391
 
2392
+ #: admin/manage-fields.php:505
2393
+ #: front-end/extra-fields/select-country/select-country.php:10
2394
  msgid "Togo"
2395
  msgstr ""
2396
 
2397
+ #: admin/manage-fields.php:506
2398
+ #: front-end/extra-fields/select-country/select-country.php:10
2399
  msgid "Tokelau"
2400
  msgstr ""
2401
 
2402
+ #: admin/manage-fields.php:507
2403
+ #: front-end/extra-fields/select-country/select-country.php:10
2404
  msgid "Tonga"
2405
  msgstr ""
2406
 
2407
+ #: admin/manage-fields.php:508
2408
+ #: front-end/extra-fields/select-country/select-country.php:10
2409
  msgid "Trinidad and Tobago"
2410
  msgstr ""
2411
 
2412
+ #: admin/manage-fields.php:509
2413
+ #: front-end/extra-fields/select-country/select-country.php:10
2414
  msgid "Tunisia"
2415
  msgstr ""
2416
 
2417
+ #: admin/manage-fields.php:510
2418
+ #: front-end/extra-fields/select-country/select-country.php:10
2419
  msgid "Turkey"
2420
  msgstr ""
2421
 
2422
+ #: admin/manage-fields.php:511
2423
+ #: front-end/extra-fields/select-country/select-country.php:10
2424
  msgid "Turkmenistan"
2425
  msgstr ""
2426
 
2427
+ #: admin/manage-fields.php:512
2428
+ #: front-end/extra-fields/select-country/select-country.php:10
2429
  msgid "Turks and Caicos Islands"
2430
  msgstr ""
2431
 
2432
+ #: admin/manage-fields.php:513
2433
+ #: front-end/extra-fields/select-country/select-country.php:10
2434
  msgid "Tuvalu"
2435
  msgstr ""
2436
 
2437
+ #: admin/manage-fields.php:514
2438
  msgid "U.S. Virgin Islands"
2439
  msgstr ""
2440
 
2441
+ #: admin/manage-fields.php:515
2442
+ #: front-end/extra-fields/select-country/select-country.php:10
2443
  msgid "Uganda"
2444
  msgstr ""
2445
 
2446
+ #: admin/manage-fields.php:516
2447
+ #: front-end/extra-fields/select-country/select-country.php:10
2448
  msgid "Ukraine"
2449
  msgstr ""
2450
 
2451
+ #: admin/manage-fields.php:517
2452
+ #: front-end/extra-fields/select-country/select-country.php:10
2453
  msgid "United Arab Emirates"
2454
  msgstr ""
2455
 
2456
+ #: admin/manage-fields.php:518
2457
+ #: front-end/extra-fields/select-country/select-country.php:10
2458
  msgid "United Kingdom"
2459
  msgstr ""
2460
 
2461
+ #: admin/manage-fields.php:519
2462
+ #: front-end/extra-fields/select-country/select-country.php:10
2463
  msgid "United States"
2464
  msgstr ""
2465
 
2466
+ #: admin/manage-fields.php:520
2467
+ #: front-end/extra-fields/select-country/select-country.php:10
2468
  msgid "United States Minor Outlying Islands"
2469
  msgstr ""
2470
 
2471
+ #: admin/manage-fields.php:521
2472
+ #: front-end/extra-fields/select-country/select-country.php:10
2473
  msgid "Uruguay"
2474
  msgstr ""
2475
 
2476
+ #: admin/manage-fields.php:522
2477
+ #: front-end/extra-fields/select-country/select-country.php:10
2478
  msgid "Uzbekistan"
2479
  msgstr ""
2480
 
2481
+ #: admin/manage-fields.php:523
2482
+ #: front-end/extra-fields/select-country/select-country.php:10
2483
  msgid "Vanuatu"
2484
  msgstr ""
2485
 
2486
+ #: admin/manage-fields.php:524
2487
  msgid "Vatican"
2488
  msgstr ""
2489
 
2490
+ #: admin/manage-fields.php:525
2491
  msgid "Venezuela"
2492
  msgstr ""
2493
 
2494
+ #: admin/manage-fields.php:526
2495
  msgid "Vietnam"
2496
  msgstr ""
2497
 
2498
+ #: admin/manage-fields.php:527
2499
+ #: front-end/extra-fields/select-country/select-country.php:10
2500
  msgid "Wallis and Futuna"
2501
  msgstr ""
2502
 
2503
+ #: admin/manage-fields.php:528
2504
+ #: front-end/extra-fields/select-country/select-country.php:10
2505
  msgid "Western Sahara"
2506
  msgstr ""
2507
 
2508
+ #: admin/manage-fields.php:529
2509
+ #: front-end/extra-fields/select-country/select-country.php:10
2510
  msgid "Yemen"
2511
  msgstr ""
2512
 
2513
+ #: admin/manage-fields.php:530
2514
+ #: front-end/extra-fields/select-country/select-country.php:10
2515
  msgid "Zambia"
2516
  msgstr ""
2517
 
2518
+ #: admin/manage-fields.php:531
2519
+ #: front-end/extra-fields/select-country/select-country.php:10
2520
  msgid "Zimbabwe"
2521
  msgstr ""
2522
 
2523
+ #: admin/manage-fields.php:564
2524
  msgid "Albania Lek"
2525
  msgstr ""
2526
 
2527
+ #: admin/manage-fields.php:565
2528
  msgid "Afghanistan Afghani"
2529
  msgstr ""
2530
 
2531
+ #: admin/manage-fields.php:566
2532
  msgid "Argentina Peso"
2533
  msgstr ""
2534
 
2535
+ #: admin/manage-fields.php:567
2536
  msgid "Aruba Guilder"
2537
  msgstr ""
2538
 
2539
+ #: admin/manage-fields.php:568
2540
  msgid "Australia Dollar"
2541
  msgstr ""
2542
 
2543
+ #: admin/manage-fields.php:569
2544
  msgid "Azerbaijan New Manat"
2545
  msgstr ""
2546
 
2547
+ #: admin/manage-fields.php:570
2548
  msgid "Bahamas Dollar"
2549
  msgstr ""
2550
 
2551
+ #: admin/manage-fields.php:571
2552
  msgid "Barbados Dollar"
2553
  msgstr ""
2554
 
2555
+ #: admin/manage-fields.php:572
2556
  msgid "Bangladeshi taka"
2557
  msgstr ""
2558
 
2559
+ #: admin/manage-fields.php:573
2560
  msgid "Belarus Ruble"
2561
  msgstr ""
2562
 
2563
+ #: admin/manage-fields.php:574
2564
  msgid "Belize Dollar"
2565
  msgstr ""
2566
 
2567
+ #: admin/manage-fields.php:575
2568
  msgid "Bermuda Dollar"
2569
  msgstr ""
2570
 
2571
+ #: admin/manage-fields.php:576
2572
  msgid "Bolivia Boliviano"
2573
  msgstr ""
2574
 
2575
+ #: admin/manage-fields.php:577
2576
  msgid "Bosnia and Herzegovina Convertible Marka"
2577
  msgstr ""
2578
 
2579
+ #: admin/manage-fields.php:578
2580
  msgid "Botswana Pula"
2581
  msgstr ""
2582
 
2583
+ #: admin/manage-fields.php:579
2584
  msgid "Bulgaria Lev"
2585
  msgstr ""
2586
 
2587
+ #: admin/manage-fields.php:580
2588
  msgid "Brazil Real"
2589
  msgstr ""
2590
 
2591
+ #: admin/manage-fields.php:581
2592
  msgid "Brunei Darussalam Dollar"
2593
  msgstr ""
2594
 
2595
+ #: admin/manage-fields.php:582
2596
  msgid "Cambodia Riel"
2597
  msgstr ""
2598
 
2599
+ #: admin/manage-fields.php:583
2600
  msgid "Canada Dollar"
2601
  msgstr ""
2602
 
2603
+ #: admin/manage-fields.php:584
2604
  msgid "Cayman Islands Dollar"
2605
  msgstr ""
2606
 
2607
+ #: admin/manage-fields.php:585
2608
  msgid "Chile Peso"
2609
  msgstr ""
2610
 
2611
+ #: admin/manage-fields.php:586
2612
  msgid "China Yuan Renminbi"
2613
  msgstr ""
2614
 
2615
+ #: admin/manage-fields.php:587
2616
  msgid "Colombia Peso"
2617
  msgstr ""
2618
 
2619
+ #: admin/manage-fields.php:588
2620
  msgid "Costa Rica Colon"
2621
  msgstr ""
2622
 
2623
+ #: admin/manage-fields.php:589
2624
  msgid "Croatia Kuna"
2625
  msgstr ""
2626
 
2627
+ #: admin/manage-fields.php:590
2628
  msgid "Cuba Peso"
2629
  msgstr ""
2630
 
2631
+ #: admin/manage-fields.php:591
2632
  msgid "Czech Republic Koruna"
2633
  msgstr ""
2634
 
2635
+ #: admin/manage-fields.php:592
2636
  msgid "Denmark Krone"
2637
  msgstr ""
2638
 
2639
+ #: admin/manage-fields.php:593
2640
  msgid "Dominican Republic Peso"
2641
  msgstr ""
2642
 
2643
+ #: admin/manage-fields.php:594
2644
  msgid "East Caribbean Dollar"
2645
  msgstr ""
2646
 
2647
+ #: admin/manage-fields.php:595
2648
  msgid "Egypt Pound"
2649
  msgstr ""
2650
 
2651
+ #: admin/manage-fields.php:596
2652
  msgid "El Salvador Colon"
2653
  msgstr ""
2654
 
2655
+ #: admin/manage-fields.php:597
2656
  msgid "Estonia Kroon"
2657
  msgstr ""
2658
 
2659
+ #: admin/manage-fields.php:598
2660
  msgid "Euro"
2661
  msgstr ""
2662
 
2663
+ #: admin/manage-fields.php:599
2664
  msgid "Falkland Islands (Malvinas) Pound"
2665
  msgstr ""
2666
 
2667
+ #: admin/manage-fields.php:600
2668
  msgid "Fiji Dollar"
2669
  msgstr ""
2670
 
2671
+ #: admin/manage-fields.php:601
2672
  msgid "Ghana Cedis"
2673
  msgstr ""
2674
 
2675
+ #: admin/manage-fields.php:602
2676
  msgid "Gibraltar Pound"
2677
  msgstr ""
2678
 
2679
+ #: admin/manage-fields.php:603
2680
  msgid "Guatemala Quetzal"
2681
  msgstr ""
2682
 
2683
+ #: admin/manage-fields.php:604
2684
  msgid "Guernsey Pound"
2685
  msgstr ""
2686
 
2687
+ #: admin/manage-fields.php:605
2688
  msgid "Guyana Dollar"
2689
  msgstr ""
2690
 
2691
+ #: admin/manage-fields.php:606
2692
  msgid "Honduras Lempira"
2693
  msgstr ""
2694
 
2695
+ #: admin/manage-fields.php:607
2696
  msgid "Hong Kong Dollar"
2697
  msgstr ""
2698
 
2699
+ #: admin/manage-fields.php:608
2700
  msgid "Hungary Forint"
2701
  msgstr ""
2702
 
2703
+ #: admin/manage-fields.php:609
2704
  msgid "Iceland Krona"
2705
  msgstr ""
2706
 
2707
+ #: admin/manage-fields.php:610
2708
  msgid "India Rupee"
2709
  msgstr ""
2710
 
2711
+ #: admin/manage-fields.php:611
2712
  msgid "Indonesia Rupiah"
2713
  msgstr ""
2714
 
2715
+ #: admin/manage-fields.php:612
2716
  msgid "Iran Rial"
2717
  msgstr ""
2718
 
2719
+ #: admin/manage-fields.php:613
2720
  msgid "Isle of Man Pound"
2721
  msgstr ""
2722
 
2723
+ #: admin/manage-fields.php:614
2724
  msgid "Israel Shekel"
2725
  msgstr ""
2726
 
2727
+ #: admin/manage-fields.php:615
2728
  msgid "Jamaica Dollar"
2729
  msgstr ""
2730
 
2731
+ #: admin/manage-fields.php:616
2732
  msgid "Japan Yen"
2733
  msgstr ""
2734
 
2735
+ #: admin/manage-fields.php:617
2736
  msgid "Jersey Pound"
2737
  msgstr ""
2738
 
2739
+ #: admin/manage-fields.php:618
2740
  msgid "Kazakhstan Tenge"
2741
  msgstr ""
2742
 
2743
+ #: admin/manage-fields.php:619
2744
  msgid "Korea (North) Won"
2745
  msgstr ""
2746
 
2747
+ #: admin/manage-fields.php:620
2748
  msgid "Korea (South) Won"
2749
  msgstr ""
2750
 
2751
+ #: admin/manage-fields.php:621
2752
  msgid "Kyrgyzstan Som"
2753
  msgstr ""
2754
 
2755
+ #: admin/manage-fields.php:622
2756
  msgid "Laos Kip"
2757
  msgstr ""
2758
 
2759
+ #: admin/manage-fields.php:623
2760
  msgid "Latvia Lat"
2761
  msgstr ""
2762
 
2763
+ #: admin/manage-fields.php:624
2764
  msgid "Lebanon Pound"
2765
  msgstr ""
2766
 
2767
+ #: admin/manage-fields.php:625
2768
  msgid "Liberia Dollar"
2769
  msgstr ""
2770
 
2771
+ #: admin/manage-fields.php:626
2772
  msgid "Lithuania Litas"
2773
  msgstr ""
2774
 
2775
+ #: admin/manage-fields.php:627
2776
  msgid "Macedonia Denar"
2777
  msgstr ""
2778
 
2779
+ #: admin/manage-fields.php:628
2780
  msgid "Malaysia Ringgit"
2781
  msgstr ""
2782
 
2783
+ #: admin/manage-fields.php:629
2784
  msgid "Mauritius Rupee"
2785
  msgstr ""
2786
 
2787
+ #: admin/manage-fields.php:630
2788
  msgid "Mexico Peso"
2789
  msgstr ""
2790
 
2791
+ #: admin/manage-fields.php:631
2792
  msgid "Mongolia Tughrik"
2793
  msgstr ""
2794
 
2795
+ #: admin/manage-fields.php:632
2796
  msgid "Mozambique Metical"
2797
  msgstr ""
2798
 
2799
+ #: admin/manage-fields.php:633
2800
  msgid "Namibia Dollar"
2801
  msgstr ""
2802
 
2803
+ #: admin/manage-fields.php:634
2804
  msgid "Nepal Rupee"
2805
  msgstr ""
2806
 
2807
+ #: admin/manage-fields.php:635
2808
  msgid "Netherlands Antilles Guilder"
2809
  msgstr ""
2810
 
2811
+ #: admin/manage-fields.php:636
2812
  msgid "New Zealand Dollar"
2813
  msgstr ""
2814
 
2815
+ #: admin/manage-fields.php:637
2816
  msgid "Nicaragua Cordoba"
2817
  msgstr ""
2818
 
2819
+ #: admin/manage-fields.php:638
2820
  msgid "Nigeria Naira"
2821
  msgstr ""
2822
 
2823
+ #: admin/manage-fields.php:639
2824
  msgid "Norway Krone"
2825
  msgstr ""
2826
 
2827
+ #: admin/manage-fields.php:640
2828
  msgid "Oman Rial"
2829
  msgstr ""
2830
 
2831
+ #: admin/manage-fields.php:641
2832
  msgid "Pakistan Rupee"
2833
  msgstr ""
2834
 
2835
+ #: admin/manage-fields.php:642
2836
  msgid "Panama Balboa"
2837
  msgstr ""
2838
 
2839
+ #: admin/manage-fields.php:643
2840
  msgid "Paraguay Guarani"
2841
  msgstr ""
2842
 
2843
+ #: admin/manage-fields.php:644
2844
  msgid "Peru Nuevo Sol"
2845
  msgstr ""
2846
 
2847
+ #: admin/manage-fields.php:645
2848
  msgid "Philippines Peso"
2849
  msgstr ""
2850
 
2851
+ #: admin/manage-fields.php:646
2852
  msgid "Poland Zloty"
2853
  msgstr ""
2854
 
2855
+ #: admin/manage-fields.php:647
2856
  msgid "Qatar Riyal"
2857
  msgstr ""
2858
 
2859
+ #: admin/manage-fields.php:648
2860
  msgid "Romania New Leu"
2861
  msgstr ""
2862
 
2863
+ #: admin/manage-fields.php:649
2864
  msgid "Russia Ruble"
2865
  msgstr ""
2866
 
2867
+ #: admin/manage-fields.php:650
2868
  msgid "Saint Helena Pound"
2869
  msgstr ""
2870
 
2871
+ #: admin/manage-fields.php:651
2872
  msgid "Saudi Arabia Riyal"
2873
  msgstr ""
2874
 
2875
+ #: admin/manage-fields.php:652
2876
  msgid "Serbia Dinar"
2877
  msgstr ""
2878
 
2879
+ #: admin/manage-fields.php:653
2880
  msgid "Seychelles Rupee"
2881
  msgstr ""
2882
 
2883
+ #: admin/manage-fields.php:654
2884
  msgid "Singapore Dollar"
2885
  msgstr ""
2886
 
2887
+ #: admin/manage-fields.php:655
2888
  msgid "Solomon Islands Dollar"
2889
  msgstr ""
2890
 
2891
+ #: admin/manage-fields.php:656
2892
  msgid "Somalia Shilling"
2893
  msgstr ""
2894
 
2895
+ #: admin/manage-fields.php:657
2896
  msgid "South Africa Rand"
2897
  msgstr ""
2898
 
2899
+ #: admin/manage-fields.php:658
2900
  msgid "Sri Lanka Rupee"
2901
  msgstr ""
2902
 
2903
+ #: admin/manage-fields.php:659
2904
  msgid "Sweden Krona"
2905
  msgstr ""
2906
 
2907
+ #: admin/manage-fields.php:660
2908
  msgid "Switzerland Franc"
2909
  msgstr ""
2910
 
2911
+ #: admin/manage-fields.php:661
2912
  msgid "Suriname Dollar"
2913
  msgstr ""
2914
 
2915
+ #: admin/manage-fields.php:662
2916
  msgid "Syria Pound"
2917
  msgstr ""
2918
 
2919
+ #: admin/manage-fields.php:663
2920
  msgid "Taiwan New Dollar"
2921
  msgstr ""
2922
 
2923
+ #: admin/manage-fields.php:664
2924
  msgid "Thailand Baht"
2925
  msgstr ""
2926
 
2927
+ #: admin/manage-fields.php:665
2928
  msgid "Trinidad and Tobago Dollar"
2929
  msgstr ""
2930
 
2931
+ #: admin/manage-fields.php:666 admin/manage-fields.php:667
 
2932
  msgid "Turkey Lira"
2933
  msgstr ""
2934
 
2935
+ #: admin/manage-fields.php:668
2936
  msgid "Tuvalu Dollar"
2937
  msgstr ""
2938
 
2939
+ #: admin/manage-fields.php:669
2940
  msgid "Ukraine Hryvna"
2941
  msgstr ""
2942
 
2943
+ #: admin/manage-fields.php:670
2944
  msgid "United Kingdom Pound"
2945
  msgstr ""
2946
 
2947
+ #: admin/manage-fields.php:671
2948
  msgid "Uganda Shilling"
2949
  msgstr ""
2950
 
2951
+ #: admin/manage-fields.php:672
2952
  msgid "US Dollar"
2953
  msgstr ""
2954
 
2955
+ #: admin/manage-fields.php:673
2956
  msgid "Uruguay Peso"
2957
  msgstr ""
2958
 
2959
+ #: admin/manage-fields.php:674
2960
  msgid "Uzbekistan Som"
2961
  msgstr ""
2962
 
2963
+ #: admin/manage-fields.php:675
2964
  msgid "Venezuela Bolivar"
2965
  msgstr ""
2966
 
2967
+ #: admin/manage-fields.php:676
2968
  msgid "Viet Nam Dong"
2969
  msgstr ""
2970
 
2971
+ #: admin/manage-fields.php:677
2972
  msgid "Yemen Rial"
2973
  msgstr ""
2974
 
2975
+ #: admin/manage-fields.php:678
2976
  msgid "Zimbabwe Dollar"
2977
  msgstr ""
2978
 
2979
+ #: admin/manage-fields.php:980 admin/manage-fields.php:1137
 
2980
  msgid "You must select a field\n"
2981
  msgstr ""
2982
 
2983
+ #: admin/manage-fields.php:990
2984
  msgid ""
2985
  "Please choose a different field type as this one already exists in your form "
2986
  "(must be unique)\n"
2987
  msgstr ""
2988
 
2989
+ #: admin/manage-fields.php:1001
2990
  msgid "The entered avatar size is not between 20 and 200\n"
2991
  msgstr ""
2992
 
2993
+ #: admin/manage-fields.php:1004
2994
  msgid "The entered avatar size is not numerical\n"
2995
  msgstr ""
2996
 
2997
+ #: admin/manage-fields.php:1012
2998
  msgid "The entered row number is not numerical\n"
2999
  msgstr ""
3000
 
3001
+ #: admin/manage-fields.php:1015
3002
  msgid "You must enter a value for the row number\n"
3003
  msgstr ""
3004
 
3005
+ #: admin/manage-fields.php:1023
3006
  msgid "You must enter the site key\n"
3007
  msgstr ""
3008
 
3009
+ #: admin/manage-fields.php:1025
3010
  msgid "You must enter the secret key\n"
3011
  msgstr ""
3012
 
3013
+ #: admin/manage-fields.php:1036
3014
  msgid "The entered value for the Datepicker is not a valid date-format\n"
3015
  msgstr ""
3016
 
3017
+ #: admin/manage-fields.php:1039
3018
  msgid "You must enter a value for the date-format\n"
3019
  msgstr ""
3020
 
3021
+ #: admin/manage-fields.php:1055
3022
  msgid "The meta-name cannot be empty\n"
3023
  msgstr ""
3024
 
3025
+ #: admin/manage-fields.php:1067 admin/manage-fields.php:1075
3026
+ #: admin/manage-fields.php:1086
 
3027
  msgid "That meta-name is already in use\n"
3028
  msgstr ""
3029
 
3030
+ #: admin/manage-fields.php:1097
3031
  msgid ""
3032
  "The meta-name can only contain lowercase letters, numbers, _ , - and no "
3033
  "spaces.\n"
3034
  msgstr ""
3035
 
3036
+ #: admin/manage-fields.php:1117
 
3037
  msgid ""
3038
  "The following option(s) did not coincide with the ones in the options list: "
3039
  "%s\n"
3040
  msgstr ""
3041
 
3042
+ #: admin/manage-fields.php:1121
 
3043
  msgid ""
3044
  "The following option did not coincide with the ones in the options list: %s\n"
3045
  msgstr ""
3046
 
3047
+ #: admin/manage-fields.php:1128
3048
  msgid "Please select at least one user role\n"
3049
  msgstr ""
3050
 
3051
+ #: admin/manage-fields.php:1144
3052
  msgid "That field is already added in this form\n"
3053
  msgstr ""
3054
 
3055
+ #: admin/manage-fields.php:1193
3056
  msgid ""
3057
  "<pre>Title</pre><pre>Type</pre><pre>Meta Name</pre><pre class=\"wppb-mb-head-"
3058
  "required\">Required</pre>"
3059
  msgstr ""
3060
 
3061
+ #: admin/manage-fields.php:1193
3062
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3063
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3064
+ #: features/admin-approval/class-admin-approval.php:108
3065
+ #: features/functions.php:735 features/functions.php:742
3066
+ #: features/roles-editor/roles-editor.php:866
3067
+ #: modules/custom-redirects/custom_redirects_admin.php:179
3068
+ #: modules/custom-redirects/custom_redirects_admin.php:193
3069
+ #: modules/custom-redirects/custom_redirects_admin.php:207
3070
+ #: modules/custom-redirects/custom_redirects_admin.php:221
3071
+ #: modules/multiple-forms/multiple-forms.php:406
3072
  msgid "Edit"
3073
  msgstr ""
3074
 
3075
+ #: admin/manage-fields.php:1193
3076
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438
3077
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3078
+ #: features/admin-approval/class-admin-approval.php:113
3079
+ #: features/admin-approval/class-admin-approval.php:224
3080
+ #: features/email-confirmation/class-email-confirmation.php:120
3081
+ #: features/email-confirmation/class-email-confirmation.php:217
3082
+ #: features/functions.php:728 features/functions.php:742
3083
+ #: features/roles-editor/roles-editor.php:179
3084
+ #: features/roles-editor/roles-editor.php:884
3085
+ #: features/roles-editor/roles-editor.php:893
3086
+ #: features/roles-editor/roles-editor.php:904
3087
+ #: modules/custom-redirects/custom_redirects_admin.php:179
3088
+ #: modules/custom-redirects/custom_redirects_admin.php:193
3089
+ #: modules/custom-redirects/custom_redirects_admin.php:207
3090
+ #: modules/custom-redirects/custom_redirects_admin.php:221
3091
  msgid "Delete"
3092
  msgstr ""
3093
 
3094
+ #: admin/manage-fields.php:1208
3095
  msgid "Use these shortcodes on the pages you want the forms to be displayed:"
3096
  msgstr ""
3097
 
3098
+ #: admin/manage-fields.php:1217
3099
  msgid ""
3100
  "If you're interested in displaying different fields in the registration and "
3101
  "edit profile forms, please use the Multiple Registration & Edit Profile "
3102
  "Forms Modules."
3103
  msgstr ""
3104
 
3105
+ #: admin/manage-fields.php:1219
3106
  msgid ""
3107
  "With Profile Builder Pro v2 you can display different fields in the "
3108
  "registration and edit profile forms, using the Multiple Registration & Edit "
3109
  "Profile Forms module."
3110
  msgstr ""
3111
 
3112
+ #: admin/manage-fields.php:1314
3113
  msgid "Search Location"
3114
  msgstr ""
3115
 
3116
+ #: admin/pms-cross-promotion.php:10
3117
  msgid "Paid Accounts"
3118
  msgstr ""
3119
 
3120
+ #: admin/pms-cross-promotion.php:33
3121
  msgid "Paid Member Subscriptions - a free WordPress plugin"
3122
  msgstr ""
3123
 
3124
+ #: admin/pms-cross-promotion.php:37
3125
  msgid ""
3126
  "With the new Subscriptions Field in Profile Builder, your registration forms "
3127
  "will allow your users to sign up for paid accounts."
3128
  msgstr ""
3129
 
3130
+ #: admin/pms-cross-promotion.php:40
3131
  msgid "Paid & Free Subscriptions"
3132
  msgstr ""
3133
 
3134
+ #: admin/pms-cross-promotion.php:41
3135
  msgid "Restrict Content"
3136
  msgstr ""
3137
 
3138
+ #: admin/pms-cross-promotion.php:42
3139
  msgid "Member Management"
3140
  msgstr ""
3141
 
3142
+ #: admin/pms-cross-promotion.php:43
3143
  msgid "Email Templates"
3144
  msgstr ""
3145
 
3146
+ #: admin/pms-cross-promotion.php:44
3147
  msgid "Account Management"
3148
  msgstr ""
3149
 
3150
+ #: admin/pms-cross-promotion.php:45
3151
  msgid "Subscription Management"
3152
  msgstr ""
3153
 
3154
+ #: admin/pms-cross-promotion.php:46
3155
  msgid "Payment Management"
3156
  msgstr ""
3157
 
3158
+ #: admin/pms-cross-promotion.php:83
3159
  msgid "Plugin is Active"
3160
  msgstr ""
3161
 
3162
+ #: admin/pms-cross-promotion.php:84
3163
  msgid "Plugin has been activated"
3164
  msgstr ""
3165
 
3166
+ #: admin/pms-cross-promotion.php:91
3167
  msgid "Plugin has been deactivated."
3168
  msgstr ""
3169
 
3170
+ #: admin/pms-cross-promotion.php:104
3171
  msgid ""
3172
  "Accept user payments, create subscription plans and restrict content on your "
3173
  "website."
3174
  msgstr ""
3175
 
3176
+ #: admin/pms-cross-promotion.php:155
 
 
 
 
 
3177
  msgid "Step by Step Quick Setup"
3178
  msgstr ""
3179
 
3180
+ #: admin/pms-cross-promotion.php:239
 
3181
  msgid ""
3182
  "Allow your users to have <strong>paid accounts with Profile Builder</"
3183
  "strong>. %1$sFind out how >%2$s %3$sDismiss%4$s"
3184
  msgstr ""
3185
 
3186
+ #: admin/register-version.php:14
3187
  msgid "Register Your Version"
3188
  msgstr ""
3189
 
3190
+ #: admin/register-version.php:14
3191
  msgid "Register Version"
3192
  msgstr ""
3193
 
3194
+ #: admin/register-version.php:22
3195
  msgid "Profile Builder Register"
3196
  msgstr ""
3197
 
3198
+ #: admin/register-version.php:69
 
3199
  msgid ""
3200
  "Now that you acquired a copy of %s, you should take the time and register it "
3201
  "with the serial number you received"
3202
  msgstr ""
3203
 
3204
+ #: admin/register-version.php:70
3205
  msgid ""
3206
  "If you register this version of Profile Builder, you'll receive information "
3207
  "regarding upgrades, patches, and technical support."
3208
  msgstr ""
3209
 
3210
+ #: admin/register-version.php:72
3211
  msgid " Serial Number:"
3212
  msgstr ""
3213
 
3214
+ #: admin/register-version.php:77
3215
  msgid "The serial number was successfully validated!"
3216
  msgstr ""
3217
 
3218
+ #: admin/register-version.php:79
3219
  msgid "The serial number entered couldn't be validated!"
3220
  msgstr ""
3221
 
3222
+ #: admin/register-version.php:81
3223
  msgid "The serial number is about to expire soon!"
3224
  msgstr ""
3225
 
3226
+ #: admin/register-version.php:81
 
3227
  msgid ""
3228
  " Your serial number is about to expire, please %1$s Renew Your License%2$s."
3229
  msgstr ""
3230
 
3231
+ #: admin/register-version.php:83
3232
  msgid "The serial number couldn't be validated because it expired!"
3233
  msgstr ""
3234
 
3235
+ #: admin/register-version.php:83
 
3236
  msgid " Your serial number is expired, please %1$s Renew Your License%2$s."
3237
  msgstr ""
3238
 
3239
+ #: admin/register-version.php:85
3240
  msgid ""
3241
  "The serial number couldn't be validated because process timed out. This is "
3242
  "possible due to the server being down. Please try again later!"
3243
  msgstr ""
3244
 
3245
+ #: admin/register-version.php:87
3246
  msgid "(e.g. RMPB-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
3247
  msgstr ""
3248
 
3249
+ #: admin/register-version.php:243
 
3250
  msgid ""
3251
  "<p>Your <strong>Profile Builder</strong> serial number is invalid or "
3252
  "missing. <br/>Please %1$sregister your copy%2$s to receive access to "
3254
  "p>"
3255
  msgstr ""
3256
 
3257
+ #: admin/register-version.php:246
 
3258
  msgid ""
3259
  "<p>Your <strong>Profile Builder</strong> license has expired. <br/>Please "
3260
  "%1$sRenew Your Licence%2$s to continue receiving access to product "
3262
  "%4$s %5$sDismiss%6$s</p>"
3263
  msgstr ""
3264
 
3265
+ #: admin/register-version.php:251
 
3266
  msgid ""
3267
  "<p>Your <strong>Profile Builder</strong> license is about to expire on %5$s. "
3268
  "<br/>Please %1$sRenew Your Licence%2$s to continue receiving access to "
3270
  "40&#37; off %4$s %6$sDismiss%7$s</p>"
3271
  msgstr ""
3272
 
3273
+ #: assets/lib/wck-api/fields/country select.php:14
3274
+ #: assets/lib/wck-api/fields/cpt select.php:17
3275
+ #: assets/lib/wck-api/fields/select.php:14 assets/lib/wck-api/fields/user
3276
+ #: select.php:15 front-end/extra-fields/select-cpt/select-cpt.php:42
3277
+ #: front-end/extra-fields/select-cpt/select-cpt.php:66
 
3278
  msgid "...Choose"
3279
  msgstr ""
3280
 
3281
+ #: assets/lib/wck-api/fields/nested repeater.php:8
 
3282
  msgid "You can add the information for the %s after you add a entry"
3283
  msgstr ""
3284
 
3285
+ #: assets/lib/wck-api/fields/upload.php:43
3286
+ #: front-end/extra-fields/upload/upload.php:112
3287
+ msgid "Remove"
3288
+ msgstr ""
3289
+
3290
+ #: assets/lib/wck-api/fields/upload.php:75
3291
+ #: front-end/extra-fields/upload/upload.php:128
3292
+ msgid "Upload "
3293
+ msgstr ""
3294
+
3295
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3296
+ #: modules/class-mustache-templates/class-mustache-templates.php:253
3297
  msgid "Save"
3298
  msgstr ""
3299
 
3300
+ #: assets/lib/wck-api/wordpress-creation-kit.php:334
3301
  msgid "Add Entry"
3302
  msgstr ""
3303
 
3304
+ #: assets/lib/wck-api/wordpress-creation-kit.php:438 features/functions.php:742
 
3305
  msgid "Content"
3306
  msgstr ""
3307
 
3308
+ #: assets/lib/wck-api/wordpress-creation-kit.php:535
3309
  msgid "Edit this item"
3310
  msgstr ""
3311
 
3312
+ #: assets/lib/wck-api/wordpress-creation-kit.php:536
3313
  msgid "Delete this item"
3314
  msgstr ""
3315
 
3316
+ #: assets/lib/wck-api/wordpress-creation-kit.php:705
3317
  msgid "Please enter a value for the required field "
3318
  msgstr ""
3319
 
3320
+ #: assets/lib/wck-api/wordpress-creation-kit.php:754 front-end/login.php:321
3321
  msgid "You are not allowed to do this."
3322
  msgstr ""
3323
 
3324
+ #: assets/misc/plugin-compatibilities.php:237
3325
  msgid ""
3326
  "Your account has to be confirmed by an administrator before you can log in."
3327
  msgstr ""
3328
 
3329
+ #: features/admin-approval/admin-approval.php:14
3330
+ #: features/admin-approval/class-admin-approval.php:454
3331
  msgid "Admin Approval"
3332
  msgstr ""
3333
 
3334
+ #: features/admin-approval/admin-approval.php:28
3335
+ #: features/email-confirmation/email-confirmation.php:58
3336
  msgid "Do you want to"
3337
  msgstr ""
3338
 
3339
+ #: features/admin-approval/admin-approval.php:51
3340
  msgid "Your session has expired! Please refresh the page and try again"
3341
  msgstr ""
3342
 
3343
+ #: features/admin-approval/admin-approval.php:64
3344
  msgid "User successfully approved!"
3345
  msgstr ""
3346
 
3347
+ #: features/admin-approval/admin-approval.php:74
3348
  msgid "User successfully unapproved!"
3349
  msgstr ""
3350
 
3351
+ #: features/admin-approval/admin-approval.php:80
3352
  msgid "User successfully deleted!"
3353
  msgstr ""
3354
 
3355
+ #: features/admin-approval/admin-approval.php:85
3356
+ #: features/admin-approval/admin-approval.php:131
3357
+ #: features/email-confirmation/email-confirmation.php:132
3358
  msgid "You either don't have permission for that action or there was an error!"
3359
  msgstr ""
3360
 
3361
+ #: features/admin-approval/admin-approval.php:96
3362
  msgid "Your session has expired! Please refresh the page and try again."
3363
  msgstr ""
3364
 
3365
+ #: features/admin-approval/admin-approval.php:109
3366
  msgid "Users successfully approved!"
3367
  msgstr ""
3368
 
3369
+ #: features/admin-approval/admin-approval.php:119
3370
  msgid "Users successfully unapproved!"
3371
  msgstr ""
3372
 
3373
+ #: features/admin-approval/admin-approval.php:127
3374
  msgid "Users successfully deleted!"
3375
  msgstr ""
3376
 
3377
+ #: features/admin-approval/admin-approval.php:147
 
3378
  msgid "Your account on %1$s has been approved!"
3379
  msgstr ""
3380
 
3381
+ #: features/admin-approval/admin-approval.php:148
3382
+ #: features/admin-approval/admin-approval.php:151
3383
  msgid "approved"
3384
  msgstr ""
3385
 
3386
+ #: features/admin-approval/admin-approval.php:150
 
3387
  msgid "An administrator has just approved your account on %1$s (%2$s)."
3388
  msgstr ""
3389
 
3390
+ #: features/admin-approval/admin-approval.php:155
 
3391
  msgid "Your account on %1$s has been unapproved!"
3392
  msgstr ""
3393
 
3394
+ #: features/admin-approval/admin-approval.php:156
3395
+ #: features/admin-approval/admin-approval.php:159
3396
  msgid "unapproved"
3397
  msgstr ""
3398
 
3399
+ #: features/admin-approval/admin-approval.php:158
 
3400
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
3401
  msgstr ""
3402
 
3403
+ #: features/admin-approval/admin-approval.php:177
3404
  msgid ""
3405
  "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
3406
  "before you can log in."
3407
  msgstr ""
3408
 
3409
+ #: features/admin-approval/admin-approval.php:189
3410
  msgid ""
3411
  "Your account has to be confirmed by an administrator before you can use the "
3412
  "\"Password Recovery\" feature."
3413
  msgstr ""
3414
 
3415
+ #: features/admin-approval/admin-approval.php:218
3416
  msgid "Your account has been successfully created!"
3417
  msgstr ""
3418
 
3419
+ #: features/admin-approval/class-admin-approval.php:113
3420
  msgid "delete this user?"
3421
  msgstr ""
3422
 
3423
+ #: features/admin-approval/class-admin-approval.php:116
3424
  msgid "unapprove this user?"
3425
  msgstr ""
3426
 
3427
+ #: features/admin-approval/class-admin-approval.php:116
3428
+ #: features/admin-approval/class-admin-approval.php:223
3429
  msgid "Unapprove"
3430
  msgstr ""
3431
 
3432
+ #: features/admin-approval/class-admin-approval.php:118
3433
  msgid "approve this user?"
3434
  msgstr ""
3435
 
3436
+ #: features/admin-approval/class-admin-approval.php:118
3437
+ #: features/admin-approval/class-admin-approval.php:222
3438
  msgid "Approve"
3439
  msgstr ""
3440
 
3441
+ #: features/admin-approval/class-admin-approval.php:167
3442
+ #: modules/user-listing/userlisting.php:304
3443
+ #: modules/user-listing/userlisting.php:786
3444
+ #: modules/user-listing/userlisting.php:2269
3445
  msgid "Firstname"
3446
  msgstr ""
3447
 
3448
+ #: features/admin-approval/class-admin-approval.php:168
3449
+ #: modules/user-listing/userlisting.php:789
3450
+ #: modules/user-listing/userlisting.php:2270
3451
  msgid "Lastname"
3452
  msgstr ""
3453
 
3454
+ #: features/admin-approval/class-admin-approval.php:170
3455
+ #: features/roles-editor/roles-editor.php:255
3456
+ #: modules/user-listing/userlisting.php:159
3457
+ #: modules/user-listing/userlisting.php:305
3458
+ #: modules/user-listing/userlisting.php:816
3459
+ #: modules/user-listing/userlisting.php:2274
3460
  msgid "Role"
3461
  msgstr ""
3462
 
3463
+ #: features/admin-approval/class-admin-approval.php:171
3464
+ #: features/email-confirmation/class-email-confirmation.php:169
3465
  msgid "Registered"
3466
  msgstr ""
3467
 
3468
+ #: features/admin-approval/class-admin-approval.php:172
3469
  msgid "User-status"
3470
  msgstr ""
3471
 
3472
+ #: features/admin-approval/class-admin-approval.php:252
3473
  msgid "Do you want to bulk approve the selected users?"
3474
  msgstr ""
3475
 
3476
+ #: features/admin-approval/class-admin-approval.php:260
3477
  msgid "Do you want to bulk unapprove the selected users?"
3478
  msgstr ""
3479
 
3480
+ #: features/admin-approval/class-admin-approval.php:266
3481
  msgid "Do you want to bulk delete the selected users?"
3482
  msgstr ""
3483
 
3484
+ #: features/admin-approval/class-admin-approval.php:274
3485
+ #: features/email-confirmation/class-email-confirmation.php:278
3486
  msgid "Sorry, but you don't have permission to do that!"
3487
  msgstr ""
3488
 
3489
+ #: features/admin-approval/class-admin-approval.php:339
3490
  msgid "Approved"
3491
  msgstr ""
3492
 
3493
+ #: features/admin-approval/class-admin-approval.php:341
3494
  msgid "Unapproved"
3495
  msgstr ""
3496
 
3497
+ #: features/admin-approval/class-admin-approval.php:457
3498
+ #: features/email-confirmation/class-email-confirmation.php:454
3499
  msgid "All Users"
3500
  msgstr ""
3501
 
3502
+ #: features/admin-approval/class-admin-approval.php:462
3503
+ #: features/email-confirmation/class-email-confirmation.php:460
3504
  msgid "Search Users"
3505
  msgstr ""
3506
 
3507
+ #: features/class-list-table.php:184
3508
  msgid "No items found."
3509
  msgstr ""
3510
 
3511
+ #: features/class-list-table.php:308
3512
  msgid "Bulk Actions"
3513
  msgstr ""
3514
 
3515
+ #: features/class-list-table.php:318
3516
  msgid "Apply"
3517
  msgstr ""
3518
 
3519
+ #: features/class-list-table.php:402
3520
  msgid "Show all dates"
3521
  msgstr ""
3522
 
3523
+ #. translators: 1: month name, 2: 4-digit year
3524
+ #: features/class-list-table.php:415
3525
  msgid "%1$s %2$d"
3526
  msgstr ""
3527
 
3528
+ #: features/class-list-table.php:431
3529
  msgid "List View"
3530
  msgstr ""
3531
 
3532
+ #: features/class-list-table.php:432
3533
  msgid "Excerpt View"
3534
  msgstr ""
3535
 
3536
+ #: features/class-list-table.php:458
 
3537
  msgid "%s pending"
3538
  msgstr ""
3539
 
3540
+ #: features/class-list-table.php:526 features/class-list-table.php:942
 
3541
  msgid "1 item"
3542
+ msgid_plural "%s items"
3543
+ msgstr[0] ""
3544
+ msgstr[1] ""
3545
+
3546
+ #: features/class-list-table.php:544
3547
+ msgid "Go to the first page"
3548
+ msgstr ""
3549
+
3550
+ #: features/class-list-table.php:551
3551
+ msgid "Go to the previous page"
3552
  msgstr ""
3553
 
3554
+ #: features/class-list-table.php:560
3555
+ msgid "Current page"
3556
+ msgstr ""
3557
+
3558
+ #: features/class-list-table.php:566
3559
+ msgctxt "paging"
3560
  msgid "%1$s of %2$s"
3561
  msgstr ""
3562
 
3563
+ #: features/class-list-table.php:570
3564
+ msgid "Go to the next page"
3565
+ msgstr ""
3566
+
3567
+ #: features/class-list-table.php:577
3568
+ msgid "Go to the last page"
3569
+ msgstr ""
3570
+
3571
+ #: features/class-list-table.php:713
3572
  msgid "Select All"
3573
  msgstr ""
3574
 
3575
+ #: features/conditional-fields/conditional-fields.php:78
3576
  msgid "Conditional Logic"
3577
  msgstr ""
3578
 
3579
+ #: features/conditional-fields/conditional-fields.php:79
3580
  msgid "Conditional Rules"
3581
  msgstr ""
3582
 
3583
+ #: features/conditional-fields/conditional-fields.php:448
3584
  msgid "This field has conditional logic enabled."
3585
  msgstr ""
3586
 
3587
+ #: features/content-restriction/content-restriction-filtering.php:178
3588
+ msgid "&hellip;"
3589
+ msgstr ""
3590
+
3591
+ #: features/content-restriction/content-restriction-functions.php:40
3592
+ msgid "You must be logged in to view this content."
3593
+ msgstr ""
3594
+
3595
+ #: features/content-restriction/content-restriction-functions.php:42
3596
+ msgid "This content is restricted for your user role."
3597
+ msgstr ""
3598
+
3599
+ #: features/content-restriction/content-restriction-meta-box.php:18
3600
+ msgid "Profile Builder Content Restriction"
3601
+ msgstr ""
3602
+
3603
+ #: features/content-restriction/content-restriction-meta-box.php:32
3604
+ msgid "Display Options"
3605
+ msgstr ""
3606
+
3607
+ #: features/content-restriction/content-restriction-meta-box.php:36
3608
+ #: features/content-restriction/content-restriction.php:56
3609
+ msgid "Message"
3610
+ msgstr ""
3611
+
3612
+ #: features/content-restriction/content-restriction-meta-box.php:36
3613
+ #: features/content-restriction/content-restriction.php:61
3614
+ #: modules/multiple-forms/edit-profile-forms.php:206
3615
+ #: modules/multiple-forms/register-forms.php:230
3616
+ msgid "Redirect"
3617
+ msgstr ""
3618
+
3619
+ #: features/content-restriction/content-restriction-meta-box.php:41
3620
+ #: features/content-restriction/content-restriction.php:51
3621
+ msgid "Type of Restriction"
3622
+ msgstr ""
3623
+
3624
+ #: features/content-restriction/content-restriction-meta-box.php:45
3625
+ msgid "Settings Default"
3626
+ msgstr ""
3627
+
3628
+ #: features/content-restriction/content-restriction-meta-box.php:57
3629
+ msgid "Display For"
3630
+ msgstr ""
3631
+
3632
+ #: features/content-restriction/content-restriction-meta-box.php:67
3633
+ msgid "Logged In Users"
3634
+ msgstr ""
3635
+
3636
+ #: features/content-restriction/content-restriction-meta-box.php:81
3637
+ msgid ""
3638
+ "Checking only \"Logged In Users\" will show this %s to all logged in users, "
3639
+ "regardless of user role."
3640
+ msgstr ""
3641
+
3642
+ #: features/content-restriction/content-restriction-meta-box.php:85
3643
+ msgid ""
3644
+ "Checking any user role will show this %s only to users that have one of "
3645
+ "those user roles assigned."
3646
+ msgstr ""
3647
+
3648
+ #: features/content-restriction/content-restriction-meta-box.php:92
3649
+ msgid "Restriction Redirect URL"
3650
+ msgstr ""
3651
+
3652
+ #: features/content-restriction/content-restriction-meta-box.php:98
3653
+ msgid "Enable Custom Redirect URL"
3654
+ msgstr ""
3655
+
3656
+ #: features/content-restriction/content-restriction-meta-box.php:102
3657
+ msgid "Check if you wish to add a custom redirect URL for this %s."
3658
+ msgstr ""
3659
+
3660
+ #: features/content-restriction/content-restriction-meta-box.php:109
3661
+ msgid "Custom Redirect URL"
3662
+ msgstr ""
3663
+
3664
+ #: features/content-restriction/content-restriction-meta-box.php:113
3665
+ msgid ""
3666
+ "Add a URL where you wish to redirect users that do not have access to this "
3667
+ "%s and try to access it directly."
3668
+ msgstr ""
3669
+
3670
+ #: features/content-restriction/content-restriction-meta-box.php:119
3671
+ msgid "Restriction Messages"
3672
+ msgstr ""
3673
+
3674
+ #: features/content-restriction/content-restriction-meta-box.php:125
3675
+ msgid "Enable Custom Messages"
3676
+ msgstr ""
3677
+
3678
+ #: features/content-restriction/content-restriction-meta-box.php:129
3679
+ msgid "Check if you wish to add custom messages for this %s."
3680
+ msgstr ""
3681
+
3682
+ #: features/content-restriction/content-restriction-meta-box.php:136
3683
+ msgid "Messages for logged-out users"
3684
+ msgstr ""
3685
+
3686
+ #: features/content-restriction/content-restriction-meta-box.php:139
3687
+ msgid "Messages for logged-in users"
3688
+ msgstr ""
3689
+
3690
+ #: features/content-restriction/content-restriction.php:64
3691
+ msgid ""
3692
+ "If you select \"Message\", the post's content will be protected by being "
3693
+ "replaced with a custom message."
3694
+ msgstr ""
3695
+
3696
+ #: features/content-restriction/content-restriction.php:65
3697
+ msgid ""
3698
+ "If you select \"Redirect\", the post's content will be protected by "
3699
+ "redirecting the user to the URL you specify. The redirect happens only when "
3700
+ "accessing a single post. On archive pages the restriction message will be "
3701
+ "displayed, instead of the content."
3702
+ msgstr ""
3703
+
3704
+ #: features/content-restriction/content-restriction.php:70
3705
+ #: modules/custom-redirects/custom_redirects_admin.php:64
3706
+ #: modules/custom-redirects/custom_redirects_admin.php:94
3707
+ #: modules/custom-redirects/custom_redirects_admin.php:113
3708
+ #: modules/custom-redirects/custom_redirects_admin.php:138
3709
+ msgid "Redirect URL"
3710
+ msgstr ""
3711
+
3712
+ #: features/content-restriction/content-restriction.php:75
3713
+ msgid "Message for logged-out users"
3714
+ msgstr ""
3715
+
3716
+ #: features/content-restriction/content-restriction.php:80
3717
+ msgid "Message for logged-in users"
3718
+ msgstr ""
3719
+
3720
+ #: features/content-restriction/content-restriction.php:85
3721
+ msgid "Restricted Posts Preview"
3722
+ msgstr ""
3723
+
3724
+ #: features/content-restriction/content-restriction.php:91
3725
+ #: modules/user-listing/userlisting.php:525
3726
+ #: modules/user-listing/userlisting.php:543
3727
+ msgid "None"
3728
+ msgstr ""
3729
+
3730
+ #: features/content-restriction/content-restriction.php:100
3731
+ msgid "Show the first %s words of the post's content"
3732
+ msgstr ""
3733
+
3734
+ #: features/content-restriction/content-restriction.php:108
3735
+ msgid "Show the content before the \"more\" tag"
3736
+ msgstr ""
3737
+
3738
+ #: features/content-restriction/content-restriction.php:112
3739
+ msgid ""
3740
+ "Show a portion of the restricted post to logged-out users or users that are "
3741
+ "not allowed to see it."
3742
+ msgstr ""
3743
+
3744
+ #: features/email-confirmation/class-email-confirmation.php:91
3745
+ #: features/email-confirmation/class-email-confirmation.php:170
3746
  msgid "User Meta"
3747
  msgstr ""
3748
 
3749
+ #: features/email-confirmation/class-email-confirmation.php:91
3750
  msgid "show"
3751
  msgstr ""
3752
 
3753
+ #: features/email-confirmation/class-email-confirmation.php:120
3754
  msgid "delete this user from the _signups table?"
3755
  msgstr ""
3756
 
3757
+ #: features/email-confirmation/class-email-confirmation.php:121
3758
  msgid "confirm this email yourself?"
3759
  msgstr ""
3760
 
3761
+ #: features/email-confirmation/class-email-confirmation.php:121
3762
+ #: features/email-confirmation/class-email-confirmation.php:218
3763
  msgid "Confirm Email"
3764
  msgstr ""
3765
 
3766
+ #: features/email-confirmation/class-email-confirmation.php:122
3767
  msgid "resend the activation link?"
3768
  msgstr ""
3769
 
3770
+ #: features/email-confirmation/class-email-confirmation.php:122
3771
+ #: features/email-confirmation/class-email-confirmation.php:219
3772
  msgid "Resend Activation Email"
3773
  msgstr ""
3774
 
3775
+ #: features/email-confirmation/class-email-confirmation.php:249
 
3776
  msgid "%s couldn't be deleted"
3777
  msgstr ""
3778
 
3779
+ #: features/email-confirmation/class-email-confirmation.php:253
3780
  msgid "All users have been successfully deleted"
3781
  msgstr ""
3782
 
3783
+ #: features/email-confirmation/class-email-confirmation.php:263
3784
  msgid "The selected users have been activated"
3785
  msgstr ""
3786
 
3787
+ #: features/email-confirmation/class-email-confirmation.php:274
3788
  msgid "The selected users have had their activation emails resent"
3789
  msgstr ""
3790
 
3791
+ #: features/email-confirmation/class-email-confirmation.php:451
3792
+ #: features/email-confirmation/email-confirmation.php:47
3793
  msgid "Users with Unconfirmed Email Address"
3794
  msgstr ""
3795
 
3796
+ #: features/email-confirmation/email-confirmation.php:107
3797
  msgid "There was an error performing that action!"
3798
  msgstr ""
3799
 
3800
+ #: features/email-confirmation/email-confirmation.php:115
3801
  msgid "The selected user couldn't be deleted"
3802
  msgstr ""
3803
 
3804
+ #: features/email-confirmation/email-confirmation.php:126
3805
  msgid "Email notification resent to user"
3806
  msgstr ""
3807
 
3808
+ #: features/email-confirmation/email-confirmation.php:404
 
3809
  msgid "[%1$s] Activate %2$s"
3810
  msgstr ""
3811
 
3812
+ #: features/email-confirmation/email-confirmation.php:407
 
3813
  msgid ""
3814
  "To activate your user, please click the following link:<br><br>%s%s"
3815
  "%s<br><br>After you activate it you will receive yet *another email* with "
3816
  "your login."
3817
  msgstr ""
3818
 
3819
+ #: features/email-confirmation/email-confirmation.php:448
3820
+ #: front-end/register.php:71
3821
  msgid "Could not create user!"
3822
  msgstr ""
3823
 
3824
+ #: features/email-confirmation/email-confirmation.php:451
3825
  msgid "That username is already activated!"
3826
  msgstr ""
3827
 
3828
+ #: features/email-confirmation/email-confirmation.php:474
3829
  msgid "There was an error while trying to activate the user"
3830
  msgstr ""
3831
 
3832
+ #: features/email-confirmation/email-confirmation.php:522
3833
+ #: modules/email-customizer/admin-email-customizer.php:73
3834
  msgid "A new subscriber has (been) registered!"
3835
  msgstr ""
3836
 
3837
+ #: features/email-confirmation/email-confirmation.php:525
 
3838
  msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
3839
  msgstr ""
3840
 
3841
+ #: features/email-confirmation/email-confirmation.php:576
 
3842
  msgid "[%1$s] Your new account information"
3843
  msgstr ""
3844
 
3845
+ #: features/email-confirmation/email-confirmation.php:580
3846
+ #: features/email-confirmation/email-confirmation.php:589
3847
+ #: modules/email-customizer/email-customizer.php:488
3848
+ #: modules/email-customizer/email-customizer.php:495
3849
+ #: modules/email-customizer/email-customizer.php:509
3850
  msgid "Your selected password at signup"
3851
  msgstr ""
3852
 
3853
+ #: features/email-confirmation/email-confirmation.php:585
 
3854
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s"
3855
  msgstr ""
3856
 
3857
+ #: features/email-confirmation/email-confirmation.php:587
 
3858
  msgid "Welcome to %1$s!<br/><br/><br/>Your username is:%2$s and password:%3$s"
3859
  msgstr ""
3860
 
3861
+ #: features/email-confirmation/email-confirmation.php:640
3862
  msgid ""
3863
  "The \"Admin Approval\" feature was activated at the time of registration, so "
3864
  "please remember that you need to approve this user before he/she can log in!"
3865
  msgstr ""
3866
 
3867
+ #: features/email-confirmation/email-confirmation.php:648
3868
+ #: front-end/register.php:125
3869
  msgid ""
3870
  "Before you can access your account, an administrator needs to approve it. "
3871
  "You will be notified via email."
3872
  msgstr ""
3873
 
3874
+ #: features/functions.php:529
3875
  msgid "Strength indicator"
3876
  msgstr ""
3877
 
3878
+ #: features/functions.php:555 features/functions.php:579
3879
  msgid "Very Weak"
3880
  msgstr ""
3881
 
3882
+ #: features/functions.php:569
3883
+ msgid "Minimum length of %d characters."
3884
+ msgstr ""
3885
+
3886
+ #: features/functions.php:580
3887
+ msgid "The password must have a minimum strength of %s."
3888
  msgstr ""
3889
 
3890
+ #: features/functions.php:657
3891
  msgid "This field is required"
3892
  msgstr ""
3893
 
3894
+ #: features/functions.php:695
3895
+ #: front-end/default-fields/recaptcha/recaptcha.php:374
3896
+ #: front-end/default-fields/recaptcha/recaptcha.php:379
3897
+ #: front-end/default-fields/recaptcha/recaptcha.php:421
3898
+ #: front-end/default-fields/recaptcha/recaptcha.php:458
3899
  msgid "Please enter a (valid) reCAPTCHA value"
3900
  msgstr ""
3901
 
3902
+ #: features/functions.php:702
3903
  msgid "Incorrect phone number"
3904
  msgstr ""
3905
 
3906
+ #: features/functions.php:721 features/roles-editor/roles-editor.php:180
3907
  msgid "Cancel"
3908
  msgstr ""
3909
 
3910
+ #: features/functions.php:753
 
3911
  msgid ""
3912
  "To allow users to register for your website via Profile Builder, you first "
3913
  "must enable user registration. Go to %1$sNetwork Settings%2$s, and under "
3915
  "%3$sDismiss%4$s"
3916
  msgstr ""
3917
 
3918
+ #: features/functions.php:757
 
3919
  msgid ""
3920
  "To allow users to register for your website via Profile Builder, you first "
3921
  "must enable user registration. Go to %1$sSettings -> General%2$s tab, and "
3922
  "under Membership make sure to check “Anyone can register”. %3$sDismiss%4$s"
3923
  msgstr ""
3924
 
3925
+ #: features/functions.php:913
3926
  msgid "<br><br>Also, you will be able to visit your site at "
3927
  msgstr ""
3928
 
3929
+ #: features/functions.php:926
3930
  msgid "<br><br>You can visit your site at "
3931
  msgstr ""
3932
 
3933
+ #: features/functions.php:1011
3934
  msgid "here"
3935
  msgstr ""
3936
 
3937
+ #: features/functions.php:1012
 
3938
  msgid ""
3939
  "You will soon be redirected automatically. If you see this page for more "
3940
  "than %1$d seconds, please click %2$s.%3$s"
3941
  msgstr ""
3942
 
3943
+ #: features/login-widget/login-widget.php:10
3944
  msgid "This login widget lets you add a login form in the sidebar."
3945
  msgstr ""
3946
 
3947
+ #: features/login-widget/login-widget.php:15
3948
  msgid "Profile Builder Login Widget"
3949
  msgstr ""
3950
 
3951
+ #: features/login-widget/login-widget.php:63
3952
  msgid "Title:"
3953
  msgstr ""
3954
 
3955
+ #: features/login-widget/login-widget.php:68
3956
  msgid "After login redirect URL (optional):"
3957
  msgstr ""
3958
 
3959
+ #: features/login-widget/login-widget.php:73
3960
  msgid "Register page URL (optional):"
3961
  msgstr ""
3962
 
3963
+ #: features/login-widget/login-widget.php:78
3964
  msgid "Password Recovery page URL (optional):"
3965
  msgstr ""
3966
 
3967
+ #: features/roles-editor/roles-editor.php:170
3968
+ #: modules/multiple-forms/register-forms.php:219
3969
+ msgid "Default Role"
3970
+ msgstr ""
3971
+
3972
+ #: features/roles-editor/roles-editor.php:171
3973
+ msgid "Your Role"
3974
+ msgstr ""
3975
+
3976
+ #: features/roles-editor/roles-editor.php:172
3977
+ msgid "Role name is required."
3978
+ msgstr ""
3979
+
3980
+ #: features/roles-editor/roles-editor.php:173
3981
+ msgid "No capabilities found."
3982
+ msgstr ""
3983
+
3984
+ #: features/roles-editor/roles-editor.php:174
3985
+ msgid "Select capabilities"
3986
+ msgstr ""
3987
+
3988
+ #: features/roles-editor/roles-editor.php:175
3989
+ msgid "Delete Permanently"
3990
+ msgstr ""
3991
+
3992
+ #: features/roles-editor/roles-editor.php:176
3993
+ msgid ""
3994
+ "This will permanently delete the capability from your site and from every "
3995
+ "user role.\n"
3996
+ "\n"
3997
+ "It can't be undone!"
3998
+ msgstr ""
3999
+
4000
+ #: features/roles-editor/roles-editor.php:177
4001
+ msgid "This capability is not saved until you click Update!"
4002
+ msgstr ""
4003
+
4004
+ #: features/roles-editor/roles-editor.php:178
4005
+ msgid "This capability is not saved until you click Publish!"
4006
+ msgstr ""
4007
+
4008
+ #: features/roles-editor/roles-editor.php:181
4009
+ #: features/roles-editor/roles-editor.php:431
4010
+ msgid "Add New Capability"
4011
+ msgstr ""
4012
+
4013
+ #: features/roles-editor/roles-editor.php:182
4014
+ msgid "Capability"
4015
+ msgstr ""
4016
+
4017
+ #: features/roles-editor/roles-editor.php:183
4018
+ msgid "You can't delete this capability from your role."
4019
+ msgstr ""
4020
+
4021
+ #: features/roles-editor/roles-editor.php:244
4022
+ #: features/roles-editor/roles-editor.php:245
4023
+ #: features/roles-editor/roles-editor.php:250
4024
+ #: features/roles-editor/roles-editor.php:257
4025
+ msgid "Roles Editor"
4026
+ msgstr ""
4027
+
4028
+ #: features/roles-editor/roles-editor.php:246
4029
+ #: features/roles-editor/roles-editor.php:247
4030
+ msgid "Add New Role"
4031
+ msgstr ""
4032
+
4033
+ #: features/roles-editor/roles-editor.php:248
4034
+ msgid "Edit Role"
4035
+ msgstr ""
4036
+
4037
+ #: features/roles-editor/roles-editor.php:249
4038
+ msgid "New Role"
4039
+ msgstr ""
4040
+
4041
+ #: features/roles-editor/roles-editor.php:251
4042
+ msgid "View Role"
4043
+ msgstr ""
4044
+
4045
+ #: features/roles-editor/roles-editor.php:252
4046
+ msgid "Search the Roles Editor"
4047
+ msgstr ""
4048
+
4049
+ #: features/roles-editor/roles-editor.php:253
4050
+ msgid "No roles found"
4051
+ msgstr ""
4052
+
4053
+ #: features/roles-editor/roles-editor.php:254
4054
+ msgid "No roles found in trash"
4055
+ msgstr ""
4056
+
4057
+ #: features/roles-editor/roles-editor.php:283
4058
+ msgid "Enter role name here"
4059
+ msgstr ""
4060
+
4061
+ #: features/roles-editor/roles-editor.php:296
4062
+ #: features/roles-editor/roles-editor.php:299
4063
+ msgid "Role updated."
4064
+ msgstr ""
4065
+
4066
+ #: features/roles-editor/roles-editor.php:297
4067
+ msgid "Custom field updated."
4068
+ msgstr ""
4069
+
4070
+ #: features/roles-editor/roles-editor.php:298
4071
+ msgid "Custom field deleted."
4072
+ msgstr ""
4073
+
4074
+ #: features/roles-editor/roles-editor.php:300
4075
+ msgid "Role restored to revision from %s"
4076
+ msgstr ""
4077
+
4078
+ #: features/roles-editor/roles-editor.php:301
4079
+ msgid "Role created."
4080
+ msgstr ""
4081
+
4082
+ #: features/roles-editor/roles-editor.php:302
4083
+ msgid "Role saved."
4084
+ msgstr ""
4085
+
4086
+ #: features/roles-editor/roles-editor.php:303
4087
+ msgid "Role submitted."
4088
+ msgstr ""
4089
+
4090
+ #: features/roles-editor/roles-editor.php:304
4091
+ msgid "Role scheduled for: <strong>%1$s</strong>"
4092
+ msgstr ""
4093
+
4094
+ #: features/roles-editor/roles-editor.php:304
4095
  msgid "M j, Y @ G:i"
4096
  msgstr ""
4097
 
4098
+ #: features/roles-editor/roles-editor.php:305
4099
+ msgid "Role draft updated."
4100
+ msgstr ""
4101
+
4102
+ #: features/roles-editor/roles-editor.php:364
4103
+ msgid "Role Name"
4104
+ msgstr ""
4105
+
4106
+ #: features/roles-editor/roles-editor.php:365
4107
+ #: features/roles-editor/roles-editor.php:529
4108
+ #: modules/user-listing/userlisting.php:160
4109
+ msgid "Role Slug"
4110
+ msgstr ""
4111
+
4112
+ #: features/roles-editor/roles-editor.php:366
4113
+ #: features/roles-editor/roles-editor.php:523
4114
+ msgid "Capabilities"
4115
+ msgstr ""
4116
+
4117
+ #: features/roles-editor/roles-editor.php:367
4118
+ #: features/roles-editor/roles-editor.php:474
4119
+ #: features/roles-editor/roles-editor.php:518
4120
+ msgid "Users"
4121
+ msgstr ""
4122
+
4123
+ #: features/roles-editor/roles-editor.php:413
4124
+ msgid "Edit Role Capabilities"
4125
+ msgstr ""
4126
+
4127
+ #: features/roles-editor/roles-editor.php:424
4128
+ msgid "Add a new capability"
4129
+ msgstr ""
4130
+
4131
+ #: features/roles-editor/roles-editor.php:427
4132
+ msgid "Add Capability"
4133
+ msgstr ""
4134
+
4135
+ #: features/roles-editor/roles-editor.php:434
4136
+ msgid "Please select an existing capability or add a new one!"
4137
+ msgstr ""
4138
+
4139
+ #: features/roles-editor/roles-editor.php:435
4140
+ msgid "You can't add a hidden capability!"
4141
+ msgstr ""
4142
+
4143
+ #: features/roles-editor/roles-editor.php:436
4144
+ msgid "This capability already exists!"
4145
+ msgstr ""
4146
+
4147
+ #: features/roles-editor/roles-editor.php:442
4148
+ msgid "All"
4149
+ msgstr ""
4150
+
4151
+ #: features/roles-editor/roles-editor.php:446
4152
+ msgid "General"
4153
+ msgstr ""
4154
+
4155
+ #: features/roles-editor/roles-editor.php:450
4156
+ #: modules/user-listing/userlisting.php:306
4157
+ #: modules/user-listing/userlisting.php:801
4158
+ msgid "Posts"
4159
+ msgstr ""
4160
+
4161
+ #: features/roles-editor/roles-editor.php:454
4162
+ msgid "Pages"
4163
+ msgstr ""
4164
+
4165
+ #: features/roles-editor/roles-editor.php:458
4166
+ msgid "Media"
4167
+ msgstr ""
4168
+
4169
+ #: features/roles-editor/roles-editor.php:462
4170
+ msgid "Taxonomies"
4171
+ msgstr ""
4172
+
4173
+ #: features/roles-editor/roles-editor.php:466
4174
+ msgid "Appearance"
4175
+ msgstr ""
4176
+
4177
+ #: features/roles-editor/roles-editor.php:470
4178
+ msgid "Plugins"
4179
+ msgstr ""
4180
+
4181
+ #: features/roles-editor/roles-editor.php:478
4182
+ msgid "Custom"
4183
+ msgstr ""
4184
+
4185
+ #: features/roles-editor/roles-editor.php:877
4186
+ msgid "Clone"
4187
+ msgstr ""
4188
+
4189
+ #: features/roles-editor/roles-editor.php:884
4190
+ msgid "You can't delete your role."
4191
+ msgstr ""
4192
+
4193
+ #: features/roles-editor/roles-editor.php:892
4194
+ msgid "Change Default"
4195
+ msgstr ""
4196
+
4197
+ #: features/roles-editor/roles-editor.php:893
4198
+ msgid "You can't delete the default role. Change it first."
4199
+ msgstr ""
4200
+
4201
+ #: features/roles-editor/roles-editor.php:903
4202
+ msgid ""
4203
+ "Are you sure?\\nThis will permanently delete the role and cannot be undone!"
4204
+ "\\nUsers assigned only on this role will be moved to the default role."
4205
+ msgstr ""
4206
+
4207
+ #: features/roles-editor/roles-editor.php:1116
4208
+ msgid "Edit User Roles"
4209
+ msgstr ""
4210
+
4211
+ #: features/upgrades/upgrades-functions.php:91
4212
+ #: features/upgrades/upgrades-functions.php:134
4213
  msgid "The usernames cannot be changed."
4214
  msgstr ""
4215
 
4216
+ #: front-end/class-formbuilder.php:124
4217
  msgid ""
4218
  "The role of the created user set to the default role. Only an administrator "
4219
  "can register a user with the role assigned to this form."
4220
  msgstr ""
4221
 
4222
+ #: front-end/class-formbuilder.php:136
4223
  msgid "Only an administrator can add new users."
4224
  msgstr ""
4225
 
4226
+ #: front-end/class-formbuilder.php:146
4227
  msgid "Users can register themselves or you can manually create users here."
4228
  msgstr ""
4229
 
4230
+ #: front-end/class-formbuilder.php:146 front-end/class-formbuilder.php:149
 
4231
  msgid "This message is only visible by administrators"
4232
  msgstr ""
4233
 
4234
+ #: front-end/class-formbuilder.php:149
4235
  msgid ""
4236
  "Users cannot currently register themselves, but you can manually create "
4237
  "users here."
4238
  msgstr ""
4239
 
4240
+ #: front-end/class-formbuilder.php:169
 
4241
  msgid "You are currently logged in as %1s. You don't need another account. %2s"
4242
  msgstr ""
4243
 
4244
+ #: front-end/class-formbuilder.php:169
4245
  msgid "Log out of this account."
4246
  msgstr ""
4247
 
4248
+ #: front-end/class-formbuilder.php:169
4249
  msgid "Logout"
4250
  msgstr ""
4251
 
4252
+ #: front-end/class-formbuilder.php:175
4253
  msgid "You must be logged in to edit your profile."
4254
  msgstr ""
4255
 
4256
+ #: front-end/class-formbuilder.php:315 front-end/class-formbuilder.php:322
 
 
4257
  msgid "The account %1s has been successfully created!"
4258
  msgstr ""
4259
 
4260
+ #: front-end/class-formbuilder.php:318 front-end/class-formbuilder.php:328
 
 
4261
  msgid ""
4262
  "Before you can access your account %1s, you need to confirm your email "
4263
  "address. Please check your inbox and click the activation link."
4264
  msgstr ""
4265
 
4266
+ #: front-end/class-formbuilder.php:324
 
4267
  msgid ""
4268
  "Before you can access your account %1s, an administrator has to approve it. "
4269
  "You will be notified via email."
4270
  msgstr ""
4271
 
4272
+ #: front-end/class-formbuilder.php:347
4273
  msgid "Your profile has been successfully updated!"
4274
  msgstr ""
4275
 
4276
+ #: front-end/class-formbuilder.php:358
4277
  msgid "There was an error in the submitted form"
4278
  msgstr ""
4279
 
4280
+ #: front-end/class-formbuilder.php:415
4281
  msgid "Add User"
4282
  msgstr ""
4283
 
4284
+ #: front-end/class-formbuilder.php:415 front-end/login.php:263
4285
+ msgid "Register"
4286
+ msgstr ""
4287
+
4288
+ #: front-end/class-formbuilder.php:481
4289
  msgid "Send these credentials via email."
4290
  msgstr ""
4291
 
4292
+ #: front-end/class-formbuilder.php:675
4293
  msgid "User to edit:"
4294
  msgstr ""
4295
 
4296
+ #: front-end/class-formbuilder.php:709
4297
+ msgid "Something went wrong. Please try again!"
4298
+ msgstr ""
4299
+
4300
+ #: front-end/default-fields/blog-details/blog-details.php:63
4301
  msgid "Yes, I'd like to create a new site"
4302
  msgstr ""
4303
 
4304
+ #: front-end/default-fields/blog-details/blog-details.php:70
4305
  msgid "Your site url will look like this:<br>"
4306
  msgstr ""
4307
 
4308
+ #: front-end/default-fields/blog-details/blog-details.php:93
4309
  msgid "Site URL slug"
4310
  msgstr ""
4311
 
4312
+ #: front-end/default-fields/blog-details/blog-details.php:116
4313
  msgid "Site Title"
4314
  msgstr ""
4315
 
4316
+ #: front-end/default-fields/blog-details/blog-details.php:138
4317
  msgid ""
4318
  "Privacy: I would like my site to appear in search engines, and in public "
4319
  "listings around this network."
4320
  msgstr ""
4321
 
4322
+ #: front-end/default-fields/email/email.php:47
4323
+ msgid "The email you entered is not a valid email address."
4324
+ msgstr ""
4325
+
4326
+ #: front-end/default-fields/email/email.php:51
4327
  msgid "You must enter a valid email address."
4328
  msgstr ""
4329
 
4330
+ #: front-end/default-fields/email/email.php:60
4331
+ #: front-end/default-fields/email/email.php:67
4332
  msgid "This email is already reserved to be used soon."
4333
  msgstr ""
4334
 
4335
+ #: front-end/default-fields/email/email.php:60
4336
+ #: front-end/default-fields/email/email.php:67
4337
+ #: front-end/default-fields/email/email.php:77
4338
+ #: front-end/default-fields/email/email.php:95
4339
+ #: front-end/default-fields/username/username.php:49
4340
+ #: front-end/default-fields/username/username.php:65
4341
  msgid "Please try a different one!"
4342
  msgstr ""
4343
 
4344
+ #: front-end/default-fields/email/email.php:77
4345
+ #: front-end/default-fields/email/email.php:95
4346
  msgid "This email is already in use."
4347
  msgstr ""
4348
 
4349
+ #: front-end/default-fields/password/password.php:47 front-end/recover.php:266
 
 
 
 
 
 
 
4350
  msgid "The password must have the minimum length of %s characters"
4351
  msgstr ""
4352
 
4353
+ #: front-end/default-fields/password/password.php:51 front-end/recover.php:270
 
 
4354
  msgid "The password must have a minimum strength of %s"
4355
  msgstr ""
4356
 
4357
+ #: front-end/default-fields/password-repeat/password-repeat.php:37
4358
+ #: front-end/default-fields/password-repeat/password-repeat.php:41
4359
+ msgid "The passwords do not match"
4360
+ msgstr ""
4361
+
4362
+ #: front-end/default-fields/recaptcha/recaptcha.php:48
4363
  msgid "To use reCAPTCHA you must get an API key from"
4364
  msgstr ""
4365
 
4366
+ #: front-end/default-fields/recaptcha/recaptcha.php:131
4367
  msgid "For security reasons, you must pass the remote ip to reCAPTCHA!"
4368
  msgstr ""
4369
 
4370
+ #: front-end/default-fields/recaptcha/recaptcha.php:192
4371
  msgid "To use reCAPTCHA you must get an API public key from:"
4372
  msgstr ""
4373
 
4374
+ #: front-end/default-fields/recaptcha/recaptcha.php:421
4375
  msgid "Click the BACK button on your browser, and try again."
4376
  msgstr ""
4377
 
4378
+ #: front-end/default-fields/user-role/user-role.php:92
4379
+ #: front-end/default-fields/user-role/user-role.php:105
4380
  msgid "Only administrators can see this field on edit profile forms."
4381
  msgstr ""
4382
 
4383
+ #: front-end/default-fields/user-role/user-role.php:101
4384
  msgid "As an administrator you cannot change your role."
4385
  msgstr ""
4386
 
4387
+ #: front-end/default-fields/user-role/user-role.php:130
4388
+ #: front-end/default-fields/user-role/user-role.php:154
4389
+ #: front-end/default-fields/user-role/user-role.php:159
4390
  msgid "You cannot register this user role"
4391
  msgstr ""
4392
 
4393
+ #: front-end/default-fields/username/username.php:49
4394
  msgid "This username already exists."
4395
  msgstr ""
4396
 
4397
+ #: front-end/default-fields/username/username.php:52
4398
+ #: front-end/default-fields/username/username.php:60
4399
  msgid "This username is invalid because it uses illegal characters."
4400
  msgstr ""
4401
 
4402
+ #: front-end/default-fields/username/username.php:52
4403
+ #: front-end/default-fields/username/username.php:60
4404
  msgid "Please enter a valid username."
4405
  msgstr ""
4406
 
4407
+ #: front-end/default-fields/username/username.php:65
4408
  msgid "This username is already reserved to be used soon."
4409
  msgstr ""
4410
 
4411
+ #: front-end/extra-fields/avatar/avatar.php:74
4412
+ #: front-end/extra-fields/checkbox/checkbox.php:45
4413
+ #: front-end/extra-fields/colorpicker/colorpicker.php:45
4414
+ #: front-end/extra-fields/datepicker/datepicker.php:40
4415
+ #: front-end/extra-fields/input/input.php:30
4416
+ #: front-end/extra-fields/input-hidden/input-hidden.php:34
4417
+ #: front-end/extra-fields/map/map.php:51
4418
+ #: front-end/extra-fields/number/number.php:30
4419
+ #: front-end/extra-fields/phone/phone.php:39
4420
+ #: front-end/extra-fields/radio/radio.php:44
4421
+ #: front-end/extra-fields/select/select.php:51
4422
+ #: front-end/extra-fields/select-cpt/select-cpt.php:58
4423
+ #: front-end/extra-fields/select-multiple/select-multiple.php:46
4424
+ #: front-end/extra-fields/select-timezone/select-timezone.php:49
4425
+ #: front-end/extra-fields/textarea/textarea.php:30
4426
+ #: front-end/extra-fields/upload/upload.php:70
4427
+ #: front-end/extra-fields/wysiwyg/wysiwyg.php:33
4428
  msgid "required"
4429
  msgstr ""
4430
 
4431
+ #: front-end/extra-fields/extra-fields.php:92 front-end/login.php:150
4432
+ #: front-end/login.php:157 front-end/login.php:171 front-end/recover.php:17
4433
+ #: front-end/recover.php:249
 
 
 
4434
  msgid "ERROR"
4435
  msgstr ""
4436
 
4437
+ #: front-end/extra-fields/map/map.php:46 front-end/extra-fields/map/map.php:69
 
4438
  msgid "Please add the Google Maps API key for this field."
4439
  msgstr ""
4440
 
4441
+ #: front-end/extra-fields/map/map.php:134
4442
  msgid "Something went wrong. Please try again."
4443
  msgstr ""
4444
 
4445
+ #: front-end/extra-fields/number/number.php:69
4446
  msgid "Please enter numbers only"
4447
  msgstr ""
4448
 
4449
+ #: front-end/extra-fields/number/number.php:73
 
4450
  msgid "Value must be a multiplier of %1$s"
4451
  msgstr ""
4452
 
4453
+ #: front-end/extra-fields/number/number.php:77
 
4454
  msgid "Value must be greater than or equal to %1$s"
4455
  msgstr ""
4456
 
4457
+ #: front-end/extra-fields/number/number.php:81
 
4458
  msgid "Value must be less than or equal to %1$s"
4459
  msgstr ""
4460
 
4461
+ #: front-end/extra-fields/phone/phone.php:22
4462
  msgid "Required phone number format: "
4463
  msgstr ""
4464
 
4465
+ #: front-end/extra-fields/select-country/select-country.php:10
4466
  msgid "Bolivia, __( Plurinational State of"
4467
  msgstr ""
4468
 
4469
+ #: front-end/extra-fields/select-country/select-country.php:10
4470
  msgid "Bonaire, __( Sint Eustatius and Saba"
4471
  msgstr ""
4472
 
4473
+ #: front-end/extra-fields/select-country/select-country.php:10
4474
  msgid "Brunei Darussalam"
4475
  msgstr ""
4476
 
4477
+ #: front-end/extra-fields/select-country/select-country.php:10
4478
  msgid "Cabo Verde"
4479
  msgstr ""
4480
 
4481
+ #: front-end/extra-fields/select-country/select-country.php:10
4482
  msgid "Cocos (Keeling) Islands"
4483
  msgstr ""
4484
 
4485
+ #: front-end/extra-fields/select-country/select-country.php:10
4486
  msgid "Congo"
4487
  msgstr ""
4488
 
4489
+ #: front-end/extra-fields/select-country/select-country.php:10
4490
  msgid "Congo, __( the Democratic Republic of the"
4491
  msgstr ""
4492
 
4493
+ #: front-end/extra-fields/select-country/select-country.php:10
4494
  msgid "Cote dIvoire"
4495
  msgstr ""
4496
 
4497
+ #: front-end/extra-fields/select-country/select-country.php:10
4498
  msgid "Falkland Islands (Malvinas)"
4499
  msgstr ""
4500
 
4501
+ #: front-end/extra-fields/select-country/select-country.php:10
4502
  msgid "Holy See (Vatican City State)"
4503
  msgstr ""
4504
 
4505
+ #: front-end/extra-fields/select-country/select-country.php:10
4506
  msgid "Iran, __( Islamic Republic of"
4507
  msgstr ""
4508
 
4509
+ #: front-end/extra-fields/select-country/select-country.php:10
4510
  msgid "Korea, __( Democratic Peoples Republic of"
4511
  msgstr ""
4512
 
4513
+ #: front-end/extra-fields/select-country/select-country.php:10
4514
  msgid "Korea, __( Republic of"
4515
  msgstr ""
4516
 
4517
+ #: front-end/extra-fields/select-country/select-country.php:10
4518
  msgid "Lao Peoples Democratic Republic"
4519
  msgstr ""
4520
 
4521
+ #: front-end/extra-fields/select-country/select-country.php:10
4522
  msgid "Macedonia, __( the former Yugoslav Republic of"
4523
  msgstr ""
4524
 
4525
+ #: front-end/extra-fields/select-country/select-country.php:10
4526
  msgid "Micronesia, __( Federated States of"
4527
  msgstr ""
4528
 
4529
+ #: front-end/extra-fields/select-country/select-country.php:10
4530
  msgid "Moldova, __( Republic of"
4531
  msgstr ""
4532
 
4533
+ #: front-end/extra-fields/select-country/select-country.php:10
4534
  msgid "Palestine, __( State of"
4535
  msgstr ""
4536
 
4537
+ #: front-end/extra-fields/select-country/select-country.php:10
4538
  msgid "Russian Federation"
4539
  msgstr ""
4540
 
4541
+ #: front-end/extra-fields/select-country/select-country.php:10
4542
  msgid "Saint Helena, __( Ascension and Tristan da Cunha"
4543
  msgstr ""
4544
 
4545
+ #: front-end/extra-fields/select-country/select-country.php:10
4546
  msgid "Saint Martin (French part)"
4547
  msgstr ""
4548
 
4549
+ #: front-end/extra-fields/select-country/select-country.php:10
4550
  msgid "Sint Maarten (Dutch part)"
4551
  msgstr ""
4552
 
4553
+ #: front-end/extra-fields/select-country/select-country.php:10
4554
  msgid "Syrian Arab Republic"
4555
  msgstr ""
4556
 
4557
+ #: front-end/extra-fields/select-country/select-country.php:10
4558
  msgid "Taiwan, __( Province of China"
4559
  msgstr ""
4560
 
4561
+ #: front-end/extra-fields/select-country/select-country.php:10
4562
  msgid "Tanzania, __( United Republic of"
4563
  msgstr ""
4564
 
4565
+ #: front-end/extra-fields/select-country/select-country.php:10
4566
  msgid "Timor-Leste"
4567
  msgstr ""
4568
 
4569
+ #: front-end/extra-fields/select-country/select-country.php:10
4570
  msgid "Venezuela, __( Bolivarian Republic of"
4571
  msgstr ""
4572
 
4573
+ #: front-end/extra-fields/select-country/select-country.php:10
4574
  msgid "Viet Nam"
4575
  msgstr ""
4576
 
4577
+ #: front-end/extra-fields/select-country/select-country.php:10
4578
  msgid "Virgin Islands, __( British"
4579
  msgstr ""
4580
 
4581
+ #: front-end/extra-fields/select-country/select-country.php:10
4582
  msgid "Virgin Islands, __( U.S."
4583
  msgstr ""
4584
 
4585
+ #: front-end/extra-fields/upload/upload.php:122
4586
+ msgid "Select File"
4587
+ msgstr ""
4588
+
4589
+ #: front-end/extra-fields/upload/upload_helper_functions.php:78
4590
+ #: front-end/extra-fields/upload/upload_helper_functions.php:87
4591
  msgid "Sorry, you cannot upload this file type for this field."
4592
  msgstr ""
4593
 
4594
+ #: front-end/extra-fields/upload/upload_helper_functions.php:94
4595
  msgid "An error occurred, please try again later."
4596
  msgstr ""
4597
 
4598
+ #: front-end/login.php:150
4599
  msgid "The password you entered is incorrect."
4600
  msgstr ""
4601
 
4602
+ #: front-end/login.php:151 front-end/login.php:158
 
4603
  msgid "Password Lost and Found."
4604
  msgstr ""
4605
 
4606
+ #: front-end/login.php:151 front-end/login.php:158
 
4607
  msgid "Lost your password"
4608
  msgstr ""
4609
 
4610
+ #: front-end/login.php:157
4611
  msgid "Invalid username."
4612
  msgstr ""
4613
 
4614
+ #: front-end/login.php:162 front-end/login.php:166
 
4615
  msgid "username"
4616
  msgstr ""
4617
 
4618
+ #: front-end/login.php:162
4619
  msgid "email"
4620
  msgstr ""
4621
 
4622
+ #: front-end/login.php:166
4623
  msgid "username or email"
4624
  msgstr ""
4625
 
4626
+ #: front-end/login.php:171
4627
  msgid "Both fields are empty."
4628
  msgstr ""
4629
 
4630
+ #: front-end/login.php:235
4631
  msgid "Username or Email"
4632
  msgstr ""
4633
 
4634
+ #: front-end/login.php:269
4635
  msgid "Lost your password?"
4636
  msgstr ""
4637
 
4638
+ #: front-end/login.php:308 front-end/logout.php:25
 
4639
  msgid "Log out of this account"
4640
  msgstr ""
4641
 
4642
+ #: front-end/login.php:308
4643
  msgid "Log out"
4644
  msgstr ""
4645
 
4646
+ #: front-end/login.php:309
 
4647
  msgid "You are currently logged in as %1$s. %2$s"
4648
  msgstr ""
4649
 
4650
+ #: front-end/logout.php:15
 
4651
  msgid "You are currently logged in as %s. "
4652
  msgstr ""
4653
 
4654
+ #: front-end/logout.php:15
4655
  msgid "Log out &raquo;"
4656
  msgstr ""
4657
 
4658
+ #: front-end/recover.php:17
4659
  msgid ""
4660
  "Your account has to be confirmed by an administrator before you can use the "
4661
  "\"Password Reset\" feature."
4662
  msgstr ""
4663
 
4664
+ #: front-end/recover.php:95
4665
  msgid "Reset Password"
4666
  msgstr ""
4667
 
4668
+ #: front-end/recover.php:118
4669
  msgid "Please enter your email address."
4670
  msgstr ""
4671
 
4672
+ #: front-end/recover.php:122
4673
  msgid "Please enter your username or email address."
4674
  msgstr ""
4675
 
4676
+ #: front-end/recover.php:123
4677
  msgid "Username or E-mail"
4678
  msgstr ""
4679
 
4680
+ #: front-end/recover.php:126
4681
  msgid "You will receive a link to create a new password via email."
4682
  msgstr ""
4683
 
4684
+ #: front-end/recover.php:139
4685
  msgid "Get New Password"
4686
  msgstr ""
4687
 
4688
+ #: front-end/recover.php:160
4689
  msgid ""
4690
  "You are already logged in. You can change your password on the edit profile "
4691
  "form."
4692
  msgstr ""
4693
 
4694
+ #: front-end/recover.php:186
4695
  msgid "The username entered wasn't found in the database!"
4696
  msgstr ""
4697
 
4698
+ #: front-end/recover.php:186
4699
  msgid "Please check that you entered the correct username."
4700
  msgstr ""
4701
 
4702
+ #: front-end/recover.php:201
4703
  msgid "Check your e-mail for the confirmation link."
4704
  msgstr ""
4705
 
4706
+ #: front-end/recover.php:208
4707
  msgid "The email address entered wasn't found in the database!"
4708
  msgstr ""
4709
 
4710
+ #: front-end/recover.php:208
4711
  msgid "Please check that you entered the correct email address."
4712
  msgstr ""
4713
 
4714
+ #: front-end/recover.php:236
 
4715
  msgid ""
4716
  "Someone requested that the password be reset for the following account: <b>"
4717
  "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
4718
  "happen.<br/>To reset your password, visit the following link:%2$s"
4719
  msgstr ""
4720
 
4721
+ #: front-end/recover.php:239
 
4722
  msgid "Password Reset from \"%1$s\""
4723
  msgstr ""
4724
 
4725
+ #: front-end/recover.php:249
 
4726
  msgid "There was an error while trying to send the activation link to %1$s!"
4727
  msgstr ""
4728
 
4729
+ #: front-end/recover.php:277
4730
  msgid "Your password has been successfully changed!"
4731
  msgstr ""
4732
 
4733
+ #: front-end/recover.php:296
4734
+ msgid "You have successfully reset your password."
 
4735
  msgstr ""
4736
 
4737
+ #: front-end/recover.php:299 front-end/recover.php:313
 
 
4738
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
4739
  msgstr ""
4740
 
4741
+ #: front-end/recover.php:310
 
4742
  msgid ""
4743
  "%1$s has requested a password change via the password reset feature.<br/>His/"
4744
  "her new password is:%2$s"
4745
  msgstr ""
4746
 
4747
+ #: front-end/recover.php:329
4748
  msgid "The entered passwords don't match!"
4749
  msgstr ""
4750
 
4751
+ #: front-end/recover.php:384
4752
  msgid "ERROR:"
4753
  msgstr ""
4754
 
4755
+ #: front-end/recover.php:384
4756
  msgid "Invalid key!"
4757
  msgstr ""
4758
 
4759
+ #: front-end/register.php:56
4760
  msgid "Invalid activation key!"
4761
  msgstr ""
4762
 
4763
+ #: front-end/register.php:60
4764
  msgid "This username is now active!"
4765
  msgstr ""
4766
 
4767
+ #: front-end/register.php:74
4768
  msgid "This username is already activated!"
4769
  msgstr ""
4770
 
4771
+ #: front-end/register.php:124
4772
  msgid "Your email was successfully confirmed."
4773
  msgstr ""
4774
 
4775
+ #: front-end/register.php:153
4776
  msgid "There was an error while trying to activate the user."
4777
  msgstr ""
4778
 
4779
+ #: modules/custom-redirects/custom_redirects_admin.php:45
 
 
 
 
 
 
4780
  msgid "After Login"
4781
  msgstr ""
4782
 
4783
+ #: modules/custom-redirects/custom_redirects_admin.php:46
4784
  msgid "After Logout"
4785
  msgstr ""
4786
 
4787
+ #: modules/custom-redirects/custom_redirects_admin.php:47
4788
  msgid "After Registration"
4789
  msgstr ""
4790
 
4791
+ #: modules/custom-redirects/custom_redirects_admin.php:48
4792
  msgid "After Edit Profile"
4793
  msgstr ""
4794
 
4795
+ #: modules/custom-redirects/custom_redirects_admin.php:49
4796
  msgid "After Successful Email Confirmation"
4797
  msgstr ""
4798
 
4799
+ #: modules/custom-redirects/custom_redirects_admin.php:50
4800
  msgid "After Successful Password Reset"
4801
  msgstr ""
4802
 
4803
+ #: modules/custom-redirects/custom_redirects_admin.php:51
4804
  msgid "Dashboard (redirect users from accessing the dashboard)"
4805
  msgstr ""
4806
 
4807
+ #: modules/custom-redirects/custom_redirects_admin.php:55
4808
  msgid "User ID"
4809
  msgstr ""
4810
 
4811
+ #: modules/custom-redirects/custom_redirects_admin.php:61
4812
  msgid "User ID or Username"
4813
  msgstr ""
4814
 
4815
+ #: modules/custom-redirects/custom_redirects_admin.php:62
4816
  msgid "User ID / Username"
4817
  msgstr ""
4818
 
4819
+ #: modules/custom-redirects/custom_redirects_admin.php:62
4820
  msgid "Please select and enter the ID or username of your user."
4821
  msgstr ""
4822
 
4823
+ #: modules/custom-redirects/custom_redirects_admin.php:63
4824
+ #: modules/custom-redirects/custom_redirects_admin.php:93
4825
+ #: modules/custom-redirects/custom_redirects_admin.php:112
4826
+ #: modules/custom-redirects/custom_redirects_admin.php:131
4827
  msgid "Redirect Type"
4828
  msgstr ""
4829
 
4830
+ #: modules/custom-redirects/custom_redirects_admin.php:64
4831
+ #: modules/custom-redirects/custom_redirects_admin.php:94
4832
+ #: modules/custom-redirects/custom_redirects_admin.php:113
4833
+ #: modules/custom-redirects/custom_redirects_admin.php:138
 
 
 
 
 
 
 
4834
  msgid ""
4835
  "Can contain the following dynamic tags:{{homeurl}}, {{siteurl}}, "
4836
  "{{user_id}}, {{user_nicename}}, {{http_referer}}"
4837
  msgstr ""
4838
 
4839
+ #: modules/custom-redirects/custom_redirects_admin.php:71
4840
+ #: modules/custom-redirects/custom_redirects_admin.php:241
4841
  msgid "Individual User Redirects"
4842
  msgstr ""
4843
 
4844
+ #: modules/custom-redirects/custom_redirects_admin.php:84
4845
  msgid "... Choose"
4846
  msgstr ""
4847
 
4848
+ #: modules/custom-redirects/custom_redirects_admin.php:92
4849
+ #: modules/email-customizer/email-customizer.php:31
4850
  msgid "User Role"
4851
  msgstr ""
4852
 
4853
+ #: modules/custom-redirects/custom_redirects_admin.php:92
4854
  msgid "Select a user role."
4855
  msgstr ""
4856
 
4857
+ #: modules/custom-redirects/custom_redirects_admin.php:101
4858
+ #: modules/custom-redirects/custom_redirects_admin.php:242
4859
  msgid "User Role based Redirects"
4860
  msgstr ""
4861
 
4862
+ #: modules/custom-redirects/custom_redirects_admin.php:120
4863
+ #: modules/custom-redirects/custom_redirects_admin.php:243
4864
  msgid "Global Redirects"
4865
  msgstr ""
4866
 
4867
+ #: modules/custom-redirects/custom_redirects_admin.php:133
4868
  msgid "Login ( wp_login.php )"
4869
  msgstr ""
4870
 
4871
+ #: modules/custom-redirects/custom_redirects_admin.php:134
4872
  msgid "Register ( wp-login.php?action=register )"
4873
  msgstr ""
4874
 
4875
+ #: modules/custom-redirects/custom_redirects_admin.php:135
4876
  msgid "Lost Password ( wp-login.php?action=lostpassword )"
4877
  msgstr ""
4878
 
4879
+ #: modules/custom-redirects/custom_redirects_admin.php:136
4880
  msgid "Author Archive ( http://sitename.com/author/admin )"
4881
  msgstr ""
4882
 
4883
+ #: modules/custom-redirects/custom_redirects_admin.php:145
4884
  msgid "Redirect Default WordPress Forms and Pages"
4885
  msgstr ""
4886
 
4887
+ #: modules/custom-redirects/custom_redirects_admin.php:157
4888
  msgid "How does this work?"
4889
  msgstr ""
4890
 
4891
+ #: modules/custom-redirects/custom_redirects_admin.php:179
4892
  msgid "<pre>User ID / Username</pre><pre>Redirect</pre><pre>URL</pre>"
4893
  msgstr ""
4894
 
4895
+ #: modules/custom-redirects/custom_redirects_admin.php:193
4896
  msgid "<pre>User Role</pre><pre>Redirect</pre><pre>URL</pre>"
4897
  msgstr ""
4898
 
4899
+ #: modules/custom-redirects/custom_redirects_admin.php:207
4900
+ #: modules/custom-redirects/custom_redirects_admin.php:221
4901
  msgid "<pre>Redirect</pre><pre>URL</pre>"
4902
  msgstr ""
4903
 
4904
+ #: modules/custom-redirects/custom_redirects_admin.php:236
4905
  msgid ""
4906
  "These redirects happen after a successful action, like registration or after "
4907
  "a successful login."
4908
  msgstr ""
4909
 
4910
+ #: modules/custom-redirects/custom_redirects_admin.php:238
4911
  msgid "Which redirect happens depends on the following priority:"
4912
  msgstr ""
4913
 
4914
+ #: modules/custom-redirects/custom_redirects_admin.php:240
4915
  msgid "Multiple Registration and Edit Profile form settings Redirects"
4916
  msgstr ""
4917
 
4918
+ #: modules/custom-redirects/custom_redirects_admin.php:244
4919
  msgid ""
4920
  "Individual redirects defined in shortcodes; <strong><em>redirect_priority="
4921
  "\"top\"</em></strong> parameter can be added in any shortcode, then that "
4922
  "shortcode redirect will have priority over all other redirects."
4923
  msgstr ""
4924
 
4925
+ #: modules/custom-redirects/custom_redirects_admin.php:247
4926
  msgid "Redirect Default WordPress forms and pages"
4927
  msgstr ""
4928
 
4929
+ #: modules/custom-redirects/custom_redirects_admin.php:248
4930
  msgid ""
4931
  "With these you can redirect various WordPress forms and pages to pages "
4932
  "created with profile builder."
4933
  msgstr ""
4934
 
4935
+ #: modules/custom-redirects/custom_redirects_admin.php:250
4936
  msgid "Available tags for dynamic URLs"
4937
  msgstr ""
4938
 
4939
+ #: modules/custom-redirects/custom_redirects_admin.php:251
4940
  msgid ""
4941
  "You use the following tags in your URLs to redirect users to various pages."
4942
  msgstr ""
4943
 
4944
+ #: modules/custom-redirects/custom_redirects_admin.php:253
4945
  msgid "generates a url of the current website homepage."
4946
  msgstr ""
4947
 
4948
+ #: modules/custom-redirects/custom_redirects_admin.php:254
4949
  msgid ""
4950
  "in WordPress the <a target='_blank' href='https://codex.wordpress.org/"
4951
  "Function_Reference/site_url'>site url</a> can be different then the home url"
4952
  msgstr ""
4953
 
4954
+ #: modules/custom-redirects/custom_redirects_admin.php:255
4955
  msgid "the ID of the user"
4956
  msgstr ""
4957
 
4958
+ #: modules/custom-redirects/custom_redirects_admin.php:256
4959
  msgid ""
4960
  "the URL sanitized version of the username, the user nicename can be safely "
4961
  "used in URLs since it can't contain special characters or spaces."
4962
  msgstr ""
4963
 
4964
+ #: modules/custom-redirects/custom_redirects_admin.php:257
4965
  msgid "the URL of the previously visited page"
4966
  msgstr ""
4967
 
4968
+ #: modules/custom-redirects/custom_redirects_admin.php:340
4969
+ #: modules/custom-redirects/custom_redirects_admin.php:346
4970
+ #: modules/custom-redirects/custom_redirects_admin.php:352
4971
  msgid "You can't add duplicate redirects!"
4972
  msgstr ""
4973
 
4974
+ #: modules/email-customizer/admin-email-customizer.php:11
4975
+ #: modules/email-customizer/admin-email-customizer.php:12
4976
+ #: modules/modules.php:96
4977
  msgid "Admin Email Customizer"
4978
  msgstr ""
4979
 
4980
+ #: modules/email-customizer/admin-email-customizer.php:38
4981
  msgid ""
4982
  "These settings are also replicated in the \"User Email Customizer\" settings-"
4983
  "page upon save."
4984
  msgstr ""
4985
 
4986
+ #: modules/email-customizer/admin-email-customizer.php:38
4987
+ #: modules/email-customizer/user-email-customizer.php:38
4988
  msgid "Valid tags {{reply_to}} and {{site_name}}"
4989
  msgstr ""
4990
 
4991
+ #: modules/email-customizer/admin-email-customizer.php:41
4992
+ #: modules/email-customizer/user-email-customizer.php:41
4993
  msgid "From (name)"
4994
  msgstr ""
4995
 
4996
+ #: modules/email-customizer/admin-email-customizer.php:49
4997
+ #: modules/email-customizer/user-email-customizer.php:49
4998
  msgid "From (reply-to email)"
4999
  msgstr ""
5000
 
5001
+ #: modules/email-customizer/admin-email-customizer.php:54
5002
+ #: modules/email-customizer/user-email-customizer.php:54
5003
  msgid ""
5004
  "Must be a valid email address or the tag {{reply_to}} which defaults to the "
5005
  "administrator email"
5006
  msgstr ""
5007
 
5008
+ #: modules/email-customizer/admin-email-customizer.php:57
5009
+ #: modules/email-customizer/user-email-customizer.php:57
5010
  msgid "Common Settings"
5011
  msgstr ""
5012
 
5013
+ #: modules/email-customizer/admin-email-customizer.php:60
5014
  msgid ""
5015
  "\n"
5016
  "<p>New subscriber on {{site_name}}.</p>\n"
5018
  "<p>E-mail:{{user_email}}</p>\n"
5019
  msgstr ""
5020
 
5021
+ #: modules/email-customizer/admin-email-customizer.php:69
5022
+ #: modules/email-customizer/admin-email-customizer.php:99
5023
+ #: modules/email-customizer/admin-email-customizer.php:126
5024
+ #: modules/email-customizer/user-email-customizer.php:71
5025
+ #: modules/email-customizer/user-email-customizer.php:99
5026
+ #: modules/email-customizer/user-email-customizer.php:128
5027
+ #: modules/email-customizer/user-email-customizer.php:155
5028
+ #: modules/email-customizer/user-email-customizer.php:183
5029
+ #: modules/email-customizer/user-email-customizer.php:214
5030
+ #: modules/email-customizer/user-email-customizer.php:241
5031
+ #: modules/email-customizer/user-email-customizer.php:274
5032
  msgid "Email Subject"
5033
  msgstr ""
5034
 
5035
+ #: modules/email-customizer/admin-email-customizer.php:84
5036
  msgid "Default Registration & Registration with Email Confirmation"
5037
  msgstr ""
5038
 
5039
+ #: modules/email-customizer/admin-email-customizer.php:87
5040
  msgid ""
5041
  "\n"
5042
  "<p>New subscriber on {{site_name}}.</p>\n"
5047
  "in!</p>\n"
5048
  msgstr ""
5049
 
5050
+ #: modules/email-customizer/admin-email-customizer.php:114
5051
+ #: modules/email-customizer/user-email-customizer.php:143
5052
  msgid "Registration with Admin Approval"
5053
  msgstr ""
5054
 
5055
+ #: modules/email-customizer/admin-email-customizer.php:117
5056
  msgid ""
5057
  "\n"
5058
  "<p>{{username}} has requested a password change via the password reset "
5060
  "<p>His/her new password is: {{password}}</p>\n"
5061
  msgstr ""
5062
 
5063
+ #: modules/email-customizer/admin-email-customizer.php:141
5064
  msgid "Admin Notification for User Password Reset"
5065
  msgstr ""
5066
 
5067
+ #: modules/email-customizer/email-customizer.php:7
5068
  msgid "Available Tags"
5069
  msgstr ""
5070
 
5071
+ #: modules/email-customizer/email-customizer.php:11
5072
+ #: modules/user-listing/userlisting.php:212
5073
  msgid "User Fields Tags"
5074
  msgstr ""
5075
 
5076
+ #: modules/email-customizer/email-customizer.php:21
5077
  msgid "Site Url"
5078
  msgstr ""
5079
 
5080
+ #: modules/email-customizer/email-customizer.php:22
5081
  msgid "Site Name"
5082
  msgstr ""
5083
 
5084
+ #: modules/email-customizer/email-customizer.php:25
5085
+ #: modules/user-listing/userlisting.php:169
5086
  msgid "User Id"
5087
  msgstr ""
5088
 
5089
+ #: modules/email-customizer/email-customizer.php:32
5090
+ msgid "User Role Label"
5091
+ msgstr ""
5092
+
5093
+ #: modules/email-customizer/email-customizer.php:34
5094
  msgid "Reply To"
5095
  msgstr ""
5096
 
5097
+ #: modules/email-customizer/email-customizer.php:37
5098
+ #: modules/user-listing/userlisting.php:127
5099
  msgid "Blog URL"
5100
  msgstr ""
5101
 
5102
+ #: modules/email-customizer/email-customizer.php:41
5103
  msgid "Activation Key"
5104
  msgstr ""
5105
 
5106
+ #: modules/email-customizer/email-customizer.php:42
5107
  msgid "Activation Url"
5108
  msgstr ""
5109
 
5110
+ #: modules/email-customizer/email-customizer.php:43
5111
  msgid "Activation Link"
5112
  msgstr ""
5113
 
5114
+ #: modules/email-customizer/email-customizer.php:47
5115
  msgid "Reset Key"
5116
  msgstr ""
5117
 
5118
+ #: modules/email-customizer/email-customizer.php:48
5119
  msgid "Reset Url"
5120
  msgstr ""
5121
 
5122
+ #: modules/email-customizer/email-customizer.php:49
5123
  msgid "Reset Link"
5124
  msgstr ""
5125
 
5126
+ #: modules/email-customizer/email-customizer.php:480
5127
  msgid "The users selected password at signup"
5128
  msgstr ""
5129
 
5130
+ #: modules/email-customizer/user-email-customizer.php:11
5131
+ #: modules/email-customizer/user-email-customizer.php:12
5132
+ #: modules/modules.php:103
5133
  msgid "User Email Customizer"
5134
  msgstr ""
5135
 
5136
+ #: modules/email-customizer/user-email-customizer.php:38
5137
  msgid ""
5138
  "These settings are also replicated in the \"Admin Email Customizer\" "
5139
  "settings-page upon save."
5140
  msgstr ""
5141
 
5142
+ #: modules/email-customizer/user-email-customizer.php:64
5143
  msgid ""
5144
  "\n"
5145
  "<h3>Welcome to {{site_name}}!</h3>\n"
5146
  "<p>Your username is:{{username}} and password:{{password}}</p>\n"
5147
  msgstr ""
5148
 
5149
+ #: modules/email-customizer/user-email-customizer.php:85
5150
  msgid "Default Registration"
5151
  msgstr ""
5152
 
5153
+ #: modules/email-customizer/user-email-customizer.php:91
5154
  msgid ""
5155
  "\n"
5156
  "<p>To activate your user, please click the following link:<br/>\n"
5159
  "</p>\n"
5160
  msgstr ""
5161
 
5162
+ #: modules/email-customizer/user-email-customizer.php:103
5163
  msgid "[{{site_name}}] Activate {{username}}"
5164
  msgstr ""
5165
 
5166
+ #: modules/email-customizer/user-email-customizer.php:114
5167
  msgid "Registration with Email Confirmation"
5168
  msgstr ""
5169
 
5170
+ #: modules/email-customizer/user-email-customizer.php:120
5171
  msgid ""
5172
  "\n"
5173
  "<h3>Welcome to {{site_name}}!</h3>\n"
5176
  "You will be notified via email.</p>\n"
5177
  msgstr ""
5178
 
5179
+ #: modules/email-customizer/user-email-customizer.php:132
5180
  msgid "A new account has been created for you on {{site_name}}"
5181
  msgstr ""
5182
 
5183
+ #: modules/email-customizer/user-email-customizer.php:148
5184
  msgid ""
5185
  "\n"
5186
  "<h3>Good News!</h3>\n"
5188
  "{{site_name}}.</p>\n"
5189
  msgstr ""
5190
 
5191
+ #: modules/email-customizer/user-email-customizer.php:159
5192
  msgid "Your account on {{site_name}} has been approved!"
5193
  msgstr ""
5194
 
5195
+ #: modules/email-customizer/user-email-customizer.php:170
5196
  msgid "User Approval Notification"
5197
  msgstr ""
5198
 
5199
+ #: modules/email-customizer/user-email-customizer.php:175
5200
  msgid ""
5201
  "\n"
5202
  "<h3>Hello,</h3>\n"
5204
  "{{username}} on {{site_name}}.</p>\n"
5205
  msgstr ""
5206
 
5207
+ #: modules/email-customizer/user-email-customizer.php:187
5208
  msgid "Your account on {{site_name}} has been unapproved!"
5209
  msgstr ""
5210
 
5211
+ #: modules/email-customizer/user-email-customizer.php:198
5212
  msgid "Unapproved User Notification"
5213
  msgstr ""
5214
 
5215
+ #: modules/email-customizer/user-email-customizer.php:204
5216
  msgid ""
5217
  "\n"
5218
  "<p>Someone requested that the password be reset for the following account: "
5224
  "{{{reset_link}}}</p>\n"
5225
  msgstr ""
5226
 
5227
+ #: modules/email-customizer/user-email-customizer.php:218
5228
  msgid "[{{site_name}}] Password Reset"
5229
  msgstr ""
5230
 
5231
+ #: modules/email-customizer/user-email-customizer.php:229
5232
  msgid "Password Reset Email"
5233
  msgstr ""
5234
 
5235
+ #: modules/email-customizer/user-email-customizer.php:235
5236
  msgid ""
5237
  "\n"
5238
+ "<p>You have successfully reset your password.</p>\n"
5239
  msgstr ""
5240
 
5241
+ #: modules/email-customizer/user-email-customizer.php:245
5242
  msgid "[{{site_name}}] Password Reset Successfully"
5243
  msgstr ""
5244
 
5245
+ #: modules/email-customizer/user-email-customizer.php:256
5246
  msgid "Password Reset Success Email"
5247
  msgstr ""
5248
 
5249
+ #: modules/email-customizer/user-email-customizer.php:278
5250
  msgid "[{{site_name}}] Notice of Email Change"
5251
  msgstr ""
5252
 
5253
+ #: modules/email-customizer/user-email-customizer.php:289
5254
  msgid "Changed Email Address Notification"
5255
  msgstr ""
5256
 
5257
+ #: modules/modules.php:11 modules/modules.php:58
 
5258
  msgid "Modules"
5259
  msgstr ""
5260
 
5261
+ #: modules/modules.php:59
5262
  msgid ""
5263
  "Here you can activate / deactivate available modules for Profile Builder."
5264
  msgstr ""
5265
 
5266
+ #: modules/modules.php:69
5267
  msgid "Name/Description"
5268
  msgstr ""
5269
 
5270
+ #: modules/modules.php:70
5271
  msgid "Status"
5272
  msgstr ""
5273
 
5274
+ #: modules/modules.php:77 modules/modules.php:84 modules/modules.php:91
5275
+ #: modules/modules.php:98 modules/modules.php:105 modules/modules.php:112
5276
+ #: modules/modules.php:119
 
 
 
 
5277
  msgid "Active"
5278
  msgstr ""
5279
 
5280
+ #: modules/modules.php:78 modules/modules.php:85 modules/modules.php:92
5281
+ #: modules/modules.php:99 modules/modules.php:106 modules/modules.php:113
5282
+ #: modules/modules.php:120
 
 
 
 
5283
  msgid "Inactive"
5284
  msgstr ""
5285
 
5286
+ #: modules/multiple-forms/edit-profile-forms.php:11
5287
+ #: modules/multiple-forms/edit-profile-forms.php:12
5288
  msgid "Edit-profile Form"
5289
  msgstr ""
5290
 
5291
+ #: modules/multiple-forms/edit-profile-forms.php:13
5292
+ #: modules/multiple-forms/register-forms.php:13
5293
+ #: modules/user-listing/userlisting.php:13
5294
  msgid "Add New"
5295
  msgstr ""
5296
 
5297
+ #: modules/multiple-forms/edit-profile-forms.php:14
5298
  msgid "Add new Edit-profile Form"
5299
  msgstr ""
5300
 
5301
+ #: modules/multiple-forms/edit-profile-forms.php:15
5302
  msgid "Edit the Edit-profile Forms"
5303
  msgstr ""
5304
 
5305
+ #: modules/multiple-forms/edit-profile-forms.php:16
5306
  msgid "New Edit-profile Form"
5307
  msgstr ""
5308
 
5309
+ #: modules/multiple-forms/edit-profile-forms.php:17
5310
+ #: modules/multiple-forms/edit-profile-forms.php:23
5311
  msgid "Edit-profile Forms"
5312
  msgstr ""
5313
 
5314
+ #: modules/multiple-forms/edit-profile-forms.php:18
5315
  msgid "View the Edit-profile Form"
5316
  msgstr ""
5317
 
5318
+ #: modules/multiple-forms/edit-profile-forms.php:19
5319
  msgid "Search the Edit-profile Forms"
5320
  msgstr ""
5321
 
5322
+ #: modules/multiple-forms/edit-profile-forms.php:20
5323
  msgid "No Edit-profile Form found"
5324
  msgstr ""
5325
 
5326
+ #: modules/multiple-forms/edit-profile-forms.php:21
5327
  msgid "No Edit-profile Forms found in trash"
5328
  msgstr ""
5329
 
5330
+ #: modules/multiple-forms/edit-profile-forms.php:135
5331
+ #: modules/multiple-forms/register-forms.php:138
5332
+ #: modules/user-listing/userlisting.php:2160
5333
  msgid "Shortcode"
5334
  msgstr ""
5335
 
5336
+ #: modules/multiple-forms/edit-profile-forms.php:155
5337
+ #: modules/multiple-forms/register-forms.php:159
5338
+ #: modules/user-listing/userlisting.php:2181
5339
  msgid "(no title)"
5340
  msgstr ""
5341
 
5342
+ #: modules/multiple-forms/edit-profile-forms.php:175
5343
+ #: modules/multiple-forms/register-forms.php:178
5344
+ #: modules/user-listing/userlisting.php:2201
5345
  msgid "The shortcode will be available after you publish this form."
5346
  msgstr ""
5347
 
5348
+ #: modules/multiple-forms/edit-profile-forms.php:177
5349
+ #: modules/multiple-forms/register-forms.php:180
5350
+ #: modules/user-listing/userlisting.php:2203
5351
  msgid "Use this shortcode on the page you want the form to be displayed:"
5352
  msgstr ""
5353
 
5354
+ #: modules/multiple-forms/edit-profile-forms.php:181
5355
+ #: modules/multiple-forms/register-forms.php:184
5356
+ #: modules/user-listing/userlisting.php:2207
5357
  msgid ""
5358
  "<span style=\"color:red;\">Note:</span> changing the form title also changes "
5359
  "the shortcode!"
5360
  msgstr ""
5361
 
5362
+ #: modules/multiple-forms/edit-profile-forms.php:187
5363
+ #: modules/multiple-forms/register-forms.php:190
5364
+ #: modules/user-listing/userlisting.php:2240
5365
  msgid "Form Shortcode"
5366
  msgstr ""
5367
 
5368
+ #: modules/multiple-forms/edit-profile-forms.php:206
5369
+ #: modules/multiple-forms/register-forms.php:230
 
 
 
 
 
5370
  msgid "Whether to redirect the user to a specific page or not"
5371
  msgstr ""
5372
 
5373
+ #: modules/multiple-forms/edit-profile-forms.php:207
5374
+ #: modules/multiple-forms/register-forms.php:231
5375
  msgid "Display Messages"
5376
  msgstr ""
5377
 
5378
+ #: modules/multiple-forms/edit-profile-forms.php:207
5379
+ #: modules/multiple-forms/register-forms.php:231
5380
  msgid "Allowed time to display any success messages (in seconds)"
5381
  msgstr ""
5382
 
5383
+ #: modules/multiple-forms/edit-profile-forms.php:208
5384
+ #: modules/multiple-forms/register-forms.php:232
5385
  msgid "URL"
5386
  msgstr ""
5387
 
5388
+ #: modules/multiple-forms/edit-profile-forms.php:208
5389
  msgid ""
5390
  "Specify the URL of the page users will be redirected once they updated their "
5391
  "profile using this form<br/>Use the following format: http://www.mysite.com"
5392
  msgstr ""
5393
 
5394
+ #: modules/multiple-forms/edit-profile-forms.php:215
5395
  msgid "After Profile Update..."
5396
  msgstr ""
5397
 
5398
+ #: modules/multiple-forms/edit-profile-forms.php:241
5399
+ #: modules/multiple-forms/register-forms.php:262
5400
  msgid "Add New Field to the List"
5401
  msgstr ""
5402
 
5403
+ #: modules/multiple-forms/edit-profile-forms.php:274
 
 
 
 
 
5404
  msgid "This form is empty."
5405
  msgstr ""
5406
 
5407
+ #: modules/multiple-forms/multiple-forms.php:222
5408
  msgid "You need to specify the title of the form before creating it"
5409
  msgstr ""
5410
 
5411
+ #: modules/multiple-forms/multiple-forms.php:406
5412
  msgid "<pre>Title (Type)</pre>"
5413
  msgstr ""
5414
 
5415
+ #: modules/multiple-forms/multiple-forms.php:406
5416
  msgid "Delete all items"
5417
  msgstr ""
5418
 
5419
+ #: modules/multiple-forms/multiple-forms.php:406
5420
  msgid "Delete all"
5421
  msgstr ""
5422
 
5423
+ #: modules/multiple-forms/register-forms.php:11
5424
+ #: modules/multiple-forms/register-forms.php:12
5425
  msgid "Registration Form"
5426
  msgstr ""
5427
 
5428
+ #: modules/multiple-forms/register-forms.php:14
5429
  msgid "Add new Registration Form"
5430
  msgstr ""
5431
 
5432
+ #: modules/multiple-forms/register-forms.php:15
5433
  msgid "Edit the Registration Forms"
5434
  msgstr ""
5435
 
5436
+ #: modules/multiple-forms/register-forms.php:16
5437
  msgid "New Registration Form"
5438
  msgstr ""
5439
 
5440
+ #: modules/multiple-forms/register-forms.php:17
5441
+ #: modules/multiple-forms/register-forms.php:23
5442
  msgid "Registration Forms"
5443
  msgstr ""
5444
 
5445
+ #: modules/multiple-forms/register-forms.php:18
5446
  msgid "View the Registration Form"
5447
  msgstr ""
5448
 
5449
+ #: modules/multiple-forms/register-forms.php:19
5450
  msgid "Search the Registration Forms"
5451
  msgstr ""
5452
 
5453
+ #: modules/multiple-forms/register-forms.php:20
5454
  msgid "No Registration Form found"
5455
  msgstr ""
5456
 
5457
+ #: modules/multiple-forms/register-forms.php:21
5458
  msgid "No Registration Forms found in trash"
5459
  msgstr ""
5460
 
5461
+ #: modules/multiple-forms/register-forms.php:228
 
 
 
 
5462
  msgid "Set Role"
5463
  msgstr ""
5464
 
5465
+ #: modules/multiple-forms/register-forms.php:228
5466
  msgid ""
5467
  "Choose what role the user will have after (s)he registered<br/>If not "
5468
  "specified, defaults to the role set in the WordPress settings"
5469
  msgstr ""
5470
 
5471
+ #: modules/multiple-forms/register-forms.php:229
5472
  msgid "Automatically Log In"
5473
  msgstr ""
5474
 
5475
+ #: modules/multiple-forms/register-forms.php:229
5476
  msgid ""
5477
  "Whether to automatically log in the newly registered user or not<br/>Only "
5478
  "works on single-sites without \"Admin Approval\" and \"Email Confirmation\" "
5480
  "automatic login not work"
5481
  msgstr ""
5482
 
5483
+ #: modules/multiple-forms/register-forms.php:232
5484
  msgid ""
5485
  "Specify the URL of the page users will be redirected once registered using "
5486
  "this form<br/>Use the following format: http://www.mysite.com"
5487
  msgstr ""
5488
 
5489
+ #: modules/multiple-forms/register-forms.php:238
5490
  msgid "After Registration..."
5491
  msgstr ""
5492
 
5493
+ #: modules/repeater-field/admin/repeater-manage-fields.php:190
5494
  msgid "Limit"
5495
  msgstr ""
5496
 
5497
+ #: modules/repeater-field/admin/repeater-manage-fields.php:190
5498
  msgid ""
5499
  "Enable limit to the number of fields to be generated by users in front end "
5500
  "forms "
5501
  msgstr ""
5502
 
5503
+ #: modules/repeater-field/admin/repeater-manage-fields.php:191
5504
  msgid "General Limit"
5505
  msgstr ""
5506
 
5507
+ #: modules/repeater-field/admin/repeater-manage-fields.php:191
5508
  msgid "Default limit for this repeater group. <br>Leave 0 for unlimited."
5509
  msgstr ""
5510
 
5511
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
5512
  msgid "Limit reached message"
5513
  msgstr ""
5514
 
5515
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
5516
  msgid "The maximum number of fields has been reached."
5517
  msgstr ""
5518
 
5519
+ #: modules/repeater-field/admin/repeater-manage-fields.php:192
5520
  msgid ""
5521
  "The popup message to display when the limit of repeater groups is reached."
5522
  msgstr ""
5523
 
5524
+ #: modules/repeater-field/admin/repeater-manage-fields.php:193
5525
  msgid "Limit per Role"
5526
  msgstr ""
5527
 
5528
+ #: modules/repeater-field/admin/repeater-manage-fields.php:193
5529
  msgid "Leave 0 for unlimited."
5530
  msgstr ""
5531
 
5532
+ #: modules/repeater-field/admin/repeater-manage-fields.php:194
5533
  msgid "Repeated field group"
5534
  msgstr ""
5535
 
5536
+ #: modules/repeater-field/admin/repeater-manage-fields.php:194
5537
  msgid "Manage field or group of fields that will be repeatable."
5538
  msgstr ""
5539
 
5540
+ #: modules/repeater-field/admin/repeater-manage-fields.php:259
5541
  msgid "Edit field group"
5542
  msgstr ""
5543
 
5544
+ #: modules/repeater-field/admin/repeater-manage-fields.php:260
5545
  msgid "Repeatable fields saved!"
5546
  msgstr ""
5547
 
5548
+ #: modules/repeater-field/admin/repeater-manage-fields.php:277
5549
+ #: modules/repeater-field/admin/repeater-manage-fields.php:326
5550
  msgid "Please enter a unique field title.\n"
5551
  msgstr ""
5552
 
5553
+ #: modules/repeater-field/repeater-field.php:267
5554
  msgid "Are you sure you want to delete this?"
5555
  msgstr ""
5556
 
5557
+ #: modules/user-listing/userlisting.php:14
5558
  msgid "Add new User Listing"
5559
  msgstr ""
5560
 
5561
+ #: modules/user-listing/userlisting.php:15
5562
  msgid "Edit the User Listing"
5563
  msgstr ""
5564
 
5565
+ #: modules/user-listing/userlisting.php:16
5566
  msgid "New User Listing"
5567
  msgstr ""
5568
 
5569
+ #: modules/user-listing/userlisting.php:18
5570
  msgid "View the User Listing"
5571
  msgstr ""
5572
 
5573
+ #: modules/user-listing/userlisting.php:19
5574
  msgid "Search the User Listing"
5575
  msgstr ""
5576
 
5577
+ #: modules/user-listing/userlisting.php:20
5578
  msgid "No User Listing found"
5579
  msgstr ""
5580
 
5581
+ #: modules/user-listing/userlisting.php:21
5582
  msgid "No User Listing found in trash"
5583
  msgstr ""
5584
 
5585
+ #: modules/user-listing/userlisting.php:114
5586
  msgid "Display name as"
5587
  msgstr ""
5588
 
5589
+ #: modules/user-listing/userlisting.php:161
5590
+ #: modules/user-listing/userlisting.php:2268
5591
  msgid "Registration Date"
5592
  msgstr ""
5593
 
5594
+ #: modules/user-listing/userlisting.php:162
5595
+ #: modules/user-listing/userlisting.php:2273
5596
  msgid "Number of Posts"
5597
  msgstr ""
5598
 
5599
+ #: modules/user-listing/userlisting.php:166
5600
  msgid "More Info"
5601
  msgstr ""
5602
 
5603
+ #: modules/user-listing/userlisting.php:167
5604
  msgid "More Info Url"
5605
  msgstr ""
5606
 
5607
+ #: modules/user-listing/userlisting.php:168
5608
  msgid "Avatar or Gravatar"
5609
  msgstr ""
5610
 
5611
+ #: modules/user-listing/userlisting.php:170
5612
  msgid "User Nicename"
5613
  msgstr ""
5614
 
5615
+ #: modules/user-listing/userlisting.php:218
5616
  msgid "Sort Tags"
5617
  msgstr ""
5618
 
5619
+ #: modules/user-listing/userlisting.php:222
5620
+ #: modules/user-listing/userlisting.php:253
5621
  msgid "Extra Functions"
5622
  msgstr ""
5623
 
5624
+ #: modules/user-listing/userlisting.php:225
5625
  msgid "Pagination"
5626
  msgstr ""
5627
 
5628
+ #: modules/user-listing/userlisting.php:226
5629
  msgid "Search all Fields"
5630
  msgstr ""
5631
 
5632
+ #: modules/user-listing/userlisting.php:227
5633
+ #: modules/user-listing/userlisting.php:2353
5634
  msgid "Faceted Menus"
5635
  msgstr ""
5636
 
5637
+ #: modules/user-listing/userlisting.php:228
5638
  msgid "User Count"
5639
  msgstr ""
5640
 
5641
+ #: modules/user-listing/userlisting.php:255
5642
  msgid "Go Back Link"
5643
  msgstr ""
5644
 
5645
+ #: modules/user-listing/userlisting.php:273
5646
  msgid "All-userlisting Template"
5647
  msgstr ""
5648
 
5649
+ #: modules/user-listing/userlisting.php:276
5650
  msgid "Single-userlisting Template"
5651
  msgstr ""
5652
 
5653
+ #: modules/user-listing/userlisting.php:302
5654
  msgid "Avatar"
5655
  msgstr ""
5656
 
5657
+ #: modules/user-listing/userlisting.php:307
5658
+ #: modules/user-listing/userlisting.php:783
 
 
 
 
 
5659
  msgid "Sign-up Date"
5660
  msgstr ""
5661
 
5662
+ #: modules/user-listing/userlisting.php:308
5663
  msgid "More"
5664
  msgstr ""
5665
 
5666
+ #: modules/user-listing/userlisting.php:402
5667
  msgid "You do not have permission to view this user list."
5668
  msgstr ""
5669
 
5670
+ #: modules/user-listing/userlisting.php:415
5671
  msgid "You do not have the required user role to view this user list."
5672
  msgstr ""
5673
 
5674
+ #: modules/user-listing/userlisting.php:439
5675
  msgid "User not found"
5676
  msgstr ""
5677
 
5678
+ #: modules/user-listing/userlisting.php:777
5679
  msgid "First/Lastname"
5680
  msgstr ""
5681
 
5682
+ #: modules/user-listing/userlisting.php:792
5683
+ #: modules/user-listing/userlisting.php:2271
5684
  msgid "Display Name"
5685
  msgstr ""
5686
 
5687
+ #: modules/user-listing/userlisting.php:804
5688
+ #: modules/user-listing/userlisting.php:2278
5689
  msgid "Aim"
5690
  msgstr ""
5691
 
5692
+ #: modules/user-listing/userlisting.php:807
5693
+ #: modules/user-listing/userlisting.php:2279
5694
  msgid "Yim"
5695
  msgstr ""
5696
 
5697
+ #: modules/user-listing/userlisting.php:810
5698
+ #: modules/user-listing/userlisting.php:2280
5699
  msgid "Jabber"
5700
  msgstr ""
5701
 
5702
+ #: modules/user-listing/userlisting.php:1082
5703
+ #: modules/user-listing/userlisting.php:1530
5704
+ #: modules/user-listing/userlisting.php:1998
5705
+ #: modules/user-listing/userlisting.php:2471
5706
  msgid "Search Users by All Fields"
5707
  msgstr ""
5708
 
5709
+ #: modules/user-listing/userlisting.php:1335
5710
  msgid "Click here to see more information about this user"
5711
  msgstr ""
5712
 
5713
+ #: modules/user-listing/userlisting.php:1335
5714
  msgid "More..."
5715
  msgstr ""
5716
 
5717
+ #: modules/user-listing/userlisting.php:1338
5718
  msgid "Click here to see more information about this user."
5719
  msgstr ""
5720
 
5721
+ #: modules/user-listing/userlisting.php:1365
5722
  msgid "View Map"
5723
  msgstr ""
5724
 
5725
+ #: modules/user-listing/userlisting.php:1484
5726
+ #: modules/user-listing/userlisting.php:1487
5727
  msgid "Click here to go back"
5728
  msgstr ""
5729
 
5730
+ #: modules/user-listing/userlisting.php:1484
5731
  msgid "Back"
5732
  msgstr ""
5733
 
5734
+ #: modules/user-listing/userlisting.php:1517
5735
  msgid "&laquo;&laquo; First"
5736
  msgstr ""
5737
 
5738
+ #: modules/user-listing/userlisting.php:1518
5739
  msgid "&laquo; Prev"
5740
  msgstr ""
5741
 
5742
+ #: modules/user-listing/userlisting.php:1519
5743
  msgid "Next &raquo; "
5744
  msgstr ""
5745
 
5746
+ #: modules/user-listing/userlisting.php:1520
5747
  msgid "Last &raquo;&raquo;"
5748
  msgstr ""
5749
 
5750
+ #: modules/user-listing/userlisting.php:1549
5751
  msgid "You don't have any pagination settings on this userlisting!"
5752
  msgstr ""
5753
 
5754
+ #: modules/user-listing/userlisting.php:1598
5755
  msgid "Show All"
5756
  msgstr ""
5757
 
5758
+ #: modules/user-listing/userlisting.php:1666
5759
  msgid "Choose..."
5760
  msgstr ""
5761
 
5762
+ #: modules/user-listing/userlisting.php:1755
5763
  msgid "No options available"
5764
  msgstr ""
5765
 
5766
+ #: modules/user-listing/userlisting.php:1906
5767
  msgid "Remove All Filters"
5768
  msgstr ""
5769
 
5770
+ #: modules/user-listing/userlisting.php:2015
5771
  msgid "Search"
5772
  msgstr ""
5773
 
5774
+ #: modules/user-listing/userlisting.php:2016
5775
  msgid "Clear Results"
5776
  msgstr ""
5777
 
5778
+ #: modules/user-listing/userlisting.php:2210
5779
+ #: modules/user-listing/userlisting.php:2214
5780
  msgid "Extra shortcode parameters"
5781
  msgstr ""
5782
 
5783
+ #: modules/user-listing/userlisting.php:2212
5784
  msgid "View all extra shortcode parameters"
5785
  msgstr ""
5786
 
5787
+ #: modules/user-listing/userlisting.php:2217
5788
  msgid ""
5789
  "displays users having a certain meta-value within a certain (extra) meta-"
5790
  "field"
5791
  msgstr ""
5792
 
5793
+ #: modules/user-listing/userlisting.php:2218
5794
  msgid "Example:"
5795
  msgstr ""
5796
 
5797
+ #: modules/user-listing/userlisting.php:2220
5798
  msgid ""
5799
  "Remember though, that the field-value combination must exist in the database."
5800
  msgstr ""
5801
 
5802
+ #: modules/user-listing/userlisting.php:2226
5803
  msgid "displays only the users that you specified the user_id for"
5804
  msgstr ""
5805
 
5806
+ #: modules/user-listing/userlisting.php:2232
5807
  msgid "displays all users except the ones you specified the user_id for"
5808
  msgstr ""
5809
 
5810
+ #: modules/user-listing/userlisting.php:2295
5811
  msgid "Random (very slow on large databases > 10K user)"
5812
  msgstr ""
5813
 
5814
+ #: modules/user-listing/userlisting.php:2298
5815
  msgid "Ascending"
5816
  msgstr ""
5817
 
5818
+ #: modules/user-listing/userlisting.php:2299
5819
  msgid "Descending"
5820
  msgstr ""
5821
 
5822
+ #: modules/user-listing/userlisting.php:2307
5823
  msgid "Roles to Display"
5824
  msgstr ""
5825
 
5826
+ #: modules/user-listing/userlisting.php:2307
5827
  msgid ""
5828
  "Restrict the userlisting to these selected roles only<br/>If not specified, "
5829
  "defaults to all existing roles"
5830
  msgstr ""
5831
 
5832
+ #: modules/user-listing/userlisting.php:2308
5833
  msgid "Number of Users/Page"
5834
  msgstr ""
5835
 
5836
+ #: modules/user-listing/userlisting.php:2308
5837
  msgid ""
5838
  "Set the number of users to be displayed on every paginated part of the all-"
5839
  "userlisting"
5840
  msgstr ""
5841
 
5842
+ #: modules/user-listing/userlisting.php:2309
5843
  msgid "Default Sorting Criteria"
5844
  msgstr ""
5845
 
5846
+ #: modules/user-listing/userlisting.php:2309
5847
  msgid ""
5848
  "Set the default sorting criteria<br/>This can temporarily be changed for "
5849
  "each new session"
5850
  msgstr ""
5851
 
5852
+ #: modules/user-listing/userlisting.php:2310
5853
  msgid "Default Sorting Order"
5854
  msgstr ""
5855
 
5856
+ #: modules/user-listing/userlisting.php:2310
5857
  msgid ""
5858
  "Set the default sorting order<br/>This can temporarily be changed for each "
5859
  "new session"
5860
  msgstr ""
5861
 
5862
+ #: modules/user-listing/userlisting.php:2311
5863
  msgid "Avatar Size (All-userlisting)"
5864
  msgstr ""
5865
 
5866
+ #: modules/user-listing/userlisting.php:2311
5867
  msgid "Set the avatar size on the all-userlisting only"
5868
  msgstr ""
5869
 
5870
+ #: modules/user-listing/userlisting.php:2312
5871
  msgid "Avatar Size (Single-userlisting)"
5872
  msgstr ""
5873
 
5874
+ #: modules/user-listing/userlisting.php:2312
5875
  msgid "Set the avatar size on the single-userlisting only"
5876
  msgstr ""
5877
 
5878
+ #: modules/user-listing/userlisting.php:2313
5879
  msgid "Visible only to logged in users?"
5880
  msgstr ""
5881
 
5882
+ #: modules/user-listing/userlisting.php:2313
5883
  msgid "The userlisting will only be visible only to the logged in users"
5884
  msgstr ""
5885
 
5886
+ #: modules/user-listing/userlisting.php:2314
5887
  msgid "Visible to following Roles"
5888
  msgstr ""
5889
 
5890
+ #: modules/user-listing/userlisting.php:2314
5891
  msgid "The userlisting will only be visible to the following roles"
5892
  msgstr ""
5893
 
5894
+ #: modules/user-listing/userlisting.php:2320
5895
  msgid "Userlisting Settings"
5896
  msgstr ""
5897
 
5898
+ #: modules/user-listing/userlisting.php:2343
5899
  msgid "Label"
5900
  msgstr ""
5901
 
5902
+ #: modules/user-listing/userlisting.php:2343
5903
  msgid "Choose the facet name that appears on the frontend"
5904
  msgstr ""
5905
 
5906
+ #: modules/user-listing/userlisting.php:2344
5907
  msgid "Facet Type"
5908
  msgstr ""
5909
 
5910
+ #: modules/user-listing/userlisting.php:2344
5911
  msgid "Choose the facet menu type"
5912
  msgstr ""
5913
 
5914
+ #: modules/user-listing/userlisting.php:2345
5915
  msgid "Facet Meta"
5916
  msgstr ""
5917
 
5918
+ #: modules/user-listing/userlisting.php:2345
5919
  msgid "Choose the meta field for the facet menu"
5920
  msgstr ""
5921
 
5922
+ #: modules/user-listing/userlisting.php:2346
5923
  msgid "Behaviour"
5924
  msgstr ""
5925
 
5926
+ #: modules/user-listing/userlisting.php:2346
5927
  msgid "Narrow the results"
5928
  msgstr ""
5929
 
5930
+ #: modules/user-listing/userlisting.php:2346
5931
  msgid "Expand the results"
5932
  msgstr ""
5933
 
5934
+ #: modules/user-listing/userlisting.php:2346
5935
  msgid "Choose how multiple selections affect the results"
5936
  msgstr ""
5937
 
5938
+ #: modules/user-listing/userlisting.php:2347
5939
  msgid "Visible choices"
5940
  msgstr ""
5941
 
5942
+ #: modules/user-listing/userlisting.php:2347
5943
  msgid "Show a toggle link after this many choices. Leave blank for all"
5944
  msgstr ""
5945
 
5946
+ #: modules/user-listing/userlisting.php:2370
5947
  msgid "Search Fields"
5948
  msgstr ""
5949
 
5950
+ #: modules/user-listing/userlisting.php:2370
5951
  msgid "Choose the fields in which the Search Field will look in"
5952
  msgstr ""
5953
 
5954
+ #: modules/user-listing/userlisting.php:2375
5955
  msgid "Search Settings"
5956
  msgstr ""
5957
 
5958
+ #: modules/user-listing/userlisting.php:2447
5959
  msgid ""
5960
  "You need to activate the Userlisting feature from within the \"Modules\" tab!"
5961
  msgstr ""
5962
 
5963
+ #: modules/user-listing/userlisting.php:2447
5964
  msgid "You can find it in the Profile Builder menu."
5965
  msgstr ""
5966
 
5967
+ #: modules/user-listing/userlisting.php:2610
5968
  msgid "No results found!"
5969
  msgstr ""
5970
+
5971
+ #. Plugin Name of the plugin/theme
5972
+ msgid "Profile Builder Pro"
5973
+ msgstr ""
5974
+
5975
+ #. Plugin URI of the plugin/theme
5976
+ msgid "https://www.cozmoslabs.com/wordpress-profile-builder/"
5977
+ msgstr ""
5978
+
5979
+ #. Description of the plugin/theme
5980
+ msgid ""
5981
+ "Login, registration and edit profile shortcodes for the front-end. Also you "
5982
+ "can choose what fields should be displayed or add new (custom) ones both in "
5983
+ "the front-end and in the dashboard."
5984
+ msgstr ""
5985
+
5986
+ #. Author of the plugin/theme
5987
+ msgid ""
5988
+ "Cozmoslabs, Madalin Ungureanu, Antohe Cristian, Barina Gabriel, Mihai Iova"
5989
+ msgstr ""
5990
+
5991
+ #. Author URI of the plugin/theme
5992
+ msgid "https://www.cozmoslabs.com/"
5993
+ msgstr ""