User registration & user profile – Profile Builder - Version 1.1.39

Version Description

Security issue fixed regarding the "Email Confirmation" feature

Download this release

Release Info

Developer barinagabriel
Plugin Icon 128x128 User registration & user profile – Profile Builder
Version 1.1.39
Comparing to
See all releases

Code changes from version 1.1.38 to 1.1.39

front-end/wppb.register.php CHANGED
@@ -424,7 +424,7 @@ function wppb_activate_signup($key) {
424
  $meta = unserialize($signup->meta);
425
  $user_login = $wpdb->escape($signup->user_login);
426
  $user_email = $wpdb->escape($signup->user_email);
427
- $password = $meta['user_pass'];
428
 
429
  $user_id = username_exists($user_login);
430
 
@@ -496,10 +496,7 @@ function wppb_create_user( $user_name, $password, $email) {
496
  //send an email to the admin regarding each and every new subscriber, and - if selected - to the user himself
497
  function wppb_notify_user_registration_email($bloginfo, $user_name, $email, $send_credentials_via_email, $passw1, $adminApproval){
498
 
499
- $registerFilterArray['adminMessageOnRegistration'] = '';
500
- $registerFilterArray['adminMessageOnRegistration'] = __('New subscriber on', 'profilebuilder') .' '.$bloginfo . '<br/><br/>';//"\r\n\r\n";
501
- $registerFilterArray['adminMessageOnRegistration'] .= __('Username', 'profilebuilder') .': '. $user_name . '<br/>';
502
- $registerFilterArray['adminMessageOnRegistration'] .= __('E-mail', 'profilebuilder') .': '. $email . '<br/>';
503
  if ($adminApproval == 'yes')
504
  $registerFilterArray['adminMessageOnRegistration'] .= '<br/>'. __('The "Admin Approval" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!', 'profilebuilder') ."\r\n";
505
  $registerFilterArray['adminMessageOnRegistration'] = apply_filters('wppb_register_admin_message_content', $registerFilterArray['adminMessageOnRegistration'], $bloginfo, $user_name, $email);
@@ -525,7 +522,7 @@ function wppb_notify_user_registration_email($bloginfo, $user_name, $email, $sen
525
  $registerFilterArray['userMessageSubject'] = __('A new account has been created for you.', 'profilebuilder');
526
  $registerFilterArray['userMessageSubject'] = apply_filters('wppb_register_subject_email_content', $registerFilterArray['userMessageSubject']);
527
 
528
- $registerFilterArray['userMessageContent'] = __('Welcome to', 'profilebuilder') .' '. $registerFilterArray['userMessageFrom'] .'!<br/><br/>'. __('Your username is:', 'profilebuilder') . $user_name .' '. __('and password:', 'profilebuilder') .$passw1;
529
  if ($adminApproval == 'yes')
530
  $registerFilterArray['userMessageContent'] .= '<br/>'. __('Before you can access your account, an administrator needs to approve it. You will be notified via email.', 'profilebuilder');
531
  $registerFilterArray['userMessageContent'] = apply_filters('wppb_register_email_content', $registerFilterArray['userMessageContent'], $registerFilterArray['userMessageFrom'], $user_name, $passw1);
@@ -585,15 +582,8 @@ function wppb_front_end_register($atts){
585
 
586
  //fallback if the file was largen then post_max_size, case in which no errors can be saved in $_FILES[fileName]['error']
587
  if (empty($_FILES) && empty($_POST) && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['REQUEST_METHOD']) == 'post') {
588
- $registerFilterArray['noPostError'] = '
589
- <p class="error">'.
590
- __('The information size you were trying to submit was larger than', 'profilebuilder') .' '. WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA .'b!<br/>'.
591
- __('This is usually caused by a large file(s) trying to be uploaded.', 'profilebuilder') .'<br/>'.
592
- __('Since it was also larger than', 'profilebuilder') .' '. WPPB_SERVER_MAX_POST_SIZE_MEGA .'b, '. __('no additional information is available.', 'profilebuilder'). '<br/>'.
593
- __('The user was NOT created!', 'profilebuilder') .
594
- '</p>';
595
- $registerFilterArray['noPostError'] = apply_filters('wppb_register_no_post_error_message', $registerFilterArray['noPostError']);
596
- echo $registerFilterArray['noPostError'];
597
  }
598
 
599
  /* If user registered, input info. */
@@ -873,6 +863,15 @@ function wppb_front_end_register($atts){
873
  }
874
  break;
875
  }
 
 
 
 
 
 
 
 
 
876
  }
877
  }
878
  }
@@ -940,7 +939,7 @@ function wppb_front_end_register($atts){
940
  $multisite_message = true;
941
 
942
  $meta = array(
943
- 'user_pass' => $userdata['user_pass'],
944
  'first_name' => $userdata['first_name'],
945
  'last_name' => $userdata['last_name'],
946
  'nickname' => $userdata['nickname'],
@@ -1164,16 +1163,14 @@ function wppb_front_end_register($atts){
1164
 
1165
  elseif ( $new_user != 'no' ) :
1166
  if ( current_user_can( 'create_users' ) ){
 
1167
  if ($multisite_message){
1168
- $registerFilterArray['wpmuRegistrationMessage1'] = '
1169
- <p class="success">'. __('An email has been sent to ', 'profilebuilder') .' '. $userdata['user_email'] .' '. __('with information on how to activate his/her account', 'profilebuilder') .'.</p><!-- .success -->';
1170
- $registerFilterArray['registrationMessage1'] = apply_filters('wppb_wpmu_register_account_created1', $registerFilterArray['wpmuRegistrationMessage1'], $registered_name, $userdata['user_email']);
1171
- echo $registerFilterArray['wpmuRegistrationMessage1'];
1172
  }else{
1173
- $registerFilterArray['registrationMessage1'] = '
1174
- <p class="success">'. __('A user account has been created for', 'profilebuilder') .' '. $registered_name. '.</p><!-- .success -->';
1175
- $registerFilterArray['registrationMessage1'] = apply_filters('wppb_register_account_created1', $registerFilterArray['registrationMessage1'], $registered_name);
1176
- echo $registerFilterArray['registrationMessage1'];
1177
  }
1178
 
1179
  if (file_exists ( $wppb_addons.'addon.php' )){
@@ -1190,21 +1187,19 @@ function wppb_front_end_register($atts){
1190
  }
1191
  }
1192
  }
1193
- $registerFilterArray['redirectMessage1'] = '<font id="messageTextColor">'. __('You will soon be redirected automatically. If you see this page for more than 3 seconds, please click', 'profilebuilder'). ' <a href="'.$redirectLink.'">'.__('here', 'profilebuilder').'</a>.<meta http-equiv="Refresh" content="3;url='.$redirectLink.'" /></font><br/><br/>';
1194
- $registerFilterArray['redirectMessage1'] = apply_filters('wppb_register_redirect_after_creation1', $registerFilterArray['redirectMessage1'], $redirectLink);
1195
- echo $registerFilterArray['redirectMessage1'];
1196
 
1197
  }else{
 
1198
  if ($multisite_message){
1199
- $registerFilterArray['wpmuRegistrationMessage2'] = '
1200
- <p class="success">'. __('An email has been sent to you with information on how to activate your account', 'profilebuilder') .'.</p><!-- .success -->';
1201
- $registerFilterArray['wpmuRegistrationMessage2'] = apply_filters('wppb_register_account_created2', $registerFilterArray['wpmuRegistrationMessage2'], $registered_name);
1202
- echo $registerFilterArray['wpmuRegistrationMessage2'];
1203
  }else{
1204
- $registerFilterArray['registrationMessage2'] = '
1205
- <p class="success">'. __('Thank you for registering', 'profilebuilder') .' '. $registered_name .'.</p><!-- .success -->';
1206
- $registerFilterArray['registrationMessage2'] = apply_filters('wppb_register_account_created2', $registerFilterArray['registrationMessage2'], $registered_name);
1207
- echo $registerFilterArray['registrationMessage2'];
1208
  }
1209
 
1210
  $wppb_addons = WPPB_PLUGIN_DIR . '/premium/addons/';
@@ -1222,9 +1217,9 @@ function wppb_front_end_register($atts){
1222
  }
1223
  }
1224
  }
1225
- $registerFilterArray['redirectMessage2'] = '<font id="messageTextColor">'. __('You will soon be redirected automatically. If you see this page for more than 3 seconds, please click', 'profilebuilder') .' <a href="'.$redirectLink.'">'.__('here', 'profilebuilder') .'</a>.<meta http-equiv="Refresh" content="3;url='.$redirectLink.'" /></font><br/><br/>';
1226
- $registerFilterArray['redirectMessage2'] = apply_filters('wppb_register_redirect_after_creation2', $registerFilterArray['redirectMessage2'], $redirectLink);
1227
- echo $registerFilterArray['redirectMessage2'];
1228
  }
1229
 
1230
 
424
  $meta = unserialize($signup->meta);
425
  $user_login = $wpdb->escape($signup->user_login);
426
  $user_email = $wpdb->escape($signup->user_email);
427
+ $password = base64_decode($meta['user_pass']);
428
 
429
  $user_id = username_exists($user_login);
430
 
496
  //send an email to the admin regarding each and every new subscriber, and - if selected - to the user himself
497
  function wppb_notify_user_registration_email($bloginfo, $user_name, $email, $send_credentials_via_email, $passw1, $adminApproval){
498
 
499
+ $registerFilterArray['adminMessageOnRegistration'] = sprintf(__( 'New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>', 'profilebuilder'), $bloginfo, $user_name, $email);
 
 
 
500
  if ($adminApproval == 'yes')
501
  $registerFilterArray['adminMessageOnRegistration'] .= '<br/>'. __('The "Admin Approval" feature was activated at the time of registration, so please remember that you need to approve this user before he/she can log in!', 'profilebuilder') ."\r\n";
502
  $registerFilterArray['adminMessageOnRegistration'] = apply_filters('wppb_register_admin_message_content', $registerFilterArray['adminMessageOnRegistration'], $bloginfo, $user_name, $email);
522
  $registerFilterArray['userMessageSubject'] = __('A new account has been created for you.', 'profilebuilder');
523
  $registerFilterArray['userMessageSubject'] = apply_filters('wppb_register_subject_email_content', $registerFilterArray['userMessageSubject']);
524
 
525
+ $registerFilterArray['userMessageContent'] = sprintf(__( 'Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s', 'profilebuilder'), $registerFilterArray['userMessageFrom'], $user_name, $passw1);
526
  if ($adminApproval == 'yes')
527
  $registerFilterArray['userMessageContent'] .= '<br/>'. __('Before you can access your account, an administrator needs to approve it. You will be notified via email.', 'profilebuilder');
528
  $registerFilterArray['userMessageContent'] = apply_filters('wppb_register_email_content', $registerFilterArray['userMessageContent'], $registerFilterArray['userMessageFrom'], $user_name, $passw1);
582
 
583
  //fallback if the file was largen then post_max_size, case in which no errors can be saved in $_FILES[fileName]['error']
584
  if (empty($_FILES) && empty($_POST) && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['REQUEST_METHOD']) == 'post') {
585
+ $registerFilterArray['noPostError'] = '<p class="error">' . sprintf(__( 'The information size you were trying to submit was larger than %1$sb!<br/>This is usually caused by a large file(s) trying to be uploaded.<br/>Since it was also larger than %2$sb no additional information is available.<br/>The user was NOT created!', 'profilebuilder'), WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA, WPPB_SERVER_MAX_POST_SIZE_MEGA) . '</p>';
586
+ echo $registerFilterArray['noPostError'] = apply_filters('wppb_register_no_post_error_message', $registerFilterArray['noPostError'], WPPB_SERVER_MAX_UPLOAD_SIZE_MEGA, WPPB_SERVER_MAX_POST_SIZE_MEGA);
 
 
 
 
 
 
 
587
  }
588
 
589
  /* If user registered, input info. */
863
  }
864
  break;
865
  }
866
+ case "agreeToTerms":{
867
+ if (isset($value['item_required'])){
868
+ if ($value['item_required'] == 'yes'){
869
+ if ($_POST[$value['item_type'].$value['id']] == NULL)
870
+ array_push($extraFieldsErrorHolder, $value['id']);
871
+ }
872
+ }
873
+ break;
874
+ }
875
  }
876
  }
877
  }
939
  $multisite_message = true;
940
 
941
  $meta = array(
942
+ 'user_pass' => base64_encode($userdata['user_pass']),
943
  'first_name' => $userdata['first_name'],
944
  'last_name' => $userdata['last_name'],
945
  'nickname' => $userdata['nickname'],
1163
 
1164
  elseif ( $new_user != 'no' ) :
1165
  if ( current_user_can( 'create_users' ) ){
1166
+
1167
  if ($multisite_message){
1168
+ $registerFilterArray['wpmuRegistrationMessage1'] = '<p class="success">' . sprintf(__( 'An email has been sent to %1$s with information on how to activate his/her account.', 'profilebuilder'), $userdata['user_email']) . '</p><!-- .success -->';
1169
+ echo $registerFilterArray['registrationMessage1'] = apply_filters('wppb_wpmu_register_account_created1', $registerFilterArray['wpmuRegistrationMessage1'], $registered_name, $userdata['user_email']);
1170
+
 
1171
  }else{
1172
+ $registerFilterArray['registrationMessage1'] = '<p class="success">' . sprintf(__( 'A user account has been created for %1$s.', 'profilebuilder'), $registered_name) . '</p><!-- .success -->';
1173
+ echo $registerFilterArray['registrationMessage1'] = apply_filters('wppb_register_account_created1', $registerFilterArray['registrationMessage1'], $registered_name);
 
 
1174
  }
1175
 
1176
  if (file_exists ( $wppb_addons.'addon.php' )){
1187
  }
1188
  }
1189
  }
1190
+
1191
+ $registerFilterArray['redirectMessage1'] = '<font id="messageTextColor">' . sprintf(__( 'You will soon be redirected automatically. If you see this page for more than 3 seconds, please click %1$s.%2$s', 'profilebuilder'), '<a href="'.$redirectLink.'">'.__('here', 'profilebuilder').'</a>', '<meta http-equiv="Refresh" content="3;url='.$redirectLink.'" />') . '</font><br/><br/>';
1192
+ echo $registerFilterArray['redirectMessage1'] = apply_filters('wppb_register_redirect_after_creation1', $registerFilterArray['redirectMessage1'], $redirectLink);
1193
 
1194
  }else{
1195
+
1196
  if ($multisite_message){
1197
+ $registerFilterArray['wpmuRegistrationMessage2'] = '<p class="success">'. __('An email has been sent to you with information on how to activate your account.', 'profilebuilder') .'</p><!-- .success -->';
1198
+ echo $registerFilterArray['wpmuRegistrationMessage2'] = apply_filters('wppb_register_account_created2', $registerFilterArray['wpmuRegistrationMessage2'], $registered_name);
1199
+
 
1200
  }else{
1201
+ $registerFilterArray['registrationMessage2'] = '<p class="success">' . sprintf(__( 'Thank you for registering %1$s.', 'profilebuilder'), $registered_name) .'</p><!-- .success -->';
1202
+ echo $registerFilterArray['registrationMessage2'] = apply_filters('wppb_register_account_created2', $registerFilterArray['registrationMessage2'], $registered_name);
 
 
1203
  }
1204
 
1205
  $wppb_addons = WPPB_PLUGIN_DIR . '/premium/addons/';
1217
  }
1218
  }
1219
  }
1220
+
1221
+ $registerFilterArray['redirectMessage2'] = '<font id="messageTextColor">' . sprintf(__( 'You will soon be redirected automatically. If you see this page for more than 3 seconds, please click %1$s.%2$s', 'profilebuilder'), '<a href="'.$redirectLink.'">'.__('here', 'profilebuilder').'</a>', '<meta http-equiv="Refresh" content="3;url='.$redirectLink.'" />') . '</font><br/><br/>';
1222
+ echo $registerFilterArray['redirectMessage2'] = apply_filters('wppb_register_redirect_after_creation2', $registerFilterArray['redirectMessage2'], $redirectLink);
1223
  }
1224
 
1225
 
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Profile Builder
4
  Plugin URI: http://www.cozmoslabs.com/2011/04/12/wordpress-profile-builder-a-front-end-user-registration-login-and-edit-profile-plugin/
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: 1.1.38
7
  Author: Reflection Media, Barina Gabriel
8
  Author URI: http://www.reflectionmedia.ro
9
  License: GPL2
@@ -54,7 +54,7 @@ function return_bytes($val) {
54
  }
55
 
56
 
57
- define( 'PROFILE_BUILDER_VERSION', '1.1.38' );
58
  define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
59
  define( 'WPPB_PLUGIN_URL', WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) );
60
  define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', return_bytes( ini_get( 'upload_max_filesize') ) );
3
  Plugin Name: Profile Builder
4
  Plugin URI: http://www.cozmoslabs.com/2011/04/12/wordpress-profile-builder-a-front-end-user-registration-login-and-edit-profile-plugin/
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: 1.1.39
7
  Author: Reflection Media, Barina Gabriel
8
  Author URI: http://www.reflectionmedia.ro
9
  License: GPL2
54
  }
55
 
56
 
57
+ define( 'PROFILE_BUILDER_VERSION', '1.1.39' );
58
  define( 'WPPB_PLUGIN_DIR', WP_PLUGIN_DIR . '/' . dirname( plugin_basename( __FILE__ ) ) );
59
  define( 'WPPB_PLUGIN_URL', WP_PLUGIN_URL . '/' . dirname( plugin_basename( __FILE__ ) ) );
60
  define( 'WPPB_SERVER_MAX_UPLOAD_SIZE_BYTE', return_bytes( ini_get( 'upload_max_filesize') ) );
readme.txt CHANGED
@@ -7,7 +7,7 @@ custom registration, custom registration form, custom registration page, extra u
7
  front-end register, front-end registration, frontend edit profile, edit profile
8
  Requires at least: 3.1
9
  Tested up to: 3.5
10
- Stable tag: 1.1.38
11
 
12
  Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
13
 
@@ -93,6 +93,9 @@ This plugin only adds/removes fields in the front-end. The default information-f
93
  5. Logged in Page: screenshot7.jpg
94
 
95
  == Changelog ==
 
 
 
96
  = 1.1.38 =
97
  Added a fix (suggested by http://wordpress.org/support/profile/maximinime) regarding the admin bar not displaying properly in some instances.
98
 
7
  front-end register, front-end registration, frontend edit profile, edit profile
8
  Requires at least: 3.1
9
  Tested up to: 3.5
10
+ Stable tag: 1.1.39
11
 
12
  Simple to use profile plugin allowing front-end login, registration and edit profile by using shortcodes.
13
 
93
  5. Logged in Page: screenshot7.jpg
94
 
95
  == Changelog ==
96
+ = 1.1.39 =
97
+ Security issue fixed regarding the "Email Confirmation" feature
98
+
99
  = 1.1.38 =
100
  Added a fix (suggested by http://wordpress.org/support/profile/maximinime) regarding the admin bar not displaying properly in some instances.
101
 
translation/profilebuilder-it_IT.mo CHANGED
Binary file
translation/profilebuilder-it_IT.po CHANGED
@@ -2,9 +2,9 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ProfileBuilder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-01-10 11:28+0200\n"
6
- "PO-Revision-Date: 2013-01-10 11:28+0200\n"
7
- "Last-Translator: Gabriel Barina <barinagabriel2007@yahoo.com>\n"
8
  "Language-Team: Reflection Media, Gabriel Barina\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,41 +19,43 @@ msgstr ""
19
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
20
  #, php-format
21
  msgid ""
22
- "The information size you were trying to submit was larger than %1$sb!<br/"
23
- ">This is usually caused by a large file(s) trying to be uploaded.<br/>Since "
24
- "it was also larger than %2$sb no additional information is available.<br/"
25
- ">The user was NOT created!"
26
  msgstr ""
 
 
 
 
 
27
 
28
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
29
  msgid "You must be logged in to edit your profile."
30
- msgstr "Devi essere registrato per modificare il tuo profilo."
31
 
32
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
33
  msgid "The avatar was successfully deleted."
34
- msgstr "L'avatar è stato cancellato con successo."
35
 
36
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
37
- #, fuzzy, php-format
38
  msgid "The attachment \"%1$s\" was successfully deleted."
39
- msgstr "L'avatar è stato cancellato con successo."
40
 
41
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
42
  msgid "The changes have been successfully saved."
43
- msgstr "Le modifiche sono state salvate con successo."
44
 
45
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
46
- #, fuzzy
47
  msgid ""
48
  "The email address you entered is already registered to a different user."
49
- msgstr ""
50
- "L'indirizzo e-mail che hai inserito è già registrato per un altro utente. "
51
- "<br/> L'indirizzo e-mail è stato"
52
 
53
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
54
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
55
  msgid "The email address was"
56
- msgstr ""
57
 
58
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
59
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
@@ -68,43 +70,35 @@ msgstr "NON"
68
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
69
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
70
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
71
- #, fuzzy
72
  msgid "updated along with the rest of the information."
73
- msgstr "aggiornato insieme al resto delle informazioni."
74
 
75
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
76
- #, fuzzy
77
  msgid "The email address you entered is invalid."
78
- msgstr ""
79
- "L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
80
 
81
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
82
- #, fuzzy
83
  msgid "The passwords you entered do not match."
84
- msgstr ""
85
- "Le password che hai inserito non corrispondono. <br/> La password è stata"
86
 
87
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
88
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
89
- #, fuzzy
90
  msgid "The password was"
91
- msgstr "Nuova Password"
92
 
93
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
94
- #, fuzzy
95
  msgid "You didn't complete both password fields."
96
- msgstr "Non ha completato uno dei campi password!"
97
 
98
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
99
  msgid "Your profile was NOT updated!"
100
- msgstr ""
101
 
102
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
103
- #, fuzzy
104
  msgid "There was an error while trying to upload the following attachments:"
105
  msgstr ""
106
  "Si è verificato un errore durante il tentativo di caricare i seguenti "
107
- "allegati: <br/>"
108
 
109
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
110
  #, php-format
@@ -112,54 +106,56 @@ msgid ""
112
  "Possible cause: the size was bigger than %1$sb. The listed attachements were "
113
  "%2$sNOT%3$s updated along with the rest of the information."
114
  msgstr ""
 
 
115
 
116
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
117
- #, fuzzy
118
  msgid "There was an error while trying to upload your avatar picture."
119
  msgstr ""
120
- "Si è verificato un errore durante il tentativo di caricare i seguenti "
121
- "allegati: <br/>"
122
 
123
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
124
  msgid "Possible cause: size/incorrect file-type."
125
- msgstr ""
126
 
127
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
128
  msgid "The avatar was"
129
- msgstr ""
130
 
131
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
132
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:897
133
- #, fuzzy
134
  msgid "There was an error while trying to upload the following attachment(s)"
135
  msgstr ""
136
- "Si è verificato un errore durante il tentativo di caricare i seguenti "
137
- "allegati: <br/>"
138
 
139
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
140
  #, php-format
141
  msgid ""
142
- "Only files with the following extension(s) can be uploaded: %1$s<br/>This "
143
- "file was %2$sNOT%3$s updated along with the rest of the information."
144
  msgstr ""
 
 
 
145
 
146
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
147
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1277
148
  msgid "Name"
149
  msgstr "Nome"
150
 
151
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
152
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
153
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1298
154
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
155
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
156
  msgid "Username"
157
- msgstr "Username"
158
 
159
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
160
- #, fuzzy
161
  msgid "Usernames cannot be changed."
162
- msgstr "I nomi utente non possono essere cambiati."
163
 
164
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
165
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
@@ -183,7 +179,7 @@ msgstr "I nomi utente non possono essere cambiati."
183
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:702
184
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
185
  msgid "This field is marked as required by the administrator."
186
- msgstr ""
187
 
188
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
189
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
@@ -199,21 +195,23 @@ msgid ""
199
  "This field wasn't updated because you entered and empty string (It was "
200
  "marked as required by the administrator."
201
  msgstr ""
 
 
202
 
203
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
204
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1322
205
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
206
  msgid "First Name"
207
  msgstr "Nome"
208
 
209
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
210
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1346
211
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
212
  msgid "Last Name"
213
  msgstr "Cognome"
214
 
215
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
216
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1370
217
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
218
  msgid "Nickname"
219
  msgstr "Nickname"
@@ -223,52 +221,52 @@ msgid "Display name publicly as"
223
  msgstr "Nome visualizzato pubblicamente come"
224
 
225
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
226
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1376
227
  msgid "Contact Info"
228
- msgstr "Informazioni di contatto"
229
 
230
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
231
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1397
232
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
233
  msgid "E-mail"
234
- msgstr "E-mail:"
235
 
236
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
237
  msgid "(required)"
238
  msgstr "(richiesto)"
239
 
240
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
241
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1421
242
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
243
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
244
  msgid "Website"
245
- msgstr "Sito web:"
246
 
247
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
248
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1445
249
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
250
  msgid "AIM"
251
  msgstr "AIM"
252
 
253
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
254
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1469
255
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
256
  msgid "Yahoo IM"
257
  msgstr "Yahoo IM"
258
 
259
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
260
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1493
261
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
262
  msgid "Jabber / Google Talk"
263
- msgstr "Google Talk"
264
 
265
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
266
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1499
267
  msgid "About Yourself"
268
- msgstr "Su di te"
269
 
270
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
271
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1520
272
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
273
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
274
  msgid "Biographical Info"
@@ -276,40 +274,36 @@ msgstr "Informazioni biografiche"
276
 
277
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
278
  msgid "New Password"
279
- msgstr "Nuova Password"
280
 
281
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
282
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
283
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
284
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1558
285
  msgid "Repeat Password"
286
- msgstr "Ripeti Password"
287
 
288
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
289
  msgid "Update"
290
  msgstr "Aggiorna"
291
 
292
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
293
- #, fuzzy, php-format
294
  msgid "You are currently logged in as %1$s. %2$s"
295
- msgstr ""
296
- "Sei attualmente connesso come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>."
297
 
298
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
299
  msgid "Log out of this account"
300
  msgstr "Esci da questo account"
301
 
302
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
303
- #, fuzzy
304
  msgid "Log out"
305
- msgstr "Log out &raquo;"
306
 
307
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
308
- #, fuzzy, php-format
309
  msgid "You have successfully logged in as %1$s"
310
- msgstr ""
311
- "Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">"
312
- "%2$s</a>."
313
 
314
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
315
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
@@ -318,27 +312,29 @@ msgid ""
318
  "You will soon be redirected automatically. If you see this page for more "
319
  "than 1 second, please click %1$s"
320
  msgstr ""
 
 
321
 
322
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
323
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
324
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
325
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
326
  msgid "here"
327
- msgstr ""
328
 
329
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
330
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
331
  msgid "ERROR:"
332
- msgstr ""
333
 
334
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
335
  msgid "The username field is empty"
336
- msgstr ""
337
 
338
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
339
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
340
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
341
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1553
342
  msgid "Password"
343
  msgstr "Password"
344
 
@@ -358,7 +354,7 @@ msgstr "Password persa?"
358
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
359
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
360
  msgid "ERROR"
361
- msgstr ""
362
 
363
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
364
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
@@ -366,120 +362,122 @@ msgid ""
366
  "Your account has to be confirmed by an administrator before you can use the "
367
  "\"Password Reset\" feature."
368
  msgstr ""
 
 
369
 
370
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
371
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
372
  #, php-format
373
  msgid ""
374
- "A password reset email has been sent to %1$s.<br/>Following the link sent in "
375
- "the email address will reset the password."
376
  msgstr ""
 
 
 
377
 
378
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
379
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
380
  #, php-format
381
  msgid ""
382
- "Someone requested that the password be reset for the following account: <b>"
383
- "%1$s</b><br/>If this was a mistake, just ignore this email and nothing will "
384
- "happen.<br/>To reset your password, visit the following link:%2$s"
 
385
  msgstr ""
 
 
 
 
386
 
387
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
388
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
389
  #, php-format
390
  msgid "Password Reset Feature from \"%1$s\""
391
- msgstr ""
392
 
393
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
394
- #, fuzzy, php-format
395
  msgid "There was an error while trying to send the activation link to %1$s!"
396
  msgstr ""
397
- "Si è verificato un errore durante il tentativo di caricare i seguenti "
398
- "allegati: <br/>"
399
 
400
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
401
- #, fuzzy
402
  msgid "The email address entered wasn't found in the database!"
403
- msgstr ""
404
- "L'indirizzo email inserito non è valido. <br/> L'indirizzo e-mail è stato"
405
 
406
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
407
  msgid "Please check that you entered the correct email address."
408
- msgstr ""
409
 
410
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
411
- #, fuzzy
412
  msgid "There was an error while trying to send the activation link to "
413
  msgstr ""
414
- "Si è verificato un errore durante il tentativo di caricare i seguenti "
415
- "allegati: <br/>"
416
 
417
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
418
  msgid "The username entered wasn't found in the database!"
419
- msgstr ""
420
 
421
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
422
  msgid "Please check that you entered the correct username."
423
- msgstr ""
424
 
425
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
426
- #, fuzzy
427
  msgid "Your password has been successfully changed!"
428
- msgstr "Le modifiche sono state salvate con successo."
429
 
430
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
431
- #, fuzzy, php-format
432
  msgid "You have successfully reset your password to: %1$s"
433
- msgstr ""
434
- "Hai effettuato il login correttamente come <a href=\"%1$s\" title=\"%2$s\">"
435
- "%2$s</a>."
436
 
437
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
438
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
439
- #, fuzzy, php-format
440
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
441
- msgstr "\" è stato cancellato con successo."
442
 
443
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
444
  #, php-format
445
  msgid ""
446
- "%1$s has requested a password change via the password reset feature.<br/>His/"
447
- "her new password is:%2$s"
448
  msgstr ""
 
 
449
 
450
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
451
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:894
452
  msgid "The entered passwords don't match!"
453
  msgstr "Le password inserite non corrispondono!"
454
 
455
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
456
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
457
- #, fuzzy
458
  msgid "Reset Password"
459
- msgstr "Ripeti Password"
460
 
461
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
462
  msgid "Invalid key!"
463
- msgstr ""
464
 
465
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
466
- #, fuzzy
467
  msgid "Please enter your username or email address."
468
- msgstr "Devi inserire un indirizzo email valido."
469
 
470
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
471
  msgid "You will receive a link to create a new password via email."
472
- msgstr ""
473
 
474
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
475
- #, fuzzy
476
  msgid "Username or E-mail"
477
- msgstr "Username"
478
 
479
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
480
- #, fuzzy
481
  msgid "Get New Password"
482
- msgstr "Nuova Password"
483
 
484
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
485
  #, php-format
@@ -491,246 +489,272 @@ msgid ""
491
  "After you activate, you will receive *another email* with your login.\n"
492
  "\n"
493
  msgstr ""
 
 
 
 
 
 
494
 
495
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
496
  #, php-format
497
  msgid "[%1$s] Activate %2$s"
498
- msgstr ""
499
 
500
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
501
  msgid "Invalid activation key!"
502
- msgstr ""
503
 
504
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
505
  msgid "The user is already active!"
506
- msgstr ""
507
 
508
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
509
  msgid "Could not create user!"
510
- msgstr ""
511
 
512
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
513
- #, fuzzy
514
  msgid "That username is already activated!"
515
- msgstr "Ci dispiace, questo nome utente esiste già!"
516
 
517
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
518
- #, fuzzy
519
  msgid "The user was successfully activated."
520
- msgstr "L'avatar è stato cancellato con successo."
521
 
522
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
523
- #, fuzzy
524
  msgid "There was an error while trying to activate the user."
525
- msgstr ""
526
- "Si è verificato un errore durante il tentativo di caricare i seguenti "
527
- "allegati: <br/>"
528
 
529
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
530
  #, php-format
531
- msgid "New subscriber on %1$s.<br/><br/>Username:%2$s<br/>E-mail:%3$s<br/>"
 
 
532
  msgstr ""
 
 
533
 
534
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
535
  msgid ""
536
  "The \"Admin Approval\" feature was activated at the time of registration, so "
537
  "please remember that you need to approve this user before he/she can log in!"
538
  msgstr ""
 
 
 
539
 
540
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
541
  msgid "A new subscriber has (been) registered!"
542
- msgstr ""
543
 
544
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
545
- #, fuzzy
546
  msgid "A new account has been created for you."
547
- msgstr "Un account utente come %1$s è stato creato."
548
 
549
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
550
  #, php-format
551
- msgid "Welcome to %1$s!<br/><br/> Your username is:%2$s and password:%3$s"
 
 
552
  msgstr ""
 
 
553
 
554
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
555
  msgid ""
556
  "Before you can access your account, an administrator needs to approve it. "
557
  "You will be notified via email."
558
  msgstr ""
 
 
559
 
560
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
561
  msgid "A username is required for registration."
562
- msgstr "E' richiesto un nome utente per la registrazione."
563
 
564
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
565
  msgid "Sorry, that username already exists!"
566
- msgstr "Ci dispiace, questo nome utente esiste già!"
567
 
568
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:887
569
  msgid "You must enter a valid email address."
570
  msgstr "Devi inserire un indirizzo email valido."
571
 
572
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:889
573
  msgid "Sorry, that email address is already used!"
574
- msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
575
 
576
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:892
577
  msgid "You didn't complete one of the password-fields!"
578
  msgstr "Non ha completato uno dei campi password!"
579
 
580
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
581
  msgid "Only files with the following extension(s) can be uploaded:"
582
- msgstr ""
583
 
584
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:904
585
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
586
- #, fuzzy
587
  msgid "The account was NOT created!"
588
- msgstr "Un account utente come %1$s è stato creato."
589
 
590
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:908
591
  msgid "You must agree to the terms and conditions before registering!"
592
  msgstr ""
 
 
593
 
594
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:910
595
  msgid "(Several required fields were left uncompleted)"
596
- msgstr ""
597
 
598
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
599
  msgid "This username is already reserved to be used soon."
600
  msgstr ""
 
601
 
602
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:928
603
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
604
  msgid "Please try a different one!"
605
- msgstr ""
606
 
607
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:932
608
- #, fuzzy
609
  msgid "This email address is already reserved to be used soon."
610
- msgstr "Spiacente, l'indirizzo e-mail è già stato utilizzato!"
 
611
 
612
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
613
  msgid "You are logged in as"
614
- msgstr ""
615
 
616
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
617
  msgid "You don't need another account."
618
- msgstr ""
619
 
620
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
621
- #, fuzzy
622
  msgid "Log out of this account."
623
- msgstr "Esci da questo account"
624
 
625
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1160
626
- #, fuzzy
627
  msgid "Logout"
628
- msgstr "Logout &raquo;"
629
 
630
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1168
631
  #, php-format
632
  msgid ""
633
  "An email has been sent to %1$s with information on how to activate his/her "
634
  "account."
635
  msgstr ""
 
 
636
 
637
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1172
638
- #, fuzzy, php-format
639
  msgid "A user account has been created for %1$s."
640
- msgstr "Un account utente come %1$s è stato creato."
641
 
642
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1191
643
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1221
644
  #, php-format
645
  msgid ""
646
  "You will soon be redirected automatically. If you see this page for more "
647
  "than 3 seconds, please click %1$s.%2$s"
648
  msgstr ""
 
 
649
 
650
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1197
651
  msgid ""
652
  "An email has been sent to you with information on how to activate your "
653
  "account."
654
  msgstr ""
 
 
655
 
656
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1201
657
- #, fuzzy, php-format
658
  msgid "Thank you for registering %1$s."
659
- msgstr "Grazie per esserti registrato, %1$s."
660
 
661
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1228
662
  msgid "An error occured while trying to send the notification email."
663
  msgstr ""
 
 
664
 
665
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1233
666
  msgid "An email containing activation instructions was successfully sent."
667
  msgstr ""
 
 
668
 
669
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1238
670
  msgid "An email containing the username and password was successfully sent."
671
  msgstr ""
 
 
672
 
673
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1254
674
  msgid "Users can register themselves or you can manually create users here."
675
  msgstr ""
676
- "Gli utenti possono registrarsi oppure è possibile creare manualmente gli "
677
  "utenti qui."
678
 
679
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1259
680
  msgid ""
681
  "Users cannot currently register themselves, but you can manually create "
682
  "users here."
683
  msgstr ""
684
- "Gli utenti non possono al momento registrarsi, ma è possibile creare "
685
  "manualmente gli utenti qui."
686
 
687
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1264
688
  msgid "Only an administrator can add new users."
689
- msgstr "Solo gli amministratori possono inserire nuovi utenti."
690
-
691
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1287
692
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1311
693
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1335
694
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1359
695
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1410
696
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1434
697
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1458
698
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1482
699
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1509
700
  msgid ""
701
  "This field must be filled out before registering (It was marked as required "
702
  "by the administrator)"
703
  msgstr ""
704
-
705
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1308
706
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1332
707
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1356
708
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1383
709
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1407
710
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1431
711
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1455
712
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1479
713
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1506
 
 
714
  msgid "This field is marked as required by the administrator"
715
- msgstr ""
716
 
717
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1581
718
  msgid "Anti-Spam"
719
- msgstr ""
720
 
721
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1602
722
- #, fuzzy
723
  msgid "Send these credentials via email."
724
- msgstr "Invia le mie credenziali via email."
725
 
726
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
727
  msgid "Add User"
728
- msgstr "Inserisci utente"
729
 
730
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1616
731
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
732
  msgid "Register"
733
- msgstr "Registrati"
734
 
735
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
736
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
@@ -739,19 +763,14 @@ msgstr "Mostra / Nascondi la barra di amministrazione di Front End"
739
 
740
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
741
  msgid "User-group"
742
- msgstr "Gruppi di utenti"
743
 
744
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
745
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
746
  msgid "Visibility"
747
- msgstr "Visibilità"
748
-
749
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:30
750
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
751
- msgid "Default"
752
- msgstr "Default"
753
 
754
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:31
755
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
756
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
757
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
@@ -765,9 +784,9 @@ msgstr "Default"
765
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
766
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
767
  msgid "Show"
768
- msgstr "Mostra"
769
 
770
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:32
771
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
772
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
773
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
@@ -781,28 +800,41 @@ msgstr "Mostra"
781
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
782
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
783
  msgid "Hide"
784
- msgstr "Nascondi"
 
 
 
 
 
 
785
 
786
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:43
 
 
 
 
 
 
 
787
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
788
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
789
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
790
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:147
791
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
792
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
793
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
794
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
795
  msgid "Save Changes"
796
- msgstr "Salva modifiche"
797
 
798
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
799
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
800
  msgid "Profile Builder"
801
- msgstr "Profile Builder"
802
 
803
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
804
  msgid "Welcome to Profile Builder!"
805
- msgstr "Benvenuto su Profile Builder!"
806
 
807
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
808
  msgid ""
@@ -810,108 +842,84 @@ msgid ""
810
  "users, giving them a more flexible way to modify their user-information or "
811
  "to register new users."
812
  msgstr ""
813
- "Consente di personalizzare il vostro sito con l'aggiunta di un front-end "
814
- "menu per tutti gli utenti, permettendo di modificare le proprie informazioni-"
815
- "utente in maniera più flessibile o per far registrare nuovi utenti."
816
 
817
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
818
  msgid ""
819
  "Also, grants users with administrator rights to customize basic fields or to "
820
  "add new ones."
821
  msgstr ""
822
- "Inoltre, concede agli utenti con diritti di amministratore di personalizzare "
823
- "i campi base o di aggiungerne di nuovi."
824
 
825
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
826
  msgid ""
827
  "To achieve this, just create a new page, and give it an intuitive name(e.g. "
828
  "Edit Profile)."
829
  msgstr ""
830
- "Per ottenere ciò, basta creare una nuova pagina, e dare ad essa un nome "
831
- "intuitivo (ad esempio Modifica profilo)."
832
 
833
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
834
  msgid ""
835
  "Now all you need to do is add the following shortcode(for the previous "
836
  "example): "
837
  msgstr ""
838
- "Ora tutto quello che dovete fare è aggiungere il seguente shortcode (per "
839
- "l'esempio precedente):"
840
 
841
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
842
  msgid "Publish your page and you are ready to go!"
843
- msgstr "Pubblica la tua pagina e sei è pronto a partire!"
844
 
845
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
846
  msgid "You can use the following shortcodes:"
847
- msgstr "È possibile utilizzare i seguenti codici brevi:"
848
 
849
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
850
  msgid "for a log-in form."
851
- msgstr "per form del login."
852
 
853
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
854
  msgid "to add a registration form."
855
- msgstr "per inserire un form di registrazione."
856
 
857
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
858
  msgid ""
859
  "to grant users a front-end acces to their personal information(requires user "
860
  "to be logged in)."
861
  msgstr ""
862
- "per concedere agli utenti un accesso front-end ai propri dati personali "
863
- "(l'utente deve essere loggato)."
864
 
865
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
866
- #, fuzzy
867
  msgid "to add a password recovery form."
868
- msgstr "per inserire un form di registrazione."
869
 
870
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
871
- #, fuzzy
872
  msgid ""
873
- "With the <strong>Pro</strong> version, users with administrator rights have "
874
- "access to the following features:"
875
  msgstr ""
876
- "Gli utenti con diritti di amministratore ha accesso alle seguenti "
877
- "funzionalità:"
878
 
879
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
880
  msgid ""
881
  "add a custom stylesheet/inherit values from the current theme or use one of "
882
  "the following built into this plugin: default, white or black."
883
  msgstr ""
884
- "aggiungere un foglio di stile personalizzato / ereditano i valori dal tema "
885
- "corrente oppure utilizzare una delle seguenti opzioni incorporate in questo "
886
- "plugin: di default, bianco o nero."
887
 
888
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
889
  msgid ""
890
  "select whether to display or not the admin bar in the front end for a "
891
  "specific user-group registered to the site."
892
  msgstr ""
893
- "scegliere se visualizzare o meno la barra di amministrazione di front-end "
894
- "per uno specifico gruppo di utenti registrati al sito."
895
 
896
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
897
  msgid ""
898
  "select which information-field can users see/modify. The hidden fields' "
899
  "values remain unmodified."
900
  msgstr ""
901
- "selezionare le informazioni sul campo utenti che si possono vedere / "
902
- "modificare. I valori dei campi nascosti 'non vengono modificati."
903
 
904
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
905
  msgid ""
906
  "add custom fields to the existing ones, with several types to choose from: "
907
  "heading, text, textarea, select, checkbox, radio, and/or upload."
908
  msgstr ""
909
- "aggiungere campi personalizzati a quelli esistenti, con diversi tipi tra cui "
910
- "scegliere: voce, testo, textarea, select, checkbox, radio e / o upload."
911
 
912
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
913
  msgid "add an avatar field."
914
- msgstr "aggiungi un campo per l'avatar."
915
 
916
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
917
  msgid "create custom redirects."
@@ -925,47 +933,37 @@ msgstr ""
925
  msgid "shortcode."
926
  msgstr ""
927
 
928
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
929
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
930
- msgid "NOTE:"
931
- msgstr "NOTA:"
932
-
933
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
934
  msgid "this plugin only adds/removes fields in the front-end."
935
- msgstr "Questo plugin aggiunge / rimuove i campi del front-end."
936
 
937
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
938
  msgid ""
939
  "The default information-fields will still be visible(and thus modifiable)"
940
  msgstr ""
941
- "Il valore predefinito di campi di informazione saranno ancora visibili (e "
942
- "quindi modificabili)"
943
 
944
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
945
  msgid ""
946
  "from the back-end, while custom fields will only be visible in the front-end."
947
  msgstr ""
948
- "dal back-end, mentre i campi personalizzati saranno visibili solo nel front-"
949
- "end."
950
 
951
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
952
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
953
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
954
  msgid "Default Profile Fields"
955
- msgstr "Campi profilo di default"
956
 
957
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
958
  msgid "Input Field Name"
959
- msgstr "Inserisci campo nome"
960
 
961
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
962
- #, fuzzy
963
  msgid "Required"
964
- msgstr "(richiesto)"
965
 
966
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
967
  msgid "Name:"
968
- msgstr "Nome:"
969
 
970
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
971
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
@@ -981,15 +979,9 @@ msgstr "Nome:"
981
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
982
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
983
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
984
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:49
985
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:57
986
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:67
987
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:96
988
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:108
989
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:120
990
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:132
991
  msgid "Yes"
992
- msgstr ""
993
 
994
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
995
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
@@ -1005,16 +997,9 @@ msgstr ""
1005
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
1006
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
1007
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
1008
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:50
1009
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:58
1010
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:68
1011
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:97
1012
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:109
1013
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:121
1014
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:133
1015
- #, fuzzy
1016
  msgid "No"
1017
- msgstr "Nessuno"
1018
 
1019
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
1020
  msgid "Display name publicly as..."
@@ -1022,40 +1007,42 @@ msgstr "Nome visualizzato pubblicamente come ..."
1022
 
1023
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
1024
  msgid "Contact Info:"
1025
- msgstr "Informazioni di contatto:"
1026
 
1027
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
1028
  msgid "About Yourself:"
1029
- msgstr "Su di te:"
1030
 
1031
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
1032
- #, fuzzy
1033
  msgid "(New) Password"
1034
- msgstr "Nuova Password"
1035
 
1036
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
1037
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
1038
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
1039
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
1040
  msgid "General Settings"
1041
- msgstr ""
1042
 
1043
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
1044
- #, fuzzy
1045
  msgid "Stylesheet Used on the Front-End:"
1046
- msgstr "Stylesheet usato:"
 
 
 
 
1047
 
1048
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
1049
  msgid "White"
1050
- msgstr "Bianco"
1051
 
1052
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
1053
  msgid "Black"
1054
- msgstr "Nero"
1055
 
1056
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
1057
  msgid "None"
1058
- msgstr "Nessuno"
1059
 
1060
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
1061
  msgid "\"Email Confirmation\" Feature Activated:"
@@ -1085,33 +1072,33 @@ msgstr ""
1085
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
1086
  #, php-format
1087
  msgid ""
1088
- "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
1089
- "Please %1$sregister your copy%2$s of <b>Profile Builder</b> to receive "
1090
- "access to automatic updates and support. Need a license key? %3$sPurchase "
1091
- "one now%4$s"
1092
  msgstr ""
1093
 
1094
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
1095
  #, php-format
1096
  msgid ""
1097
- "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
1098
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
1099
- "priority support. %3$sPurchase one now%4$s"
1100
  msgstr ""
1101
 
1102
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
1103
  msgid "Basic Information"
1104
- msgstr "Informazioni di base"
1105
 
1106
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
1107
  msgid "Show/Hide the Admin Bar on Front-end"
1108
- msgstr "Mostra / Nascondi la barra di amministrazione di front-end"
1109
 
1110
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
1111
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
1112
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
1113
  msgid "Extra Profile Fields"
1114
- msgstr "Campi profilo extra"
1115
 
1116
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
1117
  msgid "Addons"
@@ -1119,7 +1106,7 @@ msgstr ""
1119
 
1120
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
1121
  msgid "Register Your Version"
1122
- msgstr "Registra la tua Versione"
1123
 
1124
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
1125
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
@@ -1144,17 +1131,16 @@ msgstr ""
1144
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
1145
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
1146
  msgid "Active"
1147
- msgstr ""
1148
 
1149
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
1150
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
1151
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
1152
  msgid "Inactive"
1153
- msgstr ""
1154
 
1155
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
1156
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:30
1157
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:31
1158
  msgid "Custom Redirects"
1159
  msgstr ""
1160
 
@@ -1164,77 +1150,74 @@ msgstr ""
1164
  msgid "reCAPTCHA"
1165
  msgstr ""
1166
 
1167
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:35
1168
  msgid "Redirects on custom page requests:"
1169
  msgstr ""
1170
 
1171
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:41
1172
  msgid "Action"
1173
  msgstr ""
1174
 
1175
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:42
1176
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:87
1177
  msgid "Redirect"
1178
  msgstr ""
1179
 
1180
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:43
1181
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:88
1182
  msgid "URL"
1183
  msgstr ""
1184
 
1185
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:47
1186
  msgid "After Registration:"
1187
  msgstr ""
1188
 
1189
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:55
1190
  msgid "After Login:"
1191
  msgstr ""
1192
 
1193
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:64
1194
- #, fuzzy
1195
  msgid "Recover Password (*)"
1196
- msgstr "Ripeti Password"
1197
 
1198
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:75
1199
  msgid ""
1200
  "When activated this feature will redirect the user on both the default "
1201
  "Wordpress password recovery page and the \"Lost password?\" link used by "
1202
  "Profile Builder on the front-end login page."
1203
  msgstr ""
1204
 
1205
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:80
1206
  msgid "Redirects on default WordPress page requests:"
1207
  msgstr ""
1208
 
1209
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:86
1210
  msgid "Requested WP Page"
1211
  msgstr ""
1212
 
1213
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:93
1214
  msgid "Default WP Login Page (*)"
1215
  msgstr ""
1216
 
1217
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:105
1218
  msgid "Default WP Logout Page (**)"
1219
  msgstr ""
1220
 
1221
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:117
1222
  msgid "Default WP Register Page"
1223
  msgstr ""
1224
 
1225
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:129
1226
  msgid "Default WP Dashboard (***)"
1227
  msgstr ""
1228
 
1229
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:140
1230
  msgid "Before login. Works best if used in conjuction with \"After logout\"."
1231
  msgstr ""
1232
 
1233
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:141
1234
  msgid "After logout. Works best if used in conjuction with \"Before login\"."
1235
  msgstr ""
1236
 
1237
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:142
1238
  msgid ""
1239
  "Redirects every user-role EXCEPT the ones with administrator privilages (can "
1240
  "manage options)."
@@ -1245,6 +1228,7 @@ msgid "Could not open socket!"
1245
  msgstr ""
1246
 
1247
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
 
1248
  msgid "To use reCAPTCHA you must get an API key from"
1249
  msgstr ""
1250
 
@@ -1289,7 +1273,7 @@ msgstr ""
1289
  msgid "Private Key:"
1290
  msgstr ""
1291
 
1292
- #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:312
1293
  msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1294
  msgstr ""
1295
 
@@ -1398,9 +1382,8 @@ msgid "You can find it in Profile Builder's menu."
1398
  msgstr ""
1399
 
1400
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
1401
- #, fuzzy
1402
  msgid "You need to be logged in to view the userlisting!"
1403
- msgstr "Devi essere registrato per modificare il tuo profilo."
1404
 
1405
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
1406
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
@@ -1416,36 +1399,31 @@ msgstr ""
1416
 
1417
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
1418
  msgid "Search"
1419
- msgstr ""
1420
 
1421
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
1422
- #, fuzzy
1423
  msgid "First/Lastname"
1424
- msgstr "Nome"
1425
 
1426
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
1427
- #, fuzzy
1428
  msgid "Email"
1429
- msgstr "E-mail:"
1430
 
1431
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
1432
  msgid "Sign-up Date"
1433
- msgstr ""
1434
 
1435
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
1436
- #, fuzzy
1437
  msgid "Firstname"
1438
  msgstr "Nome"
1439
 
1440
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
1441
- #, fuzzy
1442
  msgid "Lastname"
1443
  msgstr "Cognome"
1444
 
1445
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
1446
- #, fuzzy
1447
  msgid "Display Name"
1448
- msgstr "Nome"
1449
 
1450
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
1451
  msgid "Posts"
@@ -1457,15 +1435,14 @@ msgstr ""
1457
 
1458
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
1459
  msgid "More..."
1460
- msgstr ""
1461
 
1462
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
1463
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
1464
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
1465
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
1466
- #, fuzzy
1467
  msgid "No uploaded attachment"
1468
- msgstr "L'allegato \""
1469
 
1470
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
1471
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
@@ -1483,9 +1460,8 @@ msgid "Click here to go back"
1483
  msgstr ""
1484
 
1485
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
1486
- #, fuzzy
1487
  msgid "Back"
1488
- msgstr "Nero"
1489
 
1490
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
1491
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
@@ -1495,7 +1471,7 @@ msgstr "Nero"
1495
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1496
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1497
  msgid "Current file"
1498
- msgstr ""
1499
 
1500
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
1501
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
@@ -1508,28 +1484,25 @@ msgid "No results found!"
1508
  msgstr ""
1509
 
1510
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
1511
- msgid "&laquo;&laquo; First"
1512
  msgstr ""
1513
 
1514
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
1515
- msgid "&laquo; Prev"
1516
  msgstr ""
1517
 
1518
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
1519
- #, fuzzy
1520
- msgid "Next &raquo; "
1521
- msgstr "Logout &raquo;"
1522
 
1523
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
1524
- #, fuzzy
1525
- msgid "Last &raquo;&raquo;"
1526
- msgstr "Logout &raquo;"
1527
 
1528
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
1529
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
1530
- #, fuzzy
1531
  msgid "You must give your option a title."
1532
- msgstr "Devi essere registrato per modificare il tuo profilo."
1533
 
1534
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
1535
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
@@ -1538,9 +1511,8 @@ msgstr ""
1538
 
1539
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
1540
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
1541
- #, fuzzy
1542
  msgid "You must enter a valid meta-key."
1543
- msgstr "Devi inserire un indirizzo email valido."
1544
 
1545
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
1546
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
@@ -1621,52 +1593,52 @@ msgid "the current user?"
1621
  msgstr ""
1622
 
1623
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
1624
- #, fuzzy, php-format
1625
  msgid "Your account on %1$s has been approved!"
1626
- msgstr "Un account utente come %1$s è stato creato."
1627
 
1628
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
1629
  #, php-format
1630
  msgid "An administrator has just approved your account on %1$s (%2$s)."
1631
- msgstr ""
1632
 
1633
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
1634
- #, fuzzy, php-format
1635
  msgid "Your account on %1$s has been unapproved!"
1636
- msgstr "Un account utente come %1$s è stato creato."
1637
 
1638
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
1639
  #, php-format
1640
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1641
- msgstr ""
1642
 
1643
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
1644
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:172
1645
  msgid "Approve"
1646
- msgstr ""
1647
 
1648
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
1649
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:217
1650
  msgid "Unapproved"
1651
- msgstr ""
1652
 
1653
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:138
1654
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:168
1655
  msgid "Unapprove"
1656
- msgstr ""
1657
 
1658
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:139
1659
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:214
1660
  msgid "Approved"
1661
- msgstr ""
1662
 
1663
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:167
1664
  msgid "unapprove"
1665
- msgstr ""
1666
 
1667
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:171
1668
  msgid "approve"
1669
- msgstr ""
1670
 
1671
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
1672
  #, php-format
@@ -1675,8 +1647,8 @@ msgstr ""
1675
 
1676
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
1677
  msgid ""
1678
- "<strong>ERROR</strong>: Your account has to be confirmed by an administrator "
1679
- "before you can log in."
1680
  msgstr ""
1681
 
1682
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
@@ -1713,14 +1685,13 @@ msgstr ""
1713
 
1714
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
1715
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
1716
- #, fuzzy
1717
  msgid "Title"
1718
- msgstr "Bianco"
1719
 
1720
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
1721
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
1722
  msgid "Type"
1723
- msgstr ""
1724
 
1725
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
1726
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
@@ -1730,7 +1701,7 @@ msgstr ""
1730
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
1731
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
1732
  msgid "ID"
1733
- msgstr ""
1734
 
1735
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
1736
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
@@ -1740,25 +1711,24 @@ msgstr ""
1740
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
1741
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
1742
  msgid "Add Option"
1743
- msgstr ""
1744
 
1745
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
1746
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
1747
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
1748
  msgid "Edit"
1749
- msgstr ""
1750
 
1751
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
1752
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
1753
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
1754
- #, fuzzy
1755
  msgid "Delete"
1756
- msgstr "Default"
1757
 
1758
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
1759
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:84
1760
  msgid "Title:"
1761
- msgstr ""
1762
 
1763
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
1764
  msgid "The title of the item."
@@ -1772,7 +1742,8 @@ msgstr ""
1772
  msgid ""
1773
  "Use this in conjuction with WordPress functions to display the value in the "
1774
  "page of your choosing. Auto-completed but editable - in this case it must be "
1775
- "uniqe.<br/>Changing this might take long in case of a very big user-count."
 
1776
  msgstr ""
1777
 
1778
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
@@ -1798,16 +1769,15 @@ msgstr ""
1798
 
1799
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
1800
  msgid "address"
1801
- msgstr ""
1802
 
1803
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
1804
- #, fuzzy
1805
  msgid "name"
1806
- msgstr "Nome"
1807
 
1808
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
1809
  msgid "Options:"
1810
- msgstr ""
1811
 
1812
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
1813
  msgid ""
@@ -1817,18 +1787,17 @@ msgstr ""
1817
 
1818
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
1819
  msgid "ID:"
1820
- msgstr ""
1821
 
1822
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
1823
  msgid ""
1824
  "This is the internal ID for this input. You can use this in conjuction with "
1825
- "filters to target this element if needed.<br/>Can't be edited."
1826
  msgstr ""
1827
 
1828
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
1829
- #, fuzzy
1830
  msgid "Required:"
1831
- msgstr "(richiesto)"
1832
 
1833
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
1834
  msgid "Check this box to make this field required."
@@ -1836,11 +1805,11 @@ msgstr ""
1836
 
1837
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
1838
  msgid "Cancel"
1839
- msgstr ""
1840
 
1841
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
1842
  msgid "Save"
1843
- msgstr ""
1844
 
1845
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1846
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
@@ -1884,59 +1853,57 @@ msgstr ""
1884
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1885
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1886
  msgid "Current avatar"
1887
- msgstr ""
1888
 
1889
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1890
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1891
  msgid "No uploaded avatar"
1892
- msgstr ""
1893
 
1894
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1895
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1896
  msgid "Are you sure you want to delete this avatar?"
1897
- msgstr ""
1898
 
1899
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1900
  msgid ""
1901
  "The avatar image can't be deleted (It was marked as required by the "
1902
  "administrator)."
1903
  msgstr ""
 
 
1904
 
1905
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1906
  msgid "Click to see the current avatar"
1907
- msgstr ""
1908
 
1909
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1910
  msgid "Click to delete the avatar"
1911
- msgstr ""
1912
 
1913
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
1914
  msgid "This login widget lets you add a login form in the sidebar."
1915
  msgstr ""
1916
 
1917
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
1918
- #, fuzzy
1919
  msgid "Profile Builder Login Widget"
1920
- msgstr "Profile Builder"
1921
 
1922
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:44
1923
  msgid "Don't have an account?"
1924
- msgstr ""
1925
 
1926
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
1927
- #, fuzzy
1928
  msgid "Lost Password"
1929
- msgstr "Password persa?"
1930
 
1931
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
1932
- #, fuzzy
1933
  msgid "Lost Your Password?"
1934
- msgstr "Password persa?"
1935
 
1936
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:80
1937
- #, fuzzy
1938
  msgid "Login"
1939
- msgstr "Log in"
1940
 
1941
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
1942
  msgid "After login redirect URL (optional):"
@@ -1961,18 +1928,18 @@ msgstr ""
1961
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
1962
  #, php-format
1963
  msgid ""
1964
- "Your <strong>Profile Builder</strong> serial number is invalid or missing. "
1965
- "Please %1$sregister your copy%2$s of Profile Builder to receive access to "
1966
- "automatic updates and support. Need a license key? %3$sPurchase one now%4$s "
1967
- "%5$sDismiss%6$s"
1968
  msgstr ""
1969
 
1970
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
1971
  #, php-format
1972
  msgid ""
1973
- "Your <strong>Profile Builder</strong> 1 year licence has expired. Please "
1974
- "%1$sRenew Your Licence%2$s to receive access to automatic updates and "
1975
- "priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
1976
  msgstr ""
1977
 
1978
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
@@ -2000,15 +1967,13 @@ msgstr ""
2000
 
2001
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
2002
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
2003
- #, fuzzy
2004
  msgid "The serial number was successfully validated!"
2005
- msgstr "L'avatar è stato cancellato con successo."
2006
 
2007
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
2008
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
2009
- #, fuzzy
2010
  msgid "The serial number entered couldn't be validated!"
2011
- msgstr "L'avatar è stato cancellato con successo."
2012
 
2013
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
2014
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
@@ -2040,45 +2005,3 @@ msgstr ""
2040
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
2041
  msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2042
  msgstr ""
2043
-
2044
- #, fuzzy
2045
- #~ msgid "The attachment"
2046
- #~ msgstr "L'allegato \""
2047
-
2048
- #, fuzzy
2049
- #~ msgid "was successfully deleted."
2050
- #~ msgstr "\" è stato cancellato con successo."
2051
-
2052
- #, fuzzy
2053
- #~ msgid "Possible cause: the size was bigger than"
2054
- #~ msgstr "<br/> Possibile causa: la dimensione era troppo grande"
2055
-
2056
- #, fuzzy
2057
- #~ msgid "The listed attachements were"
2058
- #~ msgstr "b.<br/> Gli allegati elencate sono stati"
2059
-
2060
- #, fuzzy
2061
- #~ msgid "and password:"
2062
- #~ msgstr "Password"
2063
-
2064
- #~ msgid "Plugin Layout"
2065
- #~ msgstr "Plugin Layout"
2066
-
2067
- #~ msgid "You didn't complete both password fields. <br/> The password was "
2068
- #~ msgstr ""
2069
- #~ "Non ha completato entrambi i campi password. <br/> La password è stata"
2070
-
2071
- #~ msgid ""
2072
- #~ "There was an error while trying to upload your avatar picture.<br/"
2073
- #~ ">Possible cause: size/incorrect file-type.<br/>The avatar was "
2074
- #~ msgstr ""
2075
- #~ "Si è verificato un errore durante il tentativo di caricare la tua foto "
2076
- #~ "avatar <br/> Possibile causa:.. Dimensione / tipo di file non corretto "
2077
- #~ "<br/> L'avatar è stato"
2078
-
2079
- #~ msgid ""
2080
- #~ "You are logged in as <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. You don't "
2081
- #~ "need another account."
2082
- #~ msgstr ""
2083
- #~ "Sei stato registrato come <a href=\"%1$s\" title=\"%2$s\">%2$s</a>. Non "
2084
- #~ "hai bisogno di un altro account."
2
  msgstr ""
3
  "Project-Id-Version: ProfileBuilder\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-12-20 13:33+0200\n"
6
+ "PO-Revision-Date: 2013-01-08 09:05+0100\n"
7
+ "Last-Translator: Enrico <encrimi@gmail.com>\n"
8
  "Language-Team: Reflection Media, Gabriel Barina\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
19
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:585
20
  #, php-format
21
  msgid ""
22
+ "The information size you were trying to submit was larger than %1$sb!&lt;br/"
23
+ "&gt;This is usually caused by a large file(s) trying to be uploaded.&lt;br/"
24
+ "&gt;Since it was also larger than %2$sb no additional information is "
25
+ "available.&lt;br/&gt;The user was NOT created!"
26
  msgstr ""
27
+ "La dimensione dell'informazione che stavi cercando di inserire era più "
28
+ "grande di %1$sb!&lt;br/&gt;Questo di solito è causato da un file di grandi "
29
+ "dimensioni che si sta cercando di caricare.&lt;br/&gt;Dal momento che era "
30
+ "anche più grande %2$sb non sono disponibili ulteriori informazioni.&lt;br/"
31
+ "&gt;L'utente NON è stato creato"
32
 
33
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:554
34
  msgid "You must be logged in to edit your profile."
35
+ msgstr "Devi effetuare il login per editare il tuo profilo"
36
 
37
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:562
38
  msgid "The avatar was successfully deleted."
39
+ msgstr "L'avatar è stato cancellato con successo"
40
 
41
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:567
42
+ #, php-format
43
  msgid "The attachment \"%1$s\" was successfully deleted."
44
+ msgstr "L'allegato \"%1$s\" è stato cancellato con successo"
45
 
46
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:580
47
  msgid "The changes have been successfully saved."
48
+ msgstr "Le modifiche sono state salvate con successp"
49
 
50
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
 
51
  msgid ""
52
  "The email address you entered is already registered to a different user."
53
+ msgstr "L'indirizzo email ch hai inserito è già registrato con un altro utente"
 
 
54
 
55
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
56
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
57
  msgid "The email address was"
58
+ msgstr "L'indirizzo email è stato"
59
 
60
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:586
61
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
70
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
71
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
72
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
 
73
  msgid "updated along with the rest of the information."
74
+ msgstr "aggiornato con il resto delle informazioni."
75
 
76
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:594
 
77
  msgid "The email address you entered is invalid."
78
+ msgstr "L'inidirizzo email che hai inserito non è valido"
 
79
 
80
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
 
81
  msgid "The passwords you entered do not match."
82
+ msgstr "Le password che hai inserito non corrispondono."
 
83
 
84
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:602
85
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
 
86
  msgid "The password was"
87
+ msgstr "La password è stata"
88
 
89
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:610
 
90
  msgid "You didn't complete both password fields."
91
+ msgstr "Non hai completato entrambi i campi password."
92
 
93
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:616
94
  msgid "Your profile was NOT updated!"
95
+ msgstr "Il tuo profilo NON è stato aggiornato!"
96
 
97
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:625
 
98
  msgid "There was an error while trying to upload the following attachments:"
99
  msgstr ""
100
  "Si è verificato un errore durante il tentativo di caricare i seguenti "
101
+ "allegati:"
102
 
103
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:633
104
  #, php-format
106
  "Possible cause: the size was bigger than %1$sb. The listed attachements were "
107
  "%2$sNOT%3$s updated along with the rest of the information."
108
  msgstr ""
109
+ "Possibile causa: la dimensione era più grande di %1$sb. Gli allegati "
110
+ "elencati %2$sNON%3$s sono stati aggiornati con il resto delle informazioni."
111
 
112
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
 
113
  msgid "There was an error while trying to upload your avatar picture."
114
  msgstr ""
115
+ "Si è verificato un errore durante il tentativo di caricare la tua foto "
116
+ "(avatar)."
117
 
118
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
119
  msgid "Possible cause: size/incorrect file-type."
120
+ msgstr "Possibile causa: dimensioni / tipo di file non corretto."
121
 
122
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:640
123
  msgid "The avatar was"
124
+ msgstr "L'avatar è stato"
125
 
126
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:648
127
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:888
 
128
  msgid "There was an error while trying to upload the following attachment(s)"
129
  msgstr ""
130
+ "Si è verificato un errore durante il tentativo di caricare il seguente "
131
+ "allegato "
132
 
133
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:655
134
  #, php-format
135
  msgid ""
136
+ "Only files with the following extension(s) can be uploaded: %1$s&lt;br/&gt;"
137
+ "This file was %2$sNOT%3$s updated along with the rest of the information."
138
  msgstr ""
139
+ "Solo i file con le seguenti estensioni possono essere caricati: %1$s&lt;br/"
140
+ "&gt;; Questo file %2$sNON%3$s è stato aggiornato insieme al resto delle "
141
+ "informazioni."
142
 
143
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:670
144
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1268
145
  msgid "Name"
146
  msgstr "Nome"
147
 
148
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:676
149
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:122
150
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1289
151
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:27
152
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:498
153
  msgid "Username"
154
+ msgstr "Nome utente"
155
 
156
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:677
 
157
  msgid "Usernames cannot be changed."
158
+ msgstr "Il nome utente non può essere cambiato"
159
 
160
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:686
161
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:706
179
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:702
180
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:747
181
  msgid "This field is marked as required by the administrator."
182
+ msgstr "Il campo è stato segnato come richiedo dall'amministratore"
183
 
184
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:689
185
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:709
195
  "This field wasn't updated because you entered and empty string (It was "
196
  "marked as required by the administrator."
197
  msgstr ""
198
+ "Il campo non è stato aggiornato perchè è stato lasciato vuoto (Il campo è "
199
+ "stato segnato come richiesto dall'amministratore)."
200
 
201
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:696
202
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1313
203
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:40
204
  msgid "First Name"
205
  msgstr "Nome"
206
 
207
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:716
208
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1337
209
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:53
210
  msgid "Last Name"
211
  msgstr "Cognome"
212
 
213
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:736
214
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1361
215
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:66
216
  msgid "Nickname"
217
  msgstr "Nickname"
221
  msgstr "Nome visualizzato pubblicamente come"
222
 
223
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:789
224
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1367
225
  msgid "Contact Info"
226
+ msgstr "Informazioni contatto"
227
 
228
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:806
229
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1388
230
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:98
231
  msgid "E-mail"
232
+ msgstr "E-mail"
233
 
234
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:808
235
  msgid "(required)"
236
  msgstr "(richiesto)"
237
 
238
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:825
239
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1412
240
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:111
241
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:540
242
  msgid "Website"
243
+ msgstr "Sito web"
244
 
245
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:843
246
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1436
247
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:127
248
  msgid "AIM"
249
  msgstr "AIM"
250
 
251
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:861
252
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1460
253
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:140
254
  msgid "Yahoo IM"
255
  msgstr "Yahoo IM"
256
 
257
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:879
258
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1484
259
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:153
260
  msgid "Jabber / Google Talk"
261
+ msgstr "Jabber / Google Talk"
262
 
263
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:885
264
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1490
265
  msgid "About Yourself"
266
+ msgstr "A proposito di te"
267
 
268
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:900
269
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1511
270
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:172
271
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:546
272
  msgid "Biographical Info"
274
 
275
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:910
276
  msgid "New Password"
277
+ msgstr "Nuova password"
278
 
279
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:915
280
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:328
281
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:358
282
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1549
283
  msgid "Repeat Password"
284
+ msgstr "Ripeti password"
285
 
286
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.edit.profile.php:946
287
  msgid "Update"
288
  msgstr "Aggiorna"
289
 
290
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
291
+ #, php-format
292
  msgid "You are currently logged in as %1$s. %2$s"
293
+ msgstr "Sei attualmente connesso come %1$s. %2$s"
 
294
 
295
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
296
  msgid "Log out of this account"
297
  msgstr "Esci da questo account"
298
 
299
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:41
 
300
  msgid "Log out"
301
+ msgstr "Esci"
302
 
303
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:49
304
+ #, php-format
305
  msgid "You have successfully logged in as %1$s"
306
+ msgstr "Ti sei connesso con successo come %1$s"
 
 
307
 
308
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
309
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
312
  "You will soon be redirected automatically. If you see this page for more "
313
  "than 1 second, please click %1$s"
314
  msgstr ""
315
+ "Stai per essere reindirizzato automaticamente. Se vedi questa pagina per più "
316
+ "di 1 secondo, si prega di fare clic su %1$s"
317
 
318
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:69
319
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:81
320
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1182
321
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1212
322
  msgid "here"
323
+ msgstr "qui"
324
 
325
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
326
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
327
  msgid "ERROR:"
328
+ msgstr "ERRORE:"
329
 
330
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:96
331
  msgid "The username field is empty"
332
+ msgstr "Il campo username è vuoto"
333
 
334
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.login.php:130
335
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:323
336
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:353
337
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1544
338
  msgid "Password"
339
  msgstr "Password"
340
 
354
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
355
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
356
  msgid "ERROR"
357
+ msgstr "ERRORE"
358
 
359
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:113
360
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:248
362
  "Your account has to be confirmed by an administrator before you can use the "
363
  "\"Password Reset\" feature."
364
  msgstr ""
365
+ "Il tuo account deve essere confermato da un amministratore prima di poter "
366
+ "utilizzare la funzione \"Reimposta password \"."
367
 
368
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:153
369
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:200
370
  #, php-format
371
  msgid ""
372
+ "A password reset email has been sent to %1$s.&lt;br/&gt;Following the link "
373
+ "sent in the email address will reset the password."
374
  msgstr ""
375
+ "Una email di reimpostazione della password è stata inviata al %1$s.&lt;br/"
376
+ "&gt;Seguendo il link inviato all'indirizzo di posta elettronica sarà "
377
+ "possibile reimpostare la password."
378
 
379
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:165
380
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:212
381
  #, php-format
382
  msgid ""
383
+ "Someone requested that the password be reset for the following account: &lt;"
384
+ "b&gt;%1$s&lt;/b&gt;&lt;br/&gt;If this was a mistake, just ignore this email "
385
+ "and nothing will happen.&lt;br/&gt;To reset your password, visit the "
386
+ "following link:%2$s"
387
  msgstr ""
388
+ "Qualcuno ha chiesto di resettare la password per il seguente account: &lt;"
389
+ "b&gt;%1$s&lt;/b&gt;&lt;br/&gt; Se questo è un errore è sufficiente ignorare "
390
+ "questa email e non succederà nulla.&lt;br/&gt;Per resettare la password "
391
+ "visita il seguente link: %2$s"
392
 
393
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:168
394
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:215
395
  #, php-format
396
  msgid "Password Reset Feature from \"%1$s\""
397
+ msgstr "Funzione di ripristino password da \"%1$s\""
398
 
399
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:177
400
+ #, php-format
401
  msgid "There was an error while trying to send the activation link to %1$s!"
402
  msgstr ""
403
+ "Si è verificato un errore durante il tentativo di inviare il link di "
404
+ "attivazione a %1$s!"
405
 
406
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
 
407
  msgid "The email address entered wasn't found in the database!"
408
+ msgstr "L'indirizzo email inserito non è stato trovato nel database!"
 
409
 
410
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:187
411
  msgid "Please check that you entered the correct email address."
412
+ msgstr "Si prega di controllare di aver inserito un indirzzo email corretto."
413
 
414
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:224
 
415
  msgid "There was an error while trying to send the activation link to "
416
  msgstr ""
417
+ "Si è verificato un errore durante il tentativo di inviare il link di "
418
+ "attivazione"
419
 
420
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
421
  msgid "The username entered wasn't found in the database!"
422
+ msgstr "Il nome utente inserito non è stato trovato nel database!"
423
 
424
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:232
425
  msgid "Please check that you entered the correct username."
426
+ msgstr "Si prega di controllare di aver inserito il nome utente corretto."
427
 
428
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:243
 
429
  msgid "Your password has been successfully changed!"
430
+ msgstr "La password è stata cambiata con successo!"
431
 
432
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:257
433
+ #, php-format
434
  msgid "You have successfully reset your password to: %1$s"
435
+ msgstr "Hai correttamente reimpostato la password per: %1$s"
 
 
436
 
437
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:260
438
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:273
439
+ #, php-format
440
  msgid "Password Successfully Reset for %1$s on \"%2$s\""
441
+ msgstr "Password reimpostata con successo per %1$s su \"%2$s\""
442
 
443
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:270
444
  #, php-format
445
  msgid ""
446
+ "%1$s has requested a password change via the password reset feature.&lt;br/"
447
+ "&gt;His/her new password is:%2$s"
448
  msgstr ""
449
+ "%1$s ha richiesto una modifica della password tramite la funzione di "
450
+ "reimpostazione della password.&lt;br/&gt;La nuova password è: %2$s"
451
 
452
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:288
453
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:885
454
  msgid "The entered passwords don't match!"
455
  msgstr "Le password inserite non corrispondono!"
456
 
457
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:335
458
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:365
 
459
  msgid "Reset Password"
460
+ msgstr "Reimposta password"
461
 
462
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:382
463
  msgid "Invalid key!"
464
+ msgstr "Chiave non valida!"
465
 
466
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
 
467
  msgid "Please enter your username or email address."
468
+ msgstr "Si prega di inserire il tuo nome utente o l'indirizzo email"
469
 
470
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:397
471
  msgid "You will receive a link to create a new password via email."
472
+ msgstr "Riceverai un link per creare una nuova password via e-mail."
473
 
474
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:405
 
475
  msgid "Username or E-mail"
476
+ msgstr "Nome utente o E-mail"
477
 
478
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.recover.password.php:414
 
479
  msgid "Get New Password"
480
+ msgstr "Ottieni nuova password"
481
 
482
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:386
483
  #, php-format
489
  "After you activate, you will receive *another email* with your login.\n"
490
  "\n"
491
  msgstr ""
492
+ "Per attivare il tuo utente, clicca il seguente link:\n"
493
+ "\n"
494
+ "%s%s%s\n"
495
+ "\n"
496
+ "Dopo l'attivazione, riceverai *un'altra email* con i dati di accesso.\n"
497
+ "\n"
498
 
499
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:388
500
  #, php-format
501
  msgid "[%1$s] Activate %2$s"
502
+ msgstr "[%1$s] Attiva %2$s"
503
 
504
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:418
505
  msgid "Invalid activation key!"
506
+ msgstr "Chiave di attivazione non valida!"
507
 
508
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:422
509
  msgid "The user is already active!"
510
+ msgstr "Questo utente è già attivo!"
511
 
512
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:437
513
  msgid "Could not create user!"
514
+ msgstr "Impossibile creare l'utente!"
515
 
516
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:447
 
517
  msgid "That username is already activated!"
518
+ msgstr "Questo nome utente è già attivo!"
519
 
520
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:463
 
521
  msgid "The user was successfully activated."
522
+ msgstr "L'utente è stato attivato con successo."
523
 
524
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:465
 
525
  msgid "There was an error while trying to activate the user."
526
+ msgstr "Si è verificato un errore durante il tentativo di attivare l'utente."
 
 
527
 
528
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:499
529
  #, php-format
530
+ msgid ""
531
+ "New subscriber on %1$s.&lt;br/&gt;&lt;br/&gt;Username:%2$s&lt;br/&gt;E-mail:"
532
+ "%3$s&lt;br/&gt;"
533
  msgstr ""
534
+ "Nuovo iscritto %1$s.&lt;br/&gt;&lt;br/&gt;Nome utente:%2$s&lt;br/&gt;E-mail:"
535
+ "%3$s&lt;br/&gt;"
536
 
537
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:501
538
  msgid ""
539
  "The \"Admin Approval\" feature was activated at the time of registration, so "
540
  "please remember that you need to approve this user before he/she can log in!"
541
  msgstr ""
542
+ "La funzione \"Approvazione amministratore \" è stata attivata al momento "
543
+ "della registrazione, quindi per favore ricordate che è necessario approvare "
544
+ "questo utente perchè lo stesso possa accedere!"
545
 
546
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:504
547
  msgid "A new subscriber has (been) registered!"
548
+ msgstr "Un nuovo iscritto è stato registrato!"
549
 
550
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:522
 
551
  msgid "A new account has been created for you."
552
+ msgstr "Un nuovo account è stato creato per te."
553
 
554
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:525
555
  #, php-format
556
+ msgid ""
557
+ "Welcome to %1$s!&lt;br/&gt;&lt;br/&gt; Your username is:%2$s and password:"
558
+ "%3$s"
559
  msgstr ""
560
+ "Benvenuto %1$s!&lt;br/&gt;&lt;br/&gtIl tuo nome utente è: %2$s la tua "
561
+ "password:%3$s"
562
 
563
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:527
564
  msgid ""
565
  "Before you can access your account, an administrator needs to approve it. "
566
  "You will be notified via email."
567
  msgstr ""
568
+ "Prima di poter accedere al tuo account, l'amministratore deve approvarlo. "
569
+ "Riceverai una notifica via e-mail."
570
 
571
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:874
572
  msgid "A username is required for registration."
573
+ msgstr "Un nome utente è necessario per la registrazione."
574
 
575
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:876
576
  msgid "Sorry, that username already exists!"
577
+ msgstr "Spiacenti, il nome utente esiste già!"
578
 
579
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:878
580
  msgid "You must enter a valid email address."
581
  msgstr "Devi inserire un indirizzo email valido."
582
 
583
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:880
584
  msgid "Sorry, that email address is already used!"
585
+ msgstr "Siamo spiacenti, l'indirizzo e-mail è già in uso!"
586
 
587
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:883
588
  msgid "You didn't complete one of the password-fields!"
589
  msgstr "Non ha completato uno dei campi password!"
590
 
591
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
592
  msgid "Only files with the following extension(s) can be uploaded:"
593
+ msgstr "Solo i file con le seguenti estensioni possono essere caricati:"
594
 
595
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:895
596
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:901
 
597
  msgid "The account was NOT created!"
598
+ msgstr "L'account non è stato creato!"
599
 
600
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:899
601
  msgid "You must agree to the terms and conditions before registering!"
602
  msgstr ""
603
+ "È necessario accettare i termini, le condizioni e l'informativa privacy "
604
+ "prima di registrarsi!"
605
 
606
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:901
607
  msgid "(Several required fields were left uncompleted)"
608
+ msgstr "(Diversi campi obbligatori sono stati lasciati incompleti)"
609
 
610
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:919
611
  msgid "This username is already reserved to be used soon."
612
  msgstr ""
613
+ "Questo nome utente è già riservato per essere utilizzato al più presto."
614
 
615
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:919
616
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:923
617
  msgid "Please try a different one!"
618
+ msgstr "Si prega di provarne un altro!"
619
 
620
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:923
 
621
  msgid "This email address is already reserved to be used soon."
622
+ msgstr ""
623
+ "Questo indirizzo email è già riservato per essere utilizzato al più presto."
624
 
625
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1151
626
  msgid "You are logged in as"
627
+ msgstr "Sei connesso come"
628
 
629
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1151
630
  msgid "You don't need another account."
631
+ msgstr "Non hai bisogno di un altro account."
632
 
633
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1151
 
634
  msgid "Log out of this account."
635
+ msgstr "Esci da questo account."
636
 
637
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1151
 
638
  msgid "Logout"
639
+ msgstr "Esci"
640
 
641
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1159
642
  #, php-format
643
  msgid ""
644
  "An email has been sent to %1$s with information on how to activate his/her "
645
  "account."
646
  msgstr ""
647
+ "Una e-mail è stata inviata a %1$s, con le informazioni su come attivare "
648
+ "l'account."
649
 
650
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1163
651
+ #, php-format
652
  msgid "A user account has been created for %1$s."
653
+ msgstr "UN account utente è stato creato per %1$s."
654
 
655
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1182
656
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1212
657
  #, php-format
658
  msgid ""
659
  "You will soon be redirected automatically. If you see this page for more "
660
  "than 3 seconds, please click %1$s.%2$s"
661
  msgstr ""
662
+ "Stai per essere reindirizzato automaticamente. Se vedi questa pagina per più "
663
+ "di 3 secondi, si prega di fare clic su %1$s.%2$s"
664
 
665
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1188
666
  msgid ""
667
  "An email has been sent to you with information on how to activate your "
668
  "account."
669
  msgstr ""
670
+ "Una e-mail è stata inviata con le informazioni su come attivare il tuo "
671
+ "account."
672
 
673
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1192
674
+ #, php-format
675
  msgid "Thank you for registering %1$s."
676
+ msgstr "Grazie per esserti registrato %1$s."
677
 
678
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1219
679
  msgid "An error occured while trying to send the notification email."
680
  msgstr ""
681
+ "Si è verificato un errore durante il tentativo di inviare l'e-mail di "
682
+ "notifica."
683
 
684
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1224
685
  msgid "An email containing activation instructions was successfully sent."
686
  msgstr ""
687
+ "Una e-mail contenente le istruzioni di attivazione è stata inviata "
688
+ "correttamente."
689
 
690
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1229
691
  msgid "An email containing the username and password was successfully sent."
692
  msgstr ""
693
+ "Una e-mail contenente il nome utente e la password è stata inviata con "
694
+ "successo."
695
 
696
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1245
697
  msgid "Users can register themselves or you can manually create users here."
698
  msgstr ""
699
+ "Gli utenti possono registrarsi da soli o è possibile creare manualmente gli "
700
  "utenti qui."
701
 
702
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1250
703
  msgid ""
704
  "Users cannot currently register themselves, but you can manually create "
705
  "users here."
706
  msgstr ""
707
+ "Gli utenti non possono registrarsi da soli, ma è possibile creare "
708
  "manualmente gli utenti qui."
709
 
710
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1255
711
  msgid "Only an administrator can add new users."
712
+ msgstr "Solo un amministratore può aggiungere nuovi utenti."
713
+
714
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1278
715
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1302
716
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1326
717
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1350
718
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1401
719
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1425
720
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1449
721
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1473
722
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1500
723
  msgid ""
724
  "This field must be filled out before registering (It was marked as required "
725
  "by the administrator)"
726
  msgstr ""
727
+ "Questo campo deve essere compilato prima della registrazione (è stato "
728
+ "contrassegnato come richiesto dall'amministratore)"
729
+
730
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1299
731
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1323
732
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1347
733
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1374
734
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1398
735
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1422
736
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1446
737
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1470
738
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1497
739
  msgid "This field is marked as required by the administrator"
740
+ msgstr "Questo campo è contrassegnato come richiesto dall'amministratore"
741
 
742
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1572
743
  msgid "Anti-Spam"
744
+ msgstr "Anti-Spam"
745
 
746
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1593
 
747
  msgid "Send these credentials via email."
748
+ msgstr "Invia queste credenziali via e-mail."
749
 
750
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
751
  msgid "Add User"
752
+ msgstr "Aggiungi utente"
753
 
754
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/front-end/wppb.register.php:1607
755
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:43
756
  msgid "Register"
757
+ msgstr "Registrazone"
758
 
759
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:13
760
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:14
763
 
764
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:18
765
  msgid "User-group"
766
+ msgstr ""
767
 
768
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:19
769
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:15
770
  msgid "Visibility"
771
+ msgstr ""
 
 
 
 
 
772
 
773
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:28
774
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:30
775
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:43
776
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:56
784
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:175
785
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:189
786
  msgid "Show"
787
+ msgstr ""
788
 
789
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:29
790
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:31
791
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:44
792
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:57
800
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:176
801
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:190
802
  msgid "Hide"
803
+ msgstr ""
804
+
805
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:40
806
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:29
807
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:47
808
+ msgid "NOTE:"
809
+ msgstr ""
810
 
811
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:41
812
+ msgid ""
813
+ "If you added new roles (via another plugin) &lt;u&gt;after&lt;/u&gt; Profile "
814
+ "Builder was activated, please reactivate it, since the roles are initialized "
815
+ "during plugin activation."
816
+ msgstr ""
817
+
818
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/admin.bar.php:48
819
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:202
820
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:58
821
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:45
822
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
823
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:284
824
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:370
825
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:35
826
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:76
827
  msgid "Save Changes"
828
+ msgstr ""
829
 
830
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:5
831
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
832
  msgid "Profile Builder"
833
+ msgstr ""
834
 
835
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:6
836
  msgid "Welcome to Profile Builder!"
837
+ msgstr ""
838
 
839
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:8
840
  msgid ""
842
  "users, giving them a more flexible way to modify their user-information or "
843
  "to register new users."
844
  msgstr ""
 
 
 
845
 
846
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:9
847
  msgid ""
848
  "Also, grants users with administrator rights to customize basic fields or to "
849
  "add new ones."
850
  msgstr ""
 
 
851
 
852
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:10
853
  msgid ""
854
  "To achieve this, just create a new page, and give it an intuitive name(e.g. "
855
  "Edit Profile)."
856
  msgstr ""
 
 
857
 
858
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:11
859
  msgid ""
860
  "Now all you need to do is add the following shortcode(for the previous "
861
  "example): "
862
  msgstr ""
 
 
863
 
864
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:12
865
  msgid "Publish your page and you are ready to go!"
866
+ msgstr ""
867
 
868
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:13
869
  msgid "You can use the following shortcodes:"
870
+ msgstr ""
871
 
872
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:14
873
  msgid "for a log-in form."
874
+ msgstr ""
875
 
876
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:15
877
  msgid "to add a registration form."
878
+ msgstr ""
879
 
880
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:16
881
  msgid ""
882
  "to grant users a front-end acces to their personal information(requires user "
883
  "to be logged in)."
884
  msgstr ""
 
 
885
 
886
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:17
 
887
  msgid "to add a password recovery form."
888
+ msgstr ""
889
 
890
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:19
 
891
  msgid ""
892
+ "With the &lt;strong&gt;Pro&lt;/strong&gt; version, users with administrator "
893
+ "rights have access to the following features:"
894
  msgstr ""
 
 
895
 
896
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:20
897
  msgid ""
898
  "add a custom stylesheet/inherit values from the current theme or use one of "
899
  "the following built into this plugin: default, white or black."
900
  msgstr ""
 
 
 
901
 
902
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:21
903
  msgid ""
904
  "select whether to display or not the admin bar in the front end for a "
905
  "specific user-group registered to the site."
906
  msgstr ""
 
 
907
 
908
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:22
909
  msgid ""
910
  "select which information-field can users see/modify. The hidden fields' "
911
  "values remain unmodified."
912
  msgstr ""
 
 
913
 
914
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:23
915
  msgid ""
916
  "add custom fields to the existing ones, with several types to choose from: "
917
  "heading, text, textarea, select, checkbox, radio, and/or upload."
918
  msgstr ""
 
 
919
 
920
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:24
921
  msgid "add an avatar field."
922
+ msgstr ""
923
 
924
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:25
925
  msgid "create custom redirects."
933
  msgid "shortcode."
934
  msgstr ""
935
 
 
 
 
 
 
936
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:30
937
  msgid "this plugin only adds/removes fields in the front-end."
938
+ msgstr ""
939
 
940
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:31
941
  msgid ""
942
  "The default information-fields will still be visible(and thus modifiable)"
943
  msgstr ""
 
 
944
 
945
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/basic.info.php:32
946
  msgid ""
947
  "from the back-end, while custom fields will only be visible in the front-end."
948
  msgstr ""
 
 
949
 
950
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:9
951
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:10
952
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:89
953
  msgid "Default Profile Fields"
954
+ msgstr ""
955
 
956
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:14
957
  msgid "Input Field Name"
958
+ msgstr ""
959
 
960
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:16
 
961
  msgid "Required"
962
+ msgstr "Richiesto"
963
 
964
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:21
965
  msgid "Name:"
966
+ msgstr "Nome"
967
 
968
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:34
969
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:47
979
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:193
980
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:31
981
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:41
982
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
 
 
 
 
 
 
983
  msgid "Yes"
984
+ msgstr ""
985
 
986
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:35
987
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:48
997
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:194
998
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:32
999
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:42
1000
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
 
 
 
 
 
 
 
1001
  msgid "No"
1002
+ msgstr "No"
1003
 
1004
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:79
1005
  msgid "Display name publicly as..."
1007
 
1008
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:92
1009
  msgid "Contact Info:"
1010
+ msgstr "Informazioni contatto"
1011
 
1012
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:166
1013
  msgid "About Yourself:"
1014
+ msgstr "A proposito di te"
1015
 
1016
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/default.settings.php:186
 
1017
  msgid "(New) Password"
1018
+ msgstr "Nuova password"
1019
 
1020
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:10
1021
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:11
1022
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:87
1023
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:38
1024
  msgid "General Settings"
1025
+ msgstr "IMpostazioni generali"
1026
 
1027
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:12
 
1028
  msgid "Stylesheet Used on the Front-End:"
1029
+ msgstr ""
1030
+
1031
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:14
1032
+ msgid "Default"
1033
+ msgstr ""
1034
 
1035
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:18
1036
  msgid "White"
1037
+ msgstr ""
1038
 
1039
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:19
1040
  msgid "Black"
1041
+ msgstr ""
1042
 
1043
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:23
1044
  msgid "None"
1045
+ msgstr ""
1046
 
1047
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/general.settings.php:29
1048
  msgid "\"Email Confirmation\" Feature Activated:"
1072
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:64
1073
  #, php-format
1074
  msgid ""
1075
+ "Your &lt;strong&gt;Profile Builder&lt;/strong&gt; serial number is invalid "
1076
+ "or missing. Please %1$sregister your copy%2$s of &lt;b&gt;Profile "
1077
+ "Builder&lt;/b&gt; to receive access to automatic updates and support. Need a "
1078
+ "license key? %3$sPurchase one now%4$s"
1079
  msgstr ""
1080
 
1081
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:66
1082
  #, php-format
1083
  msgid ""
1084
+ "Your &lt;strong&gt;Profile Builder&lt;/strong&gt; 1 year licence has "
1085
+ "expired. Please %1$sRenew Your Licence%2$s to receive access to automatic "
1086
+ "updates and priority support. %3$sPurchase one now%4$s"
1087
  msgstr ""
1088
 
1089
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:86
1090
  msgid "Basic Information"
1091
+ msgstr ""
1092
 
1093
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:88
1094
  msgid "Show/Hide the Admin Bar on Front-end"
1095
+ msgstr ""
1096
 
1097
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:95
1098
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:5
1099
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:6
1100
  msgid "Extra Profile Fields"
1101
+ msgstr ""
1102
 
1103
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:98
1104
  msgid "Addons"
1106
 
1107
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/functions/options.php:101
1108
  msgid "Register Your Version"
1109
+ msgstr ""
1110
 
1111
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:9
1112
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:10
1131
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:29
1132
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:36
1133
  msgid "Active"
1134
+ msgstr "Attivo"
1135
 
1136
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:23
1137
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:30
1138
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:37
1139
  msgid "Inactive"
1140
+ msgstr "Inattivo"
1141
 
1142
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/addon.php:27
1143
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
 
1144
  msgid "Custom Redirects"
1145
  msgstr ""
1146
 
1150
  msgid "reCAPTCHA"
1151
  msgstr ""
1152
 
1153
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1154
  msgid "Redirects on custom page requests:"
1155
  msgstr ""
1156
 
1157
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1158
  msgid "Action"
1159
  msgstr ""
1160
 
1161
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
 
1162
  msgid "Redirect"
1163
  msgstr ""
1164
 
1165
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
 
1166
  msgid "URL"
1167
  msgstr ""
1168
 
1169
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1170
  msgid "After Registration:"
1171
  msgstr ""
1172
 
1173
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1174
  msgid "After Login:"
1175
  msgstr ""
1176
 
1177
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
 
1178
  msgid "Recover Password (*)"
1179
+ msgstr ""
1180
 
1181
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1182
  msgid ""
1183
  "When activated this feature will redirect the user on both the default "
1184
  "Wordpress password recovery page and the \"Lost password?\" link used by "
1185
  "Profile Builder on the front-end login page."
1186
  msgstr ""
1187
 
1188
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1189
  msgid "Redirects on default WordPress page requests:"
1190
  msgstr ""
1191
 
1192
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1193
  msgid "Requested WP Page"
1194
  msgstr ""
1195
 
1196
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1197
  msgid "Default WP Login Page (*)"
1198
  msgstr ""
1199
 
1200
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1201
  msgid "Default WP Logout Page (**)"
1202
  msgstr ""
1203
 
1204
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1205
  msgid "Default WP Register Page"
1206
  msgstr ""
1207
 
1208
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1209
  msgid "Default WP Dashboard (***)"
1210
  msgstr ""
1211
 
1212
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1213
  msgid "Before login. Works best if used in conjuction with \"After logout\"."
1214
  msgstr ""
1215
 
1216
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1217
  msgid "After logout. Works best if used in conjuction with \"Before login\"."
1218
  msgstr ""
1219
 
1220
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/custom.redirects.php:1
1221
  msgid ""
1222
  "Redirects every user-role EXCEPT the ones with administrator privilages (can "
1223
  "manage options)."
1228
  msgstr ""
1229
 
1230
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:76
1231
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:120
1232
  msgid "To use reCAPTCHA you must get an API key from"
1233
  msgstr ""
1234
 
1273
  msgid "Private Key:"
1274
  msgstr ""
1275
 
1276
+ #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/recaptcha.php:311
1277
  msgid "The reCAPTCHA wasn't entered correctly. Go back and try it again!"
1278
  msgstr ""
1279
 
1382
  msgstr ""
1383
 
1384
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:405
 
1385
  msgid "You need to be logged in to view the userlisting!"
1386
+ msgstr ""
1387
 
1388
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:443
1389
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:469
1399
 
1400
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:491
1401
  msgid "Search"
1402
+ msgstr "Cerca"
1403
 
1404
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:504
 
1405
  msgid "First/Lastname"
1406
+ msgstr "Nome/Cognome"
1407
 
1408
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:510
 
1409
  msgid "Email"
1410
+ msgstr "Email"
1411
 
1412
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:516
1413
  msgid "Sign-up Date"
1414
+ msgstr "Data registrazione"
1415
 
1416
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:522
 
1417
  msgid "Firstname"
1418
  msgstr "Nome"
1419
 
1420
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:528
 
1421
  msgid "Lastname"
1422
  msgstr "Cognome"
1423
 
1424
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:534
 
1425
  msgid "Display Name"
1426
+ msgstr "Visualizza nome"
1427
 
1428
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:552
1429
  msgid "Posts"
1435
 
1436
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:594
1437
  msgid "More..."
1438
+ msgstr "Ancora..."
1439
 
1440
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:795
1441
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
1442
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:577
1443
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:610
 
1444
  msgid "No uploaded attachment"
1445
+ msgstr ""
1446
 
1447
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:797
1448
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
1460
  msgstr ""
1461
 
1462
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:923
 
1463
  msgid "Back"
1464
+ msgstr "Indietro"
1465
 
1466
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1102
1467
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1104
1471
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:614
1472
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:617
1473
  msgid "Current file"
1474
+ msgstr "File attuale"
1475
 
1476
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1158
1477
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:687
1484
  msgstr ""
1485
 
1486
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1311
1487
+ msgid "&amp;laquo;&amp;laquo; First"
1488
  msgstr ""
1489
 
1490
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1312
1491
+ msgid "&amp;laquo; Prev"
1492
  msgstr ""
1493
 
1494
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1313
1495
+ msgid "Next &amp;raquo; "
1496
+ msgstr ""
 
1497
 
1498
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/addons/userlisting.php:1314
1499
+ msgid "Last &amp;raquo;&amp;raquo;"
1500
+ msgstr ""
 
1501
 
1502
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:286
1503
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:429
 
1504
  msgid "You must give your option a title."
1505
+ msgstr ""
1506
 
1507
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:290
1508
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:433
1511
 
1512
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:294
1513
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:437
 
1514
  msgid "You must enter a valid meta-key."
1515
+ msgstr ""
1516
 
1517
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:300
1518
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/classes/premium.class.admin.php:310
1593
  msgstr ""
1594
 
1595
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:48
1596
+ #, php-format
1597
  msgid "Your account on %1$s has been approved!"
1598
+ msgstr "Il tuo account come %1$s è stato approvato"
1599
 
1600
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:49
1601
  #, php-format
1602
  msgid "An administrator has just approved your account on %1$s (%2$s)."
1603
+ msgstr "Un amministratore ha appena approvato il tuo account come %1$s (%2$s)."
1604
 
1605
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:58
1606
+ #, php-format
1607
  msgid "Your account on %1$s has been unapproved!"
1608
+ msgstr "Il tuo account come %1$s è stato approvato!"
1609
 
1610
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:59
1611
  #, php-format
1612
  msgid "An administrator has just unapproved your account on %1$s (%2$s)."
1613
+ msgstr "Un amministratore non ha approvato il tuo account come %1$s (%2$s)."
1614
 
1615
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:126
1616
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:172
1617
  msgid "Approve"
1618
+ msgstr "Approva"
1619
 
1620
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:127
1621
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:217
1622
  msgid "Unapproved"
1623
+ msgstr "Non approvato"
1624
 
1625
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:138
1626
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:168
1627
  msgid "Unapprove"
1628
+ msgstr "Non approvare"
1629
 
1630
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:139
1631
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:214
1632
  msgid "Approved"
1633
+ msgstr "Approvato"
1634
 
1635
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:167
1636
  msgid "unapprove"
1637
+ msgstr "non approvare"
1638
 
1639
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:171
1640
  msgid "approve"
1641
+ msgstr "approva"
1642
 
1643
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:175
1644
  #, php-format
1647
 
1648
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/admin.approval.php:236
1649
  msgid ""
1650
+ "&lt;strong&gt;ERROR&lt;/strong&gt;: Your account has to be confirmed by an "
1651
+ "administrator before you can log in."
1652
  msgstr ""
1653
 
1654
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:7
1685
 
1686
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:12
1687
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:22
 
1688
  msgid "Title"
1689
+ msgstr "Titolo"
1690
 
1691
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:13
1692
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:23
1693
  msgid "Type"
1694
+ msgstr "Tipo"
1695
 
1696
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:14
1697
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:24
1701
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:15
1702
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:25
1703
  msgid "ID"
1704
+ msgstr "ID:"
1705
 
1706
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:16
1707
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:26
1711
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:17
1712
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:27
1713
  msgid "Add Option"
1714
+ msgstr "Aggiungi opzione"
1715
 
1716
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:39
1717
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:72
1718
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:205
1719
  msgid "Edit"
1720
+ msgstr "Edita"
1721
 
1722
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:40
1723
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:73
1724
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:206
 
1725
  msgid "Delete"
1726
+ msgstr "Cancella"
1727
 
1728
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
1729
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:84
1730
  msgid "Title:"
1731
+ msgstr "Titolo:"
1732
 
1733
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:100
1734
  msgid "The title of the item."
1742
  msgid ""
1743
  "Use this in conjuction with WordPress functions to display the value in the "
1744
  "page of your choosing. Auto-completed but editable - in this case it must be "
1745
+ "uniqe.&lt;br/&gt;Changing this might take long in case of a very big user-"
1746
+ "count."
1747
  msgstr ""
1748
 
1749
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:143
1769
 
1770
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
1771
  msgid "address"
1772
+ msgstr "Indirizzo"
1773
 
1774
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:154
 
1775
  msgid "name"
1776
+ msgstr "nome"
1777
 
1778
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
1779
  msgid "Options:"
1780
+ msgstr "Opzioni"
1781
 
1782
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:164
1783
  msgid ""
1787
 
1788
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
1789
  msgid "ID:"
1790
+ msgstr "ID:"
1791
 
1792
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:175
1793
  msgid ""
1794
  "This is the internal ID for this input. You can use this in conjuction with "
1795
+ "filters to target this element if needed.&lt;br/&gt;Can't be edited."
1796
  msgstr ""
1797
 
1798
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
 
1799
  msgid "Required:"
1800
+ msgstr "Richiesto:"
1801
 
1802
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:186
1803
  msgid "Check this box to make this field required."
1805
 
1806
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:193
1807
  msgid "Cancel"
1808
+ msgstr "Cancella"
1809
 
1810
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/custom.fields.php:194
1811
  msgid "Save"
1812
+ msgstr "Salva"
1813
 
1814
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:67
1815
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:169
1853
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1854
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1855
  msgid "Current avatar"
1856
+ msgstr "Avatar attuale"
1857
 
1858
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:683
1859
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:715
1860
  msgid "No uploaded avatar"
1861
+ msgstr "Avatar non caricato"
1862
 
1863
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:689
1864
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:724
1865
  msgid "Are you sure you want to delete this avatar?"
1866
+ msgstr "Sei sicuro di voler cancellare questo avatar?"
1867
 
1868
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:722
1869
  msgid ""
1870
  "The avatar image can't be deleted (It was marked as required by the "
1871
  "administrator)."
1872
  msgstr ""
1873
+ "L'immagine dell'avatar non può essere cancellata ( E' stata segnata come "
1874
+ "richiesta dall'amministratore)"
1875
 
1876
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1877
  msgid "Click to see the current avatar"
1878
+ msgstr "Clck per vedere l'avatar attuale"
1879
 
1880
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/extra.fields.php:725
1881
  msgid "Click to delete the avatar"
1882
+ msgstr "Click per cancellare l'avatar"
1883
 
1884
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:10
1885
  msgid "This login widget lets you add a login form in the sidebar."
1886
  msgstr ""
1887
 
1888
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:15
 
1889
  msgid "Profile Builder Login Widget"
1890
+ msgstr ""
1891
 
1892
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:44
1893
  msgid "Don't have an account?"
1894
+ msgstr "Non hai un account?"
1895
 
1896
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
 
1897
  msgid "Lost Password"
1898
+ msgstr "Password persa"
1899
 
1900
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:51
 
1901
  msgid "Lost Your Password?"
1902
+ msgstr "Hai perso la tua password?"
1903
 
1904
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:80
 
1905
  msgid "Login"
1906
+ msgstr "Login"
1907
 
1908
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/login.widget.php:89
1909
  msgid "After login redirect URL (optional):"
1928
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:356
1929
  #, php-format
1930
  msgid ""
1931
+ "Your &lt;strong&gt;Profile Builder&lt;/strong&gt; serial number is invalid "
1932
+ "or missing. Please %1$sregister your copy%2$s of Profile Builder to receive "
1933
+ "access to automatic updates and support. Need a license key? %3$sPurchase "
1934
+ "one now%4$s %5$sDismiss%6$s"
1935
  msgstr ""
1936
 
1937
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/premium.functions.load.php:360
1938
  #, php-format
1939
  msgid ""
1940
+ "Your &lt;strong&gt;Profile Builder&lt;/strong&gt; 1 year licence has "
1941
+ "expired. Please %1$sRenew Your Licence%2$s to receive access to automatic "
1942
+ "updates and priority support. %3$sPurchase one now%4$s %5$sDismiss%6$s"
1943
  msgstr ""
1944
 
1945
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:9
1967
 
1968
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:17
1969
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:58
 
1970
  msgid "The serial number was successfully validated!"
1971
+ msgstr ""
1972
 
1973
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:19
1974
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:60
 
1975
  msgid "The serial number entered couldn't be validated!"
1976
+ msgstr ""
1977
 
1978
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:21
1979
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:62
2005
  #: C:\Users\Gabriel\Desktop\test\profile-builder-pro/premium/functions/register.version.php:70
2006
  msgid "(e.g. RMPBH-15-SN-253a55baa4fbe7bf595b2aabb8d72985)"
2007
  msgstr ""